2.1.8 Inquiry on Merchant Account Balance
Path:/openapi/card/merchant/balance
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Description:
Example Request:
{
"coin": "usdt"
}
Request Parameter:
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| coin | string | false | Coin type name |
API Response:
| Parameter Name | Type | Description |
|---|---|---|
| code | string | Error code |
| data | array | Response data |
| amount | string | Available Balance for this coin |
| coin | string | Coin |
| total_amount | string | Balance for this coin |
| msg | string | Error message |
Example Response:
{
"code": "00000",
"data": [
{
"amount": "100.00",
"coin": "usdt",
"total_amount": "100.888888"
}
],
"msg": "ok"
}