Skip to main content
GET
/
v2
/
api
Check Transaction Receipt Status
curl --request GET \
  --url https://api.etherscan.io/v2/api
{
  "status": "1",
  "message": "OK",
  "result": {
    "status": "1"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.etherscan.io/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

apikey
string
default:"YourApiKeyToken"
Your Etherscan API key.
chainid
string
default:"1"
Chain ID to query, eg 1 for Ethereum, 8453 for Base from our supported chains.
module
string
default:"transaction"
Set to transaction for this endpoint.
action
string
default:"gettxreceiptstatus"
Set to gettxreceiptstatus for this endpoint.
txhash
string
Transaction hash to check the receipt status.
{
  "status": "1",
  "message": "OK",
  "result": {
    "status": "1"
  }
}