get-tx-outspend
Retrieve outspend details for a specific Bitcoin transaction output by providing the transaction ID (txid) and output index (vout), enabling precise tracking of spent UTXOs.
Instructions
Returns outspend info for a transaction output
Input Schema
Name | Required | Description | Default |
---|---|---|---|
txid | Yes | The txid to get outspend for | |
vout | Yes | The vout index to get outspend for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"txid": {
"description": "The txid to get outspend for",
"maxLength": 64,
"minLength": 64,
"type": "string"
},
"vout": {
"description": "The vout index to get outspend for",
"type": "integer"
}
},
"required": [
"txid",
"vout"
],
"type": "object"
}