Skip to main content
GET
Check Transaction Status
Retrieves the status of a transaction submitted through /send-transactions.

Query Parameters

  • hash (optional): On-chain transaction hash returned after the transaction is sent. Use the exact hash value starting with 0x.
  • txId (optional): Internal transaction ID returned by /prepare-transactions. Use this when the on-chain transaction hash is not available yet.
At least one of hash or txId is required. Do not include --data in the request, because this endpoint only accepts GET.

Example

Response

If the transaction failed, the response includes the stored error:

Authorizations

x-api-key
string
header
required

Query Parameters

hash
string

On-chain transaction hash returned after the transaction is sent. Use the exact value starting with 0x.

txId
string

Internal transaction ID returned by /prepare-transactions. Use this when the on-chain transaction hash is not available yet.

Response

200 - application/json

Successful response

status
enum<string>

Transaction status.

Available options:
pending,
success,
rejected
error
string

Stored error message when the transaction failed.