Crypto List
GETπ Public
Get available crypto token list with corresponding action. Only supports DEPOSIT and WITHDRAW.
Request Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
| action | Object | Yes | Action |
Response Contentβ
| Name | Type | Description |
|---|---|---|
| data | String[] | |
| success | Boolean | Request validation is successful or not. It will be set to true when the HTTP status is 200. |
| code | Integer | Request status code. It will be set to 1 when the request is processed successfully. When unsuccessful, there will be an error code. |
| msg | String | Request status message. It will be set to Success when the request is processed successfully. When unsuccessful, there will be an error message. |
| time | Double | Current unix timestamp. |
example
GET
https://api.btse.com/public-api/wallet/v1/crypto/listResponse
{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
"BTC",
"ETH"
]
}