Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Quarterly US consumer credit delinquency rates across major lending categories.
{ "credit": [ { "date": "2025-01-01", "series_key": "SERIES_A", "value": 3.12 }, { "date": "2025-01-01", "series_key": "SERIES_B", "value": 2.68 } ] }
80
Show Object properties
curl "https://api.consumersignals.io/api/credit?quarters=20"
import requests response = requests.get( "https://api.consumersignals.io/api/credit", params={"quarters": 20} ) data = response.json()
const response = await fetch( "https://api.consumersignals.io/api/credit?quarters=20" ); const data = await response.json();