跳到主要内容

获取储备金证明

描述

获取储备金证明接口

HTTP请求

  • GET /api/v3/market/proof-of-reserves
  • 限频规则: 20次/秒/IP
请求示例
curl "https://api.bitget.com/api/v3/market/proof-of-reserves"

请求参数

返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1753845058586,
"data": {
"merkleRootHash": "e0dff99bbe2c2dcb",
"totalReserveRatio": "175%",
"list": [
{
"coin": "BTC",
"userAssets": "9530.89",
"platformAssets": "29679.59",
"reserveRatio": "311%"
},
{
"coin": "USDT",
"userAssets": "1948633388.98",
"platformAssets": "1985576297.93",
"reserveRatio": "102%"
},
{
"coin": "ETH",
"userAssets": "195465.81",
"platformAssets": "294561.45",
"reserveRatio": "151%"
},
{
"coin": "USDC",
"userAssets": "58830275.64",
"platformAssets": "157216065.76",
"reserveRatio": "267%"
}
]
}
}

返回参数

返回字段参数类型字段说明
merkleRootHashString默克尔树根哈希
totalReserveRatioString总储备金率
小数形式返回。如1.99代表199%
精度为两位小数
listArray列表
>coinString币种名称
>platformAssetsString平台资金
精度为两位小数,单位为币种coin
>userAssetsString用户资金
精度为两位小数,单位为币种coin
>reserveRatioString储备金率
小数形式返回。如1.99代表199%
精度为两位小数