Bitcoin
getrawtransaction (full)60 credits
Returns raw transaction data.
Parameters
| Name | Type | Description |
|---|---|---|
| txid | string | Transaction id. |
| verbose | boolean | number | Decode as JSON when true/1. (optional) |
| blockhash | string | Optional 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
]
}'