Bitcoin

getrawtransaction30 credits

Returns raw transaction data.

Network: bitcoin

Parameters

NameTypeDescription
txidstringTransaction id.
verboseboolean | numberDecode as JSON when true/1. (optional)
blockhashstringOptional block hash. (optional)

Returns

Type

Object | string

Raw or decoded tx.

Code examples

curl https://bitcoin-mainnet.rpcnode.dev/7c9e6679-7425-40de-944b-e07fc1f90ae7 \
  -X POST \
  -H 'content-type: application/json' \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getrawtransaction",
  "params": [
    "4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b",
    true
  ]
}'