Get an ausdata API key

Sign up, create a key, start calling. Free tier is 500 requests per month with no card.

Steps

  1. 1Sign up.
  2. 2Create a key.
  3. 3Use it in the Authorization header.

Code

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

Watch out for

  • Keys are shown once on creation. Store them in a password manager.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key