Get Account Assets
HTTP request Retrieve account assets
- GET /api/v2/account/assets
Weight(IP): 5, Weight(UID): 5
Request parameters
NONE
Request example
curl "https://api-spot.weex.com/api/v2/account/assets" \
   -H "ACCESS-KEY:*******" \
   -H "ACCESS-SIGN:*******" \
   -H "ACCESS-PASSPHRASE:*****" \
   -H "ACCESS-TIMESTAMP:1659076670000" \
   -H "locale:zh-CN" \
   -H "Content-Type: application/json"
Response parameters
| Field Name | Type | Field Description | 
|---|---|---|
| coinId | Integer | Crypto ID | 
| coinName | String | Name of the crypto | 
| available | String | Available asset | 
| frozen | String | Frozen asset | 
| equity | String | Total asset | 
Response example
{
  "code": "00000",
  "msg": "success",
  "requestTime": 1743729400189,
  "data": [{
    "coinId": 1,
    "coinName": "BTC",
    "available": "0.0040000000000000",
    "frozen": "0",
    "equity": "0.0040000000000000"
  }, {
    "coinId": 2,
    "coinName": "USDT",
    "available": "10000999657.8927028500000000",
    "frozen": "0",
    "equity": "10000999657.8927028500000000"
  }]
}