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
value
— the transaction ID (hash) in hexadecimal format
Response
Returns detailed transaction execution information including:id
— the transaction hashblockNumber
— block number containing the transactionblockTimeStamp
— block timestampcontractResult
— contract execution resultsfee
— transaction fee paidresult
— transaction execution result (SUCCESS/REVERT)resMessage
— result message if failedreceipt
— transaction receipt with resource usagelog
— event logs generated by the transaction
Use case
Thewalletsolidity/gettransactioninfobyid
method is used for:
- Retrieving confirmed transaction execution results from solidified blockchain state
- Analyzing gas usage and fees for finalized transactions
- Monitoring contract execution outcomes using reliable data
- Building applications that require confirmed transaction execution information
Body
application/json
Transaction ID (hash) in hexadecimal format
Example:
"7c2d4206c59cc541d4b7eb7a0001bce8a7a77d1a2e3b5c4f7a8b9c0d1e2f3a4b"
Response
200 - application/json
Transaction execution information from solidified blocks
Transaction hash identifier
Example:
"7c2d4206c59cc541d4b7eb7a0001bce8a7a77d1a2e3b5c4f7a8b9c0d1e2f3a4b"
Block number containing the transaction
Example:
70000000
Block timestamp
Example:
1704067200000
Contract execution results
Transaction fee paid in sun
Example:
1100000
Transaction execution result
Available options:
SUCCESS
, REVERT
, OUT_OF_TIME
, OUT_OF_ENERGY
Example:
"SUCCESS"
Result message if transaction failed
Transaction receipt with resource usage
Event logs generated by the transaction