get-tx-raw
Retrieve raw hexadecimal data for any Bitcoin transaction using its transaction ID (txid). Includes schema validation for accurate query execution.
Instructions
Returns raw hex for a transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
txid | Yes | The txid to get raw hex for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"txid": {
"description": "The txid to get raw hex for",
"maxLength": 64,
"minLength": 64,
"type": "string"
}
},
"required": [
"txid"
],
"type": "object"
}