CurrencyRateDocs
Docs › API reference › Rates/api/v1/currencies

GET /api/v1/currencies

The list of every currency the API supports, with display name and symbol.

Request

GET /api/v1/currencies

Response

[
  { "code": "EUR", "name": "Euro", "symbol": "€" },
  { "code": "USD", "name": "US Dollar", "symbol": "$" }
]

Errors

401 Unauthorized

The Authorization header is missing, malformed, or the key is wrong.

Missing or malformed Authorization header
{
  "statusCode": 401,
  "message": "Missing or malformed Authorization header",
  "error": "Unauthorized"
}
Invalid API key
{
  "statusCode": 401,
  "message": "Invalid API key",
  "error": "Unauthorized"
}
429 Too Many Requests

Your plan's request quota for the current period is used up.

Rate limit exceeded: 1000 requests per 30-day period
{
  "statusCode": 429,
  "message": "Rate limit exceeded: 1000 requests per 30-day period"
}