Use Postman with the ausdata API

Import our OpenAPI spec into Postman. All 46 endpoints come in pre-configured.

Steps

  1. 1File then Import then Link.
  2. 2Paste the openapi.json URL.
  3. 3Set the bearer token on the collection.

Code

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

Watch out for

  • Postman caches schemas. Re-import if endpoints change.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key