Obtain a list of all currently available cryptocurrencies. The response shows only cryptocurrencies (e.g. BTC) and contains all the data available in assets endpoint.

HTTP Request:

GET /available/crypto

Example of successful response:

{
  "success": true,
  "data": {
    "count": 1,
    "list": [
      {
        "code": "BTC",
        "name": "Bitcoin",
        "decimalPlaces": 8,
        "symbol": "₿"
      }
    ]
  }
}
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 cryptocurrency
“data”, “list”, <element>, “name”StringName of the cryptocurrency
“data”, “list”, <element>, “decimalPlaces”IntegerMinimum subunit of the cryptocurrency
“data”, “list”, <element>, “symbol”StringGraphic symbol of the cryptocurrency