On this page
Available Cryptocurrencies
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": "₿"
}
]
}
}
Field | Type | Description |
---|---|---|
“success” | Boolean | HTTP Request is successful, if it’s false you have to handle the error |
“data” | Object | |
“data”, “count” | Integer | Length of the result list |
“data”, “list” | Array | Result list |
“data”, “list”, <element>, “code” | String | Listing code of the cryptocurrency |
“data”, “list”, <element>, “name” | String | Name of the cryptocurrency |
“data”, “list”, <element>, “decimalPlaces” | Integer | Minimum subunit of the cryptocurrency |
“data”, “list”, <element>, “symbol” | String | Graphic symbol of the cryptocurrency |