Get Australian exports by category

ABS International Trade. Monthly export values by SITC category.

Steps

  1. 1Call /v1/abs/trade-exports.
  2. 2Iterate by category.

Code

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

Watch out for

  • Trade data is published one calendar month in arrears.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key