查询指定地址BTC余额详情(总余额、非铭文余额、铭文相关余额)
查询指定地址BTC余额详情(总余额、非铭文余额、铭文相关余额)
application/json
Request Body
chainSymbol string required
链标识
address string required
查询的地址
Responses
- 200
successful operation
application/json
Schema
Example (from schema)
Schema
code integer
msg string
data object
address string
地址
satoshi int
pendingSatoshi int
utxoCount int
btcSatoshi int
btcPendingSatoshi int
btcUtxoCount int
inscriptionSatoshi int
inscriptionPendingSatoshi int
inscriptionUtxoCount int
success boolean
{
"code": 200,
"msg": "ok",
"data": {
"address": "bc1pxaneaf3w4d27hl2y93fuft2xk6m4u3wc4rafevc6slgd7f5tq2dqyfgy06",
"satoshi": null,
"pendingSatoshi": null,
"utxoCount": null,
"btcSatoshi": null,
"btcPendingSatoshi": null,
"btcUtxoCount": null,
"inscriptionSatoshi": null,
"inscriptionPendingSatoshi": null,
"inscriptionUtxoCount": null
},
"success": true
}
Loading...