Account balance inquiry

GET /api/v1/account/balanceof

Request header parameter description

Name
Type
Required
Description

x-api-key

string

yes

appkey【Please go to the merchant backend to obtain】

x-api-nonce

string

yes

random string

x-api-timestamp

int(10)

yes

Unix Timestamp

x-api-signature

string

yes

Signature Hash value

Response example

{
    "code": 0,
    "msg": "successful",
    "data": {
        "balance_free": "1000.00",//Account available balance
        "balance_lock": "0.00"//Freeze balance
    }
}

Last updated