# Balance Inquiry

# HTTP request info

# URL

{domain}/open-api/account/balance

# Method

POST

# Content-Type

application/json

# Request Body Param

Parameter Name Required Type Description
appId Y string Application Id
param Y string param
sign Y string signature

# param

parameter name required type description
timestamp Yes long current timestamp

# Request example

# Param content

{
    "timestamp": 1676017834369
}

# Request body

{
    "appId": "c9b002aef1d7496c9df078d937896605",
    "sign": "Koy5A7msEIFZbNYwsfXci0DlSt9cfnqA3pvkzdahwWfMo8+o69wCWQrFkNrE/oshyqnFqs6vDeBpRUrcfO6zr5xYtq2GnPa3q+kAb1vNGQJ6nmFl7BeJNZIzjgKo6KiongH0623Nrg+Q3B5mmkKrUecW17wqspSU/zzAWAnXQcWkyY0wHzX1Qb0P9O2KQ/82Fqp7ndcFUgqvuusisYbZfsfzKcJoByDlvDAX5HlzTDRXPpknwaVPEk4O2oqMyJNxmvP/bDZB35HQnInX5q8g2jJBdljHDRdut6XJe/ko9SOOxr/Be+Wze4Kkow9m3MJmDUpER950fyzWfd4h1skNBg==",
    "param": "{\"timestamp\":1676017834369}"
}

How to construct request body


# Response Param

Parameter Name Type Description
code integer response code
message string response message
data Object data

# Response Parameters

Paramter Name Type Description
balance string account balance Exp 10000.00

# Response example

code collection

{
    "code": 10000,
    "message": "Success",
    "data": {
        "balance": "10000.00"
    }
}