Get average Australian superannuation balance

APRA quarterly superannuation statistics. Average balance by age and gender.

Steps

  1. 1Call /v1/apra/super.
  2. 2Filter by age_band.

Code

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

Watch out for

  • APRA covers regulated funds only. SMSFs are reported separately by the ATO.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key