Get Australian money supply M3

RBA monthly M3 aggregate. Currency plus bank deposits.

Steps

  1. 1Call /v1/rba/m3.
  2. 2Read m3_aud.

Code

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

Watch out for

  • M3 growth spiked in 2020 and 2021 due to RBA Term Funding Facility.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key