All datasets

US household borrowing-cost signals (prime / card / auto rates)

US household borrowing-cost signals from Federal Reserve Board lending rates (redistributed by FRED): the bank prime loan rate (monthly, 1949 ->), the commercial-bank credit-card rate and the 48-month new-auto loan rate (quarterly, NSA), with frequency-aware momentum, change volatility, 3-sigma anomaly flags, drift forecasts, cross-series ranks, the lender risk-premium spread over prime, the unsecured-vs-secured (card-minus-auto) wedge, a 5-year borrowing-cost z-score and a high-cost flag. The price-of-credit complement to fred-mortgage-rate-signals (mortgages), us-bank-credit-cycle signals (volumes) and us-bank-lending-standards-signals (willingness to lend). All rows normalized to country_code USA. Raw series: Board of Governors of the Federal Reserve System via FRED.

Source: Borrowing-Cost Signals (derived)1,198 rowsUpdated: 9/22/2026
interest-ratesprime-ratecredit-cardsauto-loanshousehold-creditborrowing-costsfederal-reservemacroeconomicsspreadmomentumanomaly-detectionforecastingsignalsfred

Quality

96.6

Attribution

Board of Governors of the Federal Reserve System via FRED; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringObservation date (FRED API field date; YYYY-MM-DD, monthly or quarterly).
countrystring
country_codestring
series_idstringFRED series ID: DPRIME (Bank Prime Loan Rate, Board of Governors), TERMCBCCALLNS (Commercial Bank Interest Rate on Credit Card Plans, All Accounts, Board of Governors) or TERMCBAUTO48NS (Finance Rate on Consumer Installment Loans at Commercial Banks, New Autos 48 Month Loan, Board of Governors).
series_labelstringOfficial FRED series title as published for the series.
valuefloatContract interest rate in percent: bank prime loan rate (monthly) or commercial-bank consumer lending rate for credit-card plans and 48-month new-auto loans (quarterly, not seasonally adjusted; Board of Governors of the Federal Reserve System, via FRED).
momentum_3mfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
prime_spread_ppfloat
card_auto_spreadfloat
cost_z_5yfloat
high_cost_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluemomentum_3mvolatility_30danomaly_flagforecast_1mrankprime_spread_ppcard_auto_spreadcost_z_5yhigh_cost_flag
1955-08-01United StatesUSADPRIMEBank Prime Loan Rate3.25010
1955-09-01United StatesUSADPRIMEBank Prime Loan Rate3.25010
1955-10-01United StatesUSADPRIMEBank Prime Loan Rate3.39010
1955-11-01United StatesUSADPRIMEBank Prime Loan Rate3.50.25010
1955-12-01United StatesUSADPRIMEBank Prime Loan Rate3.50.25010

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/borrowcost_signals/us_household_borrowing_cost_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/borrowcost_signals/us_household_borrowing_cost_signals").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/borrowcost_signals/us_household_borrowing_cost_signals

Tip: fetch /llms.txt for the full machine-readable catalog.