> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.chainstack.com/feedback

```json
{
  "path": "/reference/hyperliquid-evm-eth-get-raw-transaction-by-hash",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# eth_getRawTransactionByHash | Hyperliquid EVM

> Returns the raw transaction data by its hash.

<Info>
  This method is available on Chainstack. Not all Hyperliquid methods are available on Chainstack, as the open-source node implementation does not support them yet — see [Hyperliquid methods](/docs/hyperliquid-methods) for the full availability breakdown.
</Info>

Returns the raw transaction data by its hash. Use this method to retrieve the RLP-encoded raw transaction when you have the transaction hash.

<Check>
  **Get your own node endpoint today**

  [Start for free](https://console.chainstack.com/) and get your app to production levels immediately. No credit card required.

  You can sign up with your GitHub, X, Google, or Microsoft account.
</Check>

## Parameters

* `transactionHash` (string, required) — The 32-byte hash of the transaction

## Returns

Returns the raw transaction data as a hex-encoded string, or `null` if the transaction is not found.

The raw transaction data is RLP-encoded and includes all transaction fields in their original binary format.

<Note>
  Raw transaction data can be decoded using RLP decoding libraries to extract individual transaction fields like nonce, gas price, gas limit, recipient, value, and signature components.
</Note>

## Use cases

* **Transaction broadcasting** — Re-broadcast transactions to other networks
* **Forensic analysis** — Analyze transaction structure and encoding
* **Cross-chain bridges** — Verify transaction format across different networks
* **Development tools** — Debug transaction encoding and decoding
* **Archive services** — Store transactions in their original format
* **Signature verification** — Extract and verify transaction signatures


## OpenAPI

````yaml /openapi/hyperliquid_node_api/evm_eth_get_raw_transaction_by_hash.json post /evm
openapi: 3.0.0
info:
  title: Hyperliquid EVM API - eth_getRawTransactionByHash
  version: 1.0.0
servers:
  - url: >-
      https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274
security: []
paths:
  /evm:
    post:
      summary: eth_getRawTransactionByHash
      description: Returns the raw transaction data by its hash.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - params
                - id
              properties:
                jsonrpc:
                  type: string
                  enum:
                    - '2.0'
                  default: '2.0'
                  description: JSON-RPC version
                method:
                  type: string
                  enum:
                    - eth_getRawTransactionByHash
                  default: eth_getRawTransactionByHash
                  description: The RPC method name
                params:
                  type: array
                  description: 'Parameters: [transactionHash]'
                  default:
                    - >-
                      0x66112ff0438f84686c8003f3a855057694c9018f07905c0e15f2f20f4dd0791a
                id:
                  type: integer
                  default: 1
                  description: Request identifier
            example:
              jsonrpc: '2.0'
              method: eth_getRawTransactionByHash
              params:
                - >-
                  0x66112ff0438f84686c8003f3a855057694c9018f07905c0e15f2f20f4dd0791a
              id: 1
      responses:
        '200':
          description: Successful response with raw transaction data
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    description: JSON-RPC version
                  id:
                    type: integer
                    description: Request identifier
                  result:
                    type: string
                    description: >-
                      Raw transaction data as hex-encoded string, or null if not
                      found
              example:
                jsonrpc: '2.0'
                id: 1
                result: >-
                  0xf86c0185037e11d6008252089433c3321b162edac1fdbb53af2962b2940c07e334880de0b6b3a76400008026a01234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdefa0abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890ab

````