> ## 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.

# eth_getTransactionByHash | Ronin

> Ronin API method that returns information about a transaction by its hash. This includes details such as the transaction's sender and receiver.

Ronin API method that returns information about a transaction by its hash. This includes details such as the transaction's sender and receiver, the amount of Ether transferred, and the transaction's current state (e.g., pending, included in a block).

## Parameters

* `transactionHash` — the hash of the transaction to retrieve.

## Response

* `result` — an object containing detailed information about the transaction, including fields like `from`, `to`, `value`, `gas`, `gasPrice`, `nonce`, `blockHash`, `blockNumber`, and `transactionIndex`.

## Use case

The `eth_getTransactionByHash` method is essential for tracking specific transactions on the Ronin blockchain. It can be used by wallets to show transaction details, by exchanges to track deposits and withdrawals, or by any application that needs to verify the status and details of a transaction.


## OpenAPI

````yaml openapi/ronin_node_api/eth_getTransactionByHash.json POST /3997273fc956a67dc6982384500e669e
openapi: 3.0.0
info:
  title: eth_getTransactionByHash
  version: 1.0.0
  description: Returns the information about a transaction requested by transaction hash.
servers:
  - url: https://ronin-mainnet.core.chainstack.com
security: []
paths:
  /3997273fc956a67dc6982384500e669e:
    post:
      tags:
        - blockchain
      summary: Get transaction information by hash
      operationId: getTransactionByHash
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  default: 1
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_getTransactionByHash
                params:
                  type: array
                  items:
                    type: string
                  default:
                    - >-
                      0x1e196c5fa958d3752b92a3178dd71e8050a0b4a72f528a72c3c12b09b5fc523a
      responses:
        '200':
          description: Information about the requested transaction
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object

````