debug_getRawTransaction

**Availability:** Access to the `debug` namespace depends on your endpoint's method allowlist. Starting **August 4, 2026 at 12:00 PM PST**, all `debug_*` methods require an API key appended to the RPC URL — unauthenticated calls are rejected. If you receive `-32601 method not found` or `method not supported` errors, contact Conduit support to confirm your endpoint's configuration. Returns the RLP-encoded transaction for the given transaction hash. Both `debug_getRawTransaction` and `eth_getRawTransactionByHash` are supported on Conduit RPC endpoints and return identical results — use whichever fits your tooling. Returns `null` for unknown transaction hashes. ⚡ Compute Units: [10 CU](https://docs.conduit.xyz/rpc-nodes/information/compute-units)

Request

This endpoint expects an object.
transactionHashstringRequiredformat: "^0x[0-9a-fA-F]{64}$"

32-byte hash of a transaction

Response

The RLP-encoded transaction (hex-encoded), or null if the transaction is unknown.