Home Documentation Bank Rates Playground Pricing API Status Blog About FAQ Support

Reserve Bank of Australia Exchange Rate API

Official Reserve Bank of Australia (Australia) daily exchange rates as JSON: 20 currencies, history back to 2023. The published AUD rates required for tax, audits, and compliant invoicing.

Australia flagReserve Bank of Australia official daily exchange rates as JSON: 20 currencies against the AUD, history back to 2023. Latest table on every plan. Get your API key.

Quick start

One request for the pair you need — AUD to USD at the official Reserve Bank of Australia rate:

curl "https://allratestoday.com/api/v1/central-bank/rba/latest?source=AUD&target=USD" \
  -H "Authorization: Bearer art_live_your_key"

Or the bank's full published table:

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

On paid plans, any historical date or a daily time series:

curl "https://allratestoday.com/api/v1/central-bank/rba/history?source=AUD&target=USD&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-07-31)

The most recent table as published by Reserve Bank of Australia — exactly what the /latest endpoint returns right now. Values are AUD per 1 unit of each currency:

BaseQuoteTypeRate
AUD CAD reference 0.9856
AUD CHF reference 0.5679
AUD CNY reference 4.7435
AUD EUR reference 0.611
AUD GBP reference 0.5229
AUD HKD reference 5.5133
AUD IDR reference 12708
AUD INR reference 67.06
AUD JPY reference 112.9
AUD KRW reference 1010.18
AUD MYR reference 2.8753
AUD NZD reference 1.198
AUD PGK reference 3.0983
AUD PHP reference 43.08
AUD SGD reference 0.9025
AUD THB reference 23.5
AUD TWD reference 22.78
AUD USD reference 0.703
AUD VND reference 18473
AUD XDR reference 0.5166

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — rba-exchange-rate:

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

const pair = await getRate('AUD', 'USD', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

Why use the official Reserve Bank of Australia rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in Australia and beyond typically require the official rate published by Reserve Bank of Australia for a given date — a fixed, citable number that never changes after publication. This API serves those published tables with the bank's own rate_date on every response; weekends and holidays return the most recent published date, which is the rate compliance rules require you to apply.

Pairs the bank doesn't print directly are resolved from its table (inverse or cross via AUD) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.

Endpoints

Full parameter reference in the API documentation. Every request counts toward your plan's monthly quota — rates change once per business day, so caching a day's table locally makes a small quota go far.

Frequently asked questions

Is there an API for Reserve Bank of Australia exchange rates?

Yes — this one. Official daily AUD rates as clean JSON, latest table on every plan including free.

How often are the rates updated?

Reserve Bank of Australia publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-07-31).

Are these the official rates?

Yes — ingested from Reserve Bank of Australia's own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.

Reserve Bank of Australia rates, one API key

Latest table on every plan. History back to 2023 on paid plans. No credit card to start.

Get Free API Key Read the Docs