Get all currencies

GET /currencies

Get a list of all currencies

Query parameters

  • base string

    Base currency for exchange rate. Default: USD

Responses

  • 200 application/json

    List of currencies matching filter

    Hide response attributes Show response attributes object
  • API key is missing or invalid

  • [FREE PLANS ONLY] Request Quota Exceeded

GET /currencies
curl \
 -X GET https://api.tellusdb.com/v1/currencies?token=api_token_value
Response examples (200)
{
  "result": [
    {
      "code": "USD",
      "name": "United States dollar",
      "symbol": "$",
      "rate": 7.06881
    }
  ],
  "count": 162,
  "time_taken_ms": 1.3892211
}