Live Australian data inside a Notion dashboard

Free tier fit

Notion does not natively call an API. Run a 30-line Python script in GitHub Actions, write to a Notion database, and your dashboard updates every morning.

The friction today

  • .Notion API requires per-row writes. Manual entry rots within a week.
  • .Most data providers do not document a Notion path.
  • .Charts in Notion need clean schemas, not parsed PDFs.

The workflow in 3 calls

  1. 1

    Pull the macro snapshot

    GET /v1/economic-dashboard

    One call, five indicators.

  2. 2

    Write to a Notion database

    GET https://api.notion.com/v1/pages

    One row per indicator.

  3. 3

    Schedule daily

    GET GitHub Actions cron

    Free for public repos.

Try it now

cURL
curl https://api.ausdata.io/v1/economic-dashboard \
  -H "Authorization: Bearer YOUR_KEY"

Right tier for notion power users

Free tier covers a daily refresh. 30 calls a month is plenty.

See pricing

Related

Get a free API key

500 free calls per month. No credit card.