RPC Browser

Arguments


Help Content

gettxout "txid" n ( include_mempool )

Returns details about an unspent transaction output.

Arguments:
1. txid               (string, required) The transaction id
2. n                  (numeric, required) vout number
3. include_mempool    (boolean, optional, default=true) Whether to include the mempool. Note that an unspent output that is spent in the mempool won't appear.

Result (If the UTXO was not found):
null    (json null)

Result (Otherwise):
{                             (json object)
  "bestblock" : "hex",        (string) The hash of the block at the tip of the chain
  "confirmations" : n,        (numeric) The number of confirmations
  "value" : n,                (numeric) The transaction value in BC2
  "scriptPubKey" : {          (json object)
    "asm" : "str",            (string) Disassembly of the public key script
    "desc" : "str",           (string) Inferred descriptor for the output
    "hex" : "hex",            (string) The raw public key script bytes, hex-encoded
    "type" : "str",           (string) The type, eg pubkeyhash
    "address" : "str"         (string, optional) The Bitcoin address (only if a well-defined address exists)
  },
  "coinbase" : true|false     (boolean) Coinbase or not
}

Examples:

Get unspent transactions
> bitcoinII-cli listunspent 

View the details
> bitcoinII-cli gettxout "txid" 1

As a JSON-RPC call
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "gettxout", "params": ["txid", 1]}' -H 'content-type: text/plain;' http://127.0.0.1:8332/

txid

{
    "name": "txid",
    "detailsLines": [],
    "properties": [
        "string",
        "required"
    ],
    "description": "The transaction id"
}

n

{
    "name": "n",
    "detailsLines": [],
    "properties": [
        "numeric",
        "required"
    ],
    "description": "vout number"
}

include_mempool

{
    "name": "include_mempool",
    "detailsLines": [],
    "properties": [
        "boolean",
        "optional",
        "default=true"
    ],
    "description": "Whether to include the mempool. Note that an unspent output that is spent in the mempool won't appear."
}

Recent (1)

Blockchain (33)

Control (6)

Mining (7)

Network (14)

Rawtransactions (19)

Signer (1)

Util (8)

Wallet (66)

Zmq (1)