Embed the live RBA cash rate in Notion

Use our HTML embed to drop a live cash rate widget into a Notion callout.

Steps

  1. 1Copy the iframe code.
  2. 2Paste into a Notion embed block.

Code

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

Watch out for

  • Notion strips style attributes. Use the widget URL, not custom CSS.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key