Skip to main content
GET
/
api
/
v1
/
customer
/
{chain}
/
transactions
/
{transaction_hash}
/
receipt
Get Transaction Receipt
curl --request GET \
  --url https://api-gateway.sonarx.com/api/v1/customer/{chain}/transactions/{transaction_hash}/receipt \
  --header 'apikey: <api-key>'
{
"block_number": 81911103,
"timestamp": 1768942178,
"datetime": "2026-01-20T20:49:38",
"transaction_hash": "0x0063079708b5fab44762765a01c17ab2754ebc15cb9ecd0e14fcbbd520452c27",
"transaction_index": 80,
"cumulative_gas_used": 9824334,
"gas_used": 21000,
"contract_address": null,
"status": true,
"effective_gas_price": 36315157924,
"version": 0
}

Authorizations

apikey
string
header
required

API key for authentication

Path Parameters

chain
enum<string>
required

The blockchain network to query

Available options:
polygon
Example:

"polygon"

transaction_hash
string
required

Transaction hash (66 character hex string starting with 0x)

Example:

"0x00dcc066aad65ae4f10c0fc4ec1fac5d3693c12c01d98a9f6a87448be9b26200"

Response

Transaction receipt

block_number
integer
timestamp
integer
datetime
string<date-time>
transaction_hash
string
transaction_index
integer
cumulative_gas_used
integer
gas_used
integer
contract_address
string | null
status
boolean
effective_gas_price
integer
version
integer