Skip to main content
GET
/
latest
/
{currency}
Latest Rate for Currency
curl --request GET \
  --url https://api.exchangeratesapi.com.au/latest/{currency} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "timestamp": 1725148800,
  "base": "AUD",
  "date": "2025-09-01",
  "rates": {
    "USD": 0.678234
  }
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token

Path Parameters

currency
enum<string>
required

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

Latest exchange rate for currency

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)

rates
object
required

Object containing currency codes as keys and exchange rates as values