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

Authorizations

Authorization
string
header
required

API key authentication using Bearer token

Query Parameters

symbols
string

Comma-separated list of currency codes to filter results

base
enum<string>

Base currency (currently only AUD supported)

Available options:
AUD

Response

Latest exchange rates

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