Query the details of the BTC balance of the specified address (total balance, non-inscription balance, inscription related balance)
Query the details of the BTC balance of the specified address (total balance, non-inscription balance, inscription related balance)
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...