Get transaction by block number and index
Ronin node API
eth_getTransactionByBlockNumberAndIndex | Ronin
Ronin API method that returns information about a transaction by specifying the block number (or tag) and the transaction’s index position within the block.
POST
Get transaction by block number and index
Ronin API method that returns information about a transaction by specifying the block number (or tag) and the transaction’s index position within the block. This method facilitates accessing details of specific transactions within a given block.
Get your 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
blockNumber— the number of the block (or a tag such as “latest”, “earliest”, “pending”) encoded as a hexadecimal.transactionIndex— the index position of the transaction in the block, encoded as a hexadecimal.
Response
result— an object containing detailed information about the transaction, including fields likefrom,to,value,gas,gasPrice,nonce,hash, and more.
Use case
Theeth_getTransactionByBlockNumberAndIndex method is particularly useful for applications requiring information on specific transactions within a block, such as for transaction tracking, auditing, or displaying detailed transaction information in blockchain explorers.Last modified on May 18, 2026