Skip to main content
GET
/
exchange_rates
Get all exchange rates
curl --request GET \
  --url https://api.vantage.sh/v2/exchange_rates \
  --header 'Authorization: Bearer <token>'
{
  "exchange_rates": [
    {
      "base_currency_code": "USD",
      "currency_code": "PHP",
      "rate": "300.011",
      "effective_date": "2025-09-01",
      "updated_at": "2025-09-10 00:05:41 UTC"
    }
  ],
  "meta": {
    "current_page": 1,
    "next_page": null,
    "prev_page": null,
    "total_pages": 1,
    "total_count": 1
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

page
integer<int32>

The page of results to return.

limit
integer<int32>

The number of results to return. The maximum is 1000.

Response

200 - application/json

ExchangeRates model

exchange_rates
object[]