Skip to main content
GET
/
data
/
fx
/
v1
/
currencies
List ISO 4217 currencies
curl --request GET \
  --url https://api.voyant.travel/data/fx/v1/currencies \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "code": "USD",
      "name": "US Dollar",
      "namePlural": "US dollars",
      "symbol": "$",
      "symbolNative": "$",
      "decimalDigits": 2,
      "rounding": 0
    }
  ],
  "totalCount": 123,
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Voyant Data API token, scoped per sub-product (data:{product}:read). Sent as Authorization: Bearer <token>.

Response

Currencies

data
object[]
required
totalCount
integer
required
nextCursor
string