Obtain a list of all currently available currencies. The response shows only fiat currencies (e.g. USD) and contains all the data available in assets endpoint, plus some specific data available only for currencies.

HTTP Request:

GET /available/currencies

Example of successful response:

{
  "success": true,
  "data": {
    "count": 1,
    "list": [
      {
        "code": "USD",
        "name": "Dollar",
        "decimalPlaces": 2,
        "symbol": "$",
        "obsolete": false,
        "countries": ["AS", "EC", "FM", "GU", "MH", "MP", "PR", "PW", "SV", "TC", "TL", "UM", "US", "VG", "VI"]
      }
    ]
  }
}
FieldTypeDescription
“success”BooleanHTTP Request is successful, if it’s false you have to handle the error
“data”Object
“data”, “count”IntegerLength of the result list
“data”, “list”ArrayResult list
“data”, “list”, <element>, “code”StringListing code of the currency
“data”, “list”, <element>, “name”StringName of the currency
“data”, “list”, <element>, “decimalPlaces”IntegerMinimum subunit of the currency
“data”, “list”, <element>, “symbol”StringGraphic symbol of the currency
“data”, “list”, <element>, “obsolete”BooleanTrue if the currency is no longer used or if another currency has replaced it
“data”, “list”, <element>, “countries”String ArrayISO3166-2 country code where the currency is officially used