Skip to main content
POST
eth_getTransactionByHash
Arc API method that returns the information about a transaction requested by transaction hash.
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

  • transactionHash — the hash of the transaction to retrieve

Response

  • result — a transaction object, or null if no transaction was found:
    • hash — the transaction hash
    • nonce — the number of transactions made by the sender prior to this one
    • blockHash — hash of the block containing this transaction
    • blockNumber — block number containing this transaction
    • from — address of the sender
    • to — address of the receiver
    • value — value transferred in wei
    • input — data sent along with the transaction
    • type — transaction type (Arc supports type 0x76 for TempoTransaction)

eth_getTransactionByHash code examples

Body

application/json
id
integer
default:1
jsonrpc
string
default:2.0
method
string
default:eth_getTransactionByHash
params
array

Response

200 - application/json

Returns the result of eth_getTransactionByHash.

jsonrpc
string
id
integer
result
object
Last modified on August 3, 2026