Docs

starknet_getTransactionByHash - Get the det...

Get the details and status of a submitted transaction

Get the details and status of a submitted transaction

Request Parameters

Request
transaction_hashfelt252

Transaction hash

Response Body

Response
resultOBJECT

Successful response payload.

Errors

CodeMessage
29Transaction hash not found

Examples

Bash
curl -X POST https://api-starknet-mainnet.n.dwellir.com/YOUR_API_KEY \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "starknet_getTransactionByHash",
    "params": [
      "0x27f867e8c63aeb7e85a756c67191a26d9c2c71fb4490b4cce4677ff273659bf"
    ],
    "id": 1
  }'

On this page