gettxout

Argument #1-txid

Type: string, Required

Description: The transaction id

Argument #2-n

Type: number (int), Required

Description: vout number

Argument #3-include_mempool

Type: boolean, Optional
Default=true

Description: 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 BTC
    "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
  }