Get Australian GDP per capita

GDP divided by ERP, quarterly.

Steps

  1. 1Call the endpoint.
  2. 2Read value.

Code

cURL
curl https://api.ausdata.io/v1/abs/gdp-per-capita \
  -H "Authorization: Bearer YOUR_KEY"
Python
import requests
r = requests.get(
    "https://api.ausdata.io/v1/abs/gdp-per-capita",
    headers={"Authorization": "Bearer YOUR_KEY"},
)
print(r.json())
JavaScript
const r = await fetch("https://api.ausdata.io/v1/abs/gdp-per-capita", {
  headers: { Authorization: "Bearer YOUR_KEY" },
});
console.log(await r.json());

Watch out for

  • The series went negative through 2023 and 2024 due to high population growth.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key