Get Merchant Balance
Query the account balance of a specific currency for the merchant through this interface
Submission URL:https://openapi.basicex.com/v2/getBalance
Request Method:POST
Content-Type:application/json
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
currency | Yes | String | Cryptocurrency type, e.g., BCNY (recommended, CNY 1:1), USDT, BTC, etc., View Currency List |
Request Example:
Note: When sending a request, you must ensure that the parameters are exactly the same as those used when constructing the signature, otherwise the platform's signature verification will fail
json
{
"currency": "BCNY"
}
Response Parameters:
Field | Type | Description |
---|---|---|
availableBalance | decimal | Available Balance |
frozenBalance | decimal | Frozen Balance (unavailable balance) |
unsettledBalance | decimal | Pending Settlement Amount |
After the request is successful, the response code is 0000
json
{
"code": "0000",
"message": "",
"data": {
"availableBalance": "0.000000",
"frozenBalance": "0.000000",
"unsettledBalance": "0.000000"
}
}