RBA Household Debt to Income as a JSON REST API
Australian household debt-to-income and debt-to-assets ratios as JSON. Sourced from the RBA E2 selected household ratios table and refreshed quarterly. Track leverage trends without opening the workbook. One bearer token, one call, consistent envelope.
Endpoint
GEThttps://api.ausdata.io/v1/data/rba/household-debt
Sample request
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.ausdata.io/v1/data/rba/household-debt"Sample response
JSON
{
"data": [
{
"period": "2025-Q1",
"debt_to_income_pct": 184.3,
"debt_to_assets_pct": 19.1,
"housing_debt_to_income_pct": 142.7
}
],
"meta": {
"endpoint": "/v1/data/rba/household-debt",
"source": {
"name": "RBA",
"url": "https://www.rba.gov.au/statistics/tables/",
"attribution": "(c) RBA, CC-BY 4.0"
},
"retrieved_at": "<ISO timestamp>"
}
}Response fields
| Field | Type | Description |
|---|---|---|
| period | string | Reference quarter |
| debt_to_income_pct | number | Household debt as percent of disposable income |
| debt_to_assets_pct | number | Household debt as percent of total assets |
| housing_debt_to_income_pct | number | Housing debt only, percent of disposable income |
Frequently asked questions
- How do I query the Household Debt to Income dataset via API?
- Send a GET request to https://api.ausdata.io/v1/data/rba/household-debt with an Authorization: Bearer <your-key> header. The response is JSON with a data array and a meta block containing the source and retrieval timestamp. Get a free key at ausdata.io with 500 calls per month.
- How often is the Household Debt to Income data updated?
- The Household Debt to Income dataset is refreshed quarterly from Reserve Bank of Australia (RBA). The meta.retrieved_at field on every response tells you exactly when the underlying data was last pulled.
- Is there a free tier for the RBA Household Debt to Income API?
- Yes. ausdata.io offers a free tier of 500 calls per month across every endpoint, including Household Debt to Income. No credit card required. Paid plans start at $29 AUD per month for 10,000 calls.
- What format does the Household Debt to Income API return?
- JSON, with a consistent envelope: a data field carrying the rows or object, and a meta field with the source agency, source URL, attribution string, and retrieved_at timestamp. UTF-8, ISO 8601 dates, CC-BY attribution included on every response.
Start querying RBA Household Debt to Income
500 free calls per month. No credit card.
Get a free key