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.
Unique identifier for a given organization.
The unique identifier of a send transaction request.
A successful response returns the following fields:
The current status of the send transaction.
The error encountered when broadcasting or confirming the transaction, if any.
curl --request POST \
--url https://api.0xkey.io/public/v1/query/get_send_transaction_status \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--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>"
}
}
]
}
}