RBA Exchange Rate API: Official AUD Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

Reserve Bank of Australia publishes an official table of exchange rates once per business day — the daily representative rates — covering ~22 currencies against the AUD. These are the published central bank rates used for tax filings, customs valuations, audits, and compliant invoicing in Australia — not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency rba-exchange-rate npm package, with history back to 2023.

AUD → USD — official Reserve Bank of Australia reference rate
Weekly observations, Aug '25 – Aug '26 · US dollars per 1 Australian dollar
0.65000.7000Aug '25Nov '25Jan '26May '26Aug '260.70192025-08-01: 0.6435 USD2025-08-08: 0.6519 USD2025-08-15: 0.6505 USD2025-08-22: 0.6417 USD2025-08-29: 0.6538 USD2025-09-05: 0.6537 USD2025-09-12: 0.6658 USD2025-09-19: 0.6596 USD2025-09-26: 0.6540 USD2025-10-03: 0.6591 USD2025-10-10: 0.6568 USD2025-10-17: 0.6475 USD2025-10-24: 0.6502 USD2025-10-31: 0.6551 USD2025-11-07: 0.6476 USD2025-11-14: 0.6533 USD2025-11-21: 0.6446 USD2025-11-28: 0.6533 USD2025-12-05: 0.6620 USD2025-12-12: 0.6661 USD2025-12-19: 0.6609 USD2025-12-24: 0.6709 USD2025-12-31: 0.6693 USD2026-01-02: 0.6699 USD2026-01-09: 0.6698 USD2026-01-16: 0.6707 USD2026-01-23: 0.6850 USD2026-01-30: 0.7004 USD2026-02-06: 0.6944 USD2026-02-13: 0.7086 USD2026-02-20: 0.7033 USD2026-02-27: 0.7126 USD2026-03-06: 0.7029 USD2026-03-13: 0.7063 USD2026-03-20: 0.7088 USD2026-03-27: 0.6911 USD2026-04-02: 0.6879 USD2026-04-10: 0.7071 USD2026-04-17: 0.7170 USD2026-04-24: 0.7128 USD2026-05-01: 0.7191 USD2026-05-08: 0.7225 USD2026-05-15: 0.7160 USD2026-05-22: 0.7139 USD2026-05-29: 0.7164 USD2026-06-05: 0.7121 USD2026-06-12: 0.7029 USD2026-06-19: 0.7005 USD2026-06-26: 0.6894 USD2026-07-03: 0.6941 USD2026-07-10: 0.6949 USD2026-07-17: 0.6980 USD2026-07-24: 0.6975 USD2026-07-31: 0.7030 USD2026-08-04: 0.7019 USD
Source: Reserve Bank of Australia published rates · chart data from the AllRatesToday API (/api/v1/central-bank/rba/history?source=AUD&target=USD).

What the RBA publishes

Why official rates, not market rates

A live mid-market feed answers "what is AUD/USD trading at right now?" — the right tool for checkouts and dashboards. But accountants, auditors, and tax authorities ask a different question: "which rate were you required to use for this date?" That answer comes from the central bank's published table, and it never changes after publication.

The RBA's daily rates are Australia's standard statistical reference for the Australian dollar, commonly used in tax-facing calculations and financial reporting.

Get the latest table (REST)

curl "https://allratestoday.com/api/v1/central-bank/rba/latest" \
  -H "Authorization: Bearer YOUR_API_KEY"

The response is the bank's most recent published table — every currency, the AUD value, and the publication date:

{
  "bank": "rba",
  "rate_date": "2026-08-01",
  "base": "AUD",
  "rates": [ { "currency": "USD", "rate": 1.2345, "official": true }, ... ]
}

The latest table is available on every plan, including the free tier (300 requests/month, no credit card). Since the table changes once per business day, caching it locally makes even a small quota go a long way.

The npm SDK

npm install rba-exchange-rate
import { getRate, getLatestRates } from 'rba-exchange-rate';

// One pair at the official Reserve Bank of Australia rate
const pair = await getRate('AUD', 'USD', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

// The bank's full published table
const table = await getLatestRates({ apiKey: 'art_live_...' });
console.log(table.rate_date, table.rates.length);

Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.

Historical rates for an invoice date

The most common compliance job: an invoice dated months ago needs the official rate for that date.

import { getRatesForDate, getHistory } from 'rba-exchange-rate';

// The official table for an invoice date — weekends/holidays return
// the most recent published date, flagged via published_on_requested_date.
const day = await getRatesForDate('2026-06-30', { apiKey: 'art_live_...' });

// Daily series for one pair
const series = await getHistory(
  { source: 'AUD', target: 'USD', from: '2026-01-01' },
  { apiKey: 'art_live_...' }
);

Historical dates and time series need a paid plan; the latest table stays free.

Published vs derived pairs

If the RBA does not print a pair directly, the API resolves it from the bank's table — an inverse, or a cross rate via AUD — and flags it derived: true with the method used. Official and computed values are never silently mixed, which is exactly the distinction an auditor will ask about.

FAQ

Does Reserve Bank of Australia have an official exchange rate API?

Reserve Bank of Australia publishes its official rates on its website, but not always in a developer-friendly form. AllRatesToday serves the bank's published table as clean JSON — ~22 currencies against the AUD, with history back to 2023 — via REST or the rba-exchange-rate npm package. The latest table is free.

How often do Reserve Bank of Australia rates update?

Once per business day. These are published reference rates, not moving market prices — the table changes when the RBA publishes a new one, and every API response carries the bank's own publication date so you can cite it.

Can I get the Reserve Bank of Australia rate for a past date, like an invoice date?

Yes. The /central-bank/rba/rates-for-date endpoint returns the official table for any date back to 2023. Weekends and holidays resolve to the most recent published table and are flagged, so your audit trail stays honest. Historical dates require a paid plan; latest rates are free.

Official Reserve Bank of Australia rates, as JSON

The latest table is free — 300 requests/month, no credit card.

Get your free API key

Related Articles