POST
/
95e61622bf6a8af293978377718e3b77
/
jsonrpc
/
eth_getTransactionByHash
eth_getTransactionByHash
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/jsonrpc/eth_getTransactionByHash \
  --header 'Content-Type: application/json' \
  --data '{
  "jsonrpc": "2.0",
  "method": "eth_getTransactionByHash",
  "id": 1,
  "params": [
    "0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b"
  ]
}'
{
  "jsonrpc": "<string>",
  "id": 123,
  "result": {}
}
TRON API method that returns detailed transaction information by transaction hash, providing an Ethereum-compatible interface for accessing TRON blockchain data.
Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

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

Body

application/json

Response

200 - application/json

Transaction information

The response is of type object.