ABS . Quarterly

ABS GDP and National Accounts as a JSON REST API

Australian Gross Domestic Product and national accounts headlines as JSON. Quarterly real GDP, GDP per capita, and the expenditure-side components. Sourced from ABS 5206.0 and refreshed each release. Headline growth without parsing the National Accounts release table.

Endpoint

GEThttps://api.ausdata.io/v1/data/abs/GDP

Sample request

curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.ausdata.io/v1/data/abs/GDP"

Sample response

JSON
{
  "data": [
    {
      "period": "2025-Q1",
      "real_gdp_qoq_pct": 0.4,
      "real_gdp_yoy_pct": 1.6,
      "gdp_per_capita_qoq_pct": -0.1
    }
  ],
  "meta": {
    "endpoint": "/v1/data/abs/GDP",
    "source": {
      "name": "ABS",
      "url": "https://www.abs.gov.au/statistics/economy/national-accounts/australian-national-accounts-national-income-expenditure-and-product",
      "attribution": "(c) ABS, CC-BY 4.0"
    },
    "retrieved_at": "<ISO timestamp>"
  }
}

Response fields

FieldTypeDescription
periodstringReference quarter
real_gdp_qoq_pctnumberReal GDP, quarter-on-quarter percent change
real_gdp_yoy_pctnumberReal GDP, year-on-year percent change
gdp_per_capita_qoq_pctnumberReal GDP per capita, QoQ percent change

Frequently asked questions

How do I query the GDP and National Accounts dataset via API?
Send a GET request to https://api.ausdata.io/v1/data/abs/GDP 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 GDP and National Accounts data updated?
The GDP and National Accounts dataset is refreshed quarterly 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 GDP and National Accounts API?
Yes. ausdata.io offers a free tier of 500 calls per month across every endpoint, including GDP and National Accounts. No credit card required. Paid plans start at $29 AUD per month for 10,000 calls.
What format does the GDP and National Accounts 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 GDP and National Accounts

500 free calls per month. No credit card.

Get a free key