Request
GET https://custody-example-url/custody/v1/api/projects/{b_id}/integrated/wallets/coins/{coin_name}
Parameters
Field |
Type |
Description |
b_id |
String |
Business line ID |
coin_name |
String |
Token name |
Response
Field |
Type |
Description |
bid |
String |
Business line ID |
currency |
String |
Asset Name |
total_balance |
Integer |
Balance |
available_balance |
Integer |
Available |
frozen_balance |
Integer |
Frozen |
pending_balance |
Integer |
Frozen - pending |
fixed_income_amount |
Integer |
Frozen - fixed income |
address_infos |
Object[] |
Address Info |
- coin_name |
String |
Token Name |
- address |
String |
Deposit Address |
- tag |
String |
Deposit Address's tag or memo |
Response Example
{
"code": 0,
"message": "string",
"data": {
"bid": "string",
"currency": "string",
"total_balance": 0,
"available_balance": 0,
"frozen_balance": 0,
"pending_balance": 0,
"fixed_income_amount": 0,
"address_infos": [
{
"address": "string",
"coin_name": "string",
"tag": "string"
}
]
},
"successful": true
}
NOTE:
1. Deposit or withdraw of USDTERC, USDTOMNI and USDTERC are all included in the USDT asset balance.
2. total_balance = available_balance + frozen_balance + fixed_income_amount,pending_balance not included in balance.