Skip to main content
POST
https://api.0xkey.io
/
public
/
v1
/
query
/
get_send_transaction_status
Get send transaction status
curl --request POST \
  --url https://api.0xkey.io/public/v1/query/get_send_transaction_status \
  --header 'Content-Type: application/json' \
  --header 'X-Stamp: <api-key>' \
  --data '
{
  "organizationId": "<string>",
  "sendTransactionStatusId": "<string>"
}
'
{
  "txStatus": "<string>",
  "eth": {
    "txHash": "<string>"
  },
  "txError": "<string>",
  "error": {
    "message": "<string>",
    "revertChain": [
      {
        "address": "<string>",
        "errorType": "<string>",
        "displayMessage": "<string>",
        "unknown": {
          "selector": "<string>",
          "data": "<string>"
        },
        "native": {
          "nativeType": "<string>",
          "message": "<string>",
          "panicCode": "<string>"
        },
        "custom": {
          "errorName": "<string>",
          "paramsJson": "<string>"
        }
      }
    ]
  }
}

Documentation Index

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

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

Authorizations

X-Stamp
string
header
required

Body

application/json
organizationId
string
required

Unique identifier for a given organization.

sendTransactionStatusId
string
required

The unique identifier of a send transaction request.

Response

A successful response.

txStatus
string
required

The current status of the send transaction.

eth
object
txError
string

The error encountered when broadcasting or confirming the transaction, if any.

error
object