Web3API
HomeAPI EndpointsContactTwitter
  • ​🚀 Welcome to Web3API
  • Introduction
    • ✨Getting Started
    • 📡 Choosing A Network
  • Developers
    • 🔌API Endpoints
      • eth_hashrate
      • eth_gasPrice
      • eth_blockNumber
      • eth_getBalance
      • eth_getStorageAt
      • eth_getTransactionCount
      • eth_getBlockTransactionCountByHash
      • eth_getBlockTransactionCountByNumber
      • eth_getCode
      • eth_sendRawTransaction
      • eth_call
      • eth_getBlockByHash
      • eth_getBlockByNumber
      • eth_getTransactionByHash
      • eth_getTransactionByBlockHashAndIndex
      • eth_getTransactionByBlockNumberAndIndex
      • eth_getTransactionReceipt
      • eth_getUncleByBlockHashAndIndex
      • eth_getUncleByBlockNumberAndIndex
      • eth_getUncleCountByBlockHash
      • eth_getUncleCountByBlockNumber
      • eth_estimateGas
      • eth_syncing
    • 😟API Errors and Troubleshooting
  • Tutorials
    • ⚡Adding a Custom RPC to Metamask
  • Dashboard
    • 🔑Forgot Password
  • Resources
    • ❓ FAQ
    • 🤝 Support
Powered by GitBook
On this page

Was this helpful?

  1. Developers
  2. API Endpoints

eth_getTransactionByHash

Returns information about a transaction from a given hash.

Example

curl https://bsc-<network>.web3api.com/v1/YOUR-API-KEY 
-X POST 
-H "Content-Type: application/json"  
-d "{\"jsonrpc\":\"2.0\",\"method\":\"eth_getTransactionByHash\",\"params\": [\"0x5508f1e4304cdc7d1f601e8e0322629ddcfb4ad1b1858d09e6c0b78bc097e863\", \"latest\"],\"id\":1}"
curl -X POST 'https://bsc-<network>.web3api.com/v1/YOUR-API-KEY' \
-H 'Content-Type: application/json' \
--data-raw '{"jsonrpc":"2.0","method":"eth_getTransactionByHash","params": ["0x5508f1e4304cdc7d1f601e8e0322629ddcfb4ad1b1858d09e6c0b78bc097e863"],"id":1}'
  1. TRANSACTION HASH - A string representing the hash (32 bytes) of a transaction.

Result Fields

TRANSACTION - A transaction object, or null when no transaction was found

Within the transaction object, the following information are available.

  1. blockHash: 32 Bytes - hash of the block where this transaction was in, null when its pending.

  2. blockNumber: block number where this transaction was in, null when its pending.

  3. from: 20 Bytes - address of the sender.

  4. gas: gas provided by the sender.

  5. gasPrice: gas price provided by the sender in Wei.

  6. hash: 32 Bytes - hash of the transaction.

  7. input: the data send along with the transaction.

  8. nonce: the number of transactions made by the sender prior to this one.

  9. to: 20 Bytes - address of the receiver. null when its a contract creation transaction.

  10. transactionIndex: integer of the transactions index position in the block. null when its pending.

  11. value: value transferred in Wei.

Body

{
   "jsonrpc":"2.0",
   "id":1,
   "result":{
      "blockHash":"0xde6533bd819945cbee552728721a8bef25279ead24de58fe17f34e7c063abed3",
      "blockNumber":"0x6ef8d5",
      "from":"0xa525121b54c473e3071ce15dba622d5e23970ed3",
      "gas":"0x5208",
      "gasPrice":"0x12a05f200",
      "hash":"0x5508f1e4304cdc7d1f601e8e0322629ddcfb4ad1b1858d09e6c0b78bc097e863",
      "input":"0x",
      "nonce":"0x1",
      "to":"0x71c7656ec7ab88b098defb751b7401b5f6d8976f",
      "transactionIndex":"0x1b7",
      "value":"0x54e0048173400",
      "v":"0x1b",
      "r":"0x437b3bef6de3da5b079448134f3813f34901a2473ecdcb7712f5b138c5ca33c3",
      "s":"0x35d08bdcf368764d753c3825b2d99d082efca1402313ec48d9e301ff0e355e09"
   }
}

Previouseth_getBlockByNumberNexteth_getTransactionByBlockHashAndIndex

Last updated 4 years ago

Was this helpful?

🔌