获取储备金证明
描述
获取储备金证明接口
HTTP请求
- GET /api/v3/market/proof-of-reserves
- 限频规则: 20次/秒/IP
返回示例
{
  "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%"
      }
    ]
  }
}
返回参数
| 返回字段 | 参数类型 | 字段说明 | 
|---|---|---|
| merkleRootHash | String | 默克尔树根哈希 | 
| totalReserveRatio | String | 总储备金率 小数形式返回。如 1.99代表199%精度为两位小数 | 
| list | Array | 列表 | 
| >coin | String | 币种名称 | 
| >platformAssets | String | 平台资金 精度为两位小数,单位为币种coin | 
| >userAssets | String | 用户资金 精度为两位小数,单位为币种coin | 
| >reserveRatio | String | 储备金率 小数形式返回。如 1.99代表199%精度为两位小数 |