Get the current Australian GDP
ABS National Accounts. Quarterly chain volume GDP, seasonally adjusted.
Steps
- 1Call /v1/abs/gdp.
- 2Read gdp_qoq, gdp_yoy.
Code
cURL
curl https://api.ausdata.io/v1/abs/gdp \
-H "Authorization: Bearer YOUR_KEY"Python
import requests
r = requests.get(
"https://api.ausdata.io/v1/abs/gdp",
headers={"Authorization": "Bearer YOUR_KEY"},
)
print(r.json())JavaScript
const r = await fetch("https://api.ausdata.io/v1/abs/gdp", {
headers: { Authorization: "Bearer YOUR_KEY" },
});
console.log(await r.json());Watch out for
- Published 65 days after quarter end.
Related
Try it now
500 free calls per month. No credit card.
Get a free API key