curl --request GET \
--url https://api.example.com/api/v1/onchain/utxos[
{
"amount_sat": 1,
"outpoint": "<string>",
"confirmation_height": 1
}
]Returns all UTXOs in the on-chain wallet. Each entry includes the outpoint, amount, and confirmation height (if confirmed).
curl --request GET \
--url https://api.example.com/api/v1/onchain/utxos[
{
"amount_sat": 1,
"outpoint": "<string>",
"confirmation_height": 1
}
]Returns the on-chain UTXOs
The value of the UTXO in satoshis.
x >= 0Contains the reference to the specific transaction output via transaction ID and index.
An optional field that specifies the block height at which the transaction was confirmed. If
the transaction is unconfirmed, this value will be None.
x >= 0Was this page helpful?