Obtain a list of all currently available assets, containing the most important data common to all of them. All the response fields specified in the table below are mandatory.

HTTP Request:

GET /available/all

Example of successful response:

{
  "success": true,
  "data": {
    "count": 2,
    "list": [
      {
        "code": "USD",
        "name": "Dollar",
        "decimalPlaces": 2,
        "symbol": "$",
        "type": "currency"
      },
      {
        "code": "BTC",
        "name": "Bitcoin",
        "decimalPlaces": 8,
        "symbol": "₿",
        "type": "crypto"
      }
    ]
  }
}
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 asset
“data”, “list”, <element>, “name”StringName of the asset
“data”, “list”, <element>, “decimalPlaces”IntegerMinimum subunit of the asset
“data”, “list”, <element>, “symbol”StringGraphic symbol of the asset
“data”, “list”, <element>, “type”String enumKind of asset, can be currency, crypto, material