ABS Lending Indicators as a JSON REST API
Monthly new loan commitments to households and businesses as JSON. Owner-occupier, investor, first home buyer, and business segments. Sourced from ABS 5601.0 Lending Indicators. Track mortgage demand and credit flow without scraping the release.
Endpoint
GEThttps://api.ausdata.io/v1/data/abs/LENDING
Sample request
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.ausdata.io/v1/data/abs/LENDING?segment=owner_occupier&limit=12"Sample response
JSON
{
"data": [
{
"period": "2025-04",
"segment": "owner_occupier",
"new_commitments_aud_m": 18120,
"mom_pct": 1.4
}
],
"meta": {
"endpoint": "/v1/data/abs/LENDING",
"source": {
"name": "ABS",
"url": "https://www.abs.gov.au/statistics/economy/finance/lending-indicators",
"attribution": "(c) ABS, CC-BY 4.0"
},
"retrieved_at": "<ISO timestamp>"
}
}Response fields
| Field | Type | Description |
|---|---|---|
| period | string | Reference month |
| segment | string | owner_occupier, investor, fhb, business |
| new_commitments_aud_m | number | New loan commitments, AUD millions |
| mom_pct | number | Month-on-month percent change |
Frequently asked questions
- How do I query the Lending Indicators dataset via API?
- Send a GET request to https://api.ausdata.io/v1/data/abs/LENDING 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 Lending Indicators data updated?
- The Lending Indicators dataset is refreshed monthly from Australian Bureau of Statistics (ABS). 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 ABS Lending Indicators API?
- Yes. ausdata.io offers a free tier of 500 calls per month across every endpoint, including Lending Indicators. No credit card required. Paid plans start at $29 AUD per month for 10,000 calls.
- What format does the Lending Indicators 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 ABS Lending Indicators
500 free calls per month. No credit card.
Get a free key