Skip to main content
GET
/
?module=transaction&action=getstatus
Get Transaction Execution Status
curl --request GET \
  --url 'https://eth.blockscout.com/api/?module=transaction&action=getstatus'
{
  "status": "1",
  "message": "OK",
  "result": {
    "isError": "0",
    "errDescription": "<string>"
  }
}

Query Parameters

module
enum<string>
required

Module name (must be 'transaction')

Available options:
transaction
action
enum<string>
required
Available options:
getstatus
txhash
string
required

Transaction hash 64-character hexadecimal transaction hash with 0x prefix

Pattern: ^0x[a-fA-F0-9]{64}$
Example:

"0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"

Response

200 - application/json

Transaction status retrieved successfully

status
enum<string>

Status code (1 = OK)

Available options:
1
message
string

Response message

Example:

"OK"

result
object