# Balance Inquiry

# URL

  • {domain}/open-api/account/balance

# Method

  • POST

# Request Header

Parameter name Required Type of data Description
Content-Type Y string application/json

# Request parameters

paramter name required type description
timestamp Yes long current timestamp

# Response parameters

paramter name type description
balance integer account balance, the unit is cent

# Request example

# Param content

{
    "timestamp": 1676017834369
}

How to construct request body

# Request body

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

# Response example

code collection

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