DASH
POST
GET
Last updated on January 1, 1970
2 min read
Method gettxout undefined ()
connect with JSON-RPC protocol
gettxout
Returns details about an unspent transaction output (UTXO).
Parameters
TXID
- string (hex)
The TXID of the transaction containing the relevant output, encoded as hex in RPC byte order.
vout
- number (int)
The output index number (vout) of the output within the transaction; the first output in a transaction is vout 0.
Unconfirmed
- boolean
Optional.
Set to true to display unconfirmed outputs from the memory pool; set to false (the default) to only display outputs from confirmed transactions.
Request
curl --location --request POST 'https://dash.getblock.io/mainnet/'
--header 'x-api-key: YOUR-API-KEY'
--header 'Content-Type: application/json'
--data-raw '{"jsonrpc": "2.0",
"method": "gettxout",
"params": ["83dc6c8e03026c0317885f62a7072dfde10014967f59477a0f7b5fc52f44a784", 0, false],
"id": "getblock.io"}'
Response
{
"error": null,
"id": "getblock.io",
"result": {
"bestblock": "0000000000000019cd3a50eedc418372f7aa9060d6ded56a769a51a93dfe0e4a",
"coinbase": true,
"confirmations": 570,
"scriptPubKey": {
"addresses": [
"XmzfivrzYQ7B7oBMZKwPRdhjB1iNvX71XZ"
],
"asm": "OP_DUP OP_HASH160 7c086eada12bdb10a265c16c08a7ae87366bd481 OP_EQUALVERIFY OP_CHECKSIG",
"hex": "76a9147c086eada12bdb10a265c16c08a7ae87366bd48188ac",
"reqSigs": 1,
"type": "pubkeyhash"
},
"value": 1.23223328
}
}
Start Building with GetBlock RPCs for Free
Previous
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }
Next
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }