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

# jsonrpc eth_getTransactionByHash | TRON

> TRON API method that returns transaction information by transaction hash. This method provides Ethereum-compatible interface for TRON blockchain.

TRON API method that returns detailed transaction information by transaction hash, providing an Ethereum-compatible interface for accessing TRON blockchain data.

## Parameters

* `jsonrpc` — the JSON-RPC protocol version (always "2.0")
* `method` — the method name (always "eth\_getTransactionByHash")
* `params` — array containing method parameters
  * `transactionHash` — the transaction hash as a hex string
* `id` — request identifier (number or string)

## Response

* `jsonrpc` — the JSON-RPC protocol version ("2.0")
* `id` — the request identifier that matches the request
* `result` — transaction object containing transaction details including hash, from, to, value, gas, and other transaction metadata

## Use case

The `jsonrpc eth_getTransactionByHash` method is used for:

* Retrieving detailed transaction information for verification and monitoring through Web3 interfaces
* Implementing transaction tracking functionality in dApps and wallets
* Building payment confirmation systems that verify transaction details
* Developing blockchain analytics tools that analyze transaction patterns


## OpenAPI

````yaml openapi/tron_node_api/jsonrpc_eth_getTransactionByHash.json POST /95e61622bf6a8af293978377718e3b77/jsonrpc
openapi: 3.0.0
info:
  title: eth_getTransactionByHash example
  version: 1.0.0
  description: >-
    This is an API example for eth_getTransactionByHash, a method to get
    transaction information by transaction hash on the TRON network through
    Ethereum-compatible JSON-RPC interface.
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/jsonrpc:
    post:
      tags:
        - TRON JSON-RPC Operations
      summary: eth_getTransactionByHash
      operationId: getTransactionByHash
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - id
                - params
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_getTransactionByHash
                id:
                  type: integer
                  default: 1
                params:
                  type: array
                  default:
                    - >-
                      0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b
                  items:
                    type: string
                    description: Transaction hash
      responses:
        '200':
          description: Transaction information
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object
                    description: Transaction object containing transaction details

````