Assets
Get available asset list.
Request Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
| asset | String | No | Asset |
Response Contentβ
| Name | Type | Description |
|---|---|---|
| asset | String | Asset |
| type | String | FIAT Β· CRYPTO Β· STABLE_COIN |
| name | String | Asset name |
| precision | Integer | The number of digits after the decimal point (for Withdraw) |
| tradeScale | Integer | The number of digits after the decimal point (for Convert/OTC) |
example
GET
https://api.btse.com/public-api/wallet/v1/assetsResponse
{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
{
"asset": "BTC",
"type": "CRYPTO",
"name": "Bitcoin",
"precision": 8,
"tradeScale": 5
},
{
"asset": "USD",
"type": "FIAT",
"name": "US Dollar",
"precision": 2,
"tradeScale": 2
}
]
}