Skip to main content
GET
/
{date}
/
{currency}
Historical Rate for Currency and Date
curl --request GET \
  --url https://api.exchangeratesapi.com.au/{date}/{currency} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "timestamp": 1725062400,
  "base": "AUD",
  "date": "2025-08-31",
  "rates": {
    "USD": 0.678234
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.exchangeratesapi.com.au/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication using Bearer token

Path Parameters

date
string
required

Date in YYYY-MM-DD format

Pattern: ^\d{4}-\d{2}-\d{2}$
currency
enum<string>
required

Currency code Three-letter currency code

Available options:
AUD,
USD,
EUR,
GBP,
JPY,
CNY,
KRW,
INR,
SGD,
NZD,
THB,
MYR,
IDR,
VND,
HKD,
PHP,
CAD,
CHF,
TWD,
TWI,
SDR

Response

Exchange rate for the specified currency and date

success
boolean
required
Example:

true

timestamp
integer
required

Unix timestamp of the rate date

base
string
required
Example:

"AUD"

date
string
required

Date of the rates (YYYY-MM-DD)

Pattern: ^\d{4}-\d{2}-\d{2}$
rates
object
required

Object containing currency codes as keys and exchange rates as values