跳转至

查看实时余额

HTTP 请求

BaseURL https://open.merchant.liquido.com

GET /open-api/account/merchant/balance

Request Headers
{
    "Content-Type": "application/json",
    "Authorization": "Bearer {{access_token}}"
}
Request Example
   Request Method: GET 
   Url: https://open.merchant.liquido.com/open-api/account/merchant/balance?countryCode=BR
Content-Type: application/json
{
    "code": 200,
    "msg": "success",
    "data": {
        "totalBalance" : "9999",
        "withdrawableAmount" : "9999",
        "currency" : "USD"
    }
}

HTTP Headers 字段说明

Key Value
Content-Type application/json
Authorization "Bearer" + " " + {{access_token}}

请求参数

参数 必填 类型 描述
countryCode String 国家代码, 枚举: BR,MX

响应 字段说明

参数 类型 描述
code Int 状态码,如 200
msg String 状态信息,如 "success"
data JSON 返回数据

对象字段说明

Data

参数 类型 描述
totalBalance Int 账号的实时余额(单位:分)
withdrawableAmount Int PAY-IN 可提现余额 + PAY-OUT 账户余额 (单位:分)
currency String 货币种类, 如 BRL、 MXN
回到页面顶部