Skip to main content

Retrieve the status of a transaction by its hash.

POST 

https://minatokens.com/api/v1//transaction/status

The tx-status endpoint allows you to check the current status of a transaction on the Mina blockchain by providing the transaction hash. It returns whether the transaction has been applied, failed, or is still pending.

Request

Bodyrequired

    hashstringrequired

    The transaction hash to check the status of.

Responses

Successfully retrieved transaction status.

Schema
    hashstring

    The transaction hash.

    statusstring

    The status of the transaction.

    Possible values: [pending, applied, failed, unknown]

    errorstring

    The transaction hash.

    details object

    The details of the transaction.

    blockHeightint64

    The height of the block containing the transaction.

    stateHashstring

    The state hash of the block.

    blockStatusstring

    The status of the block.

    timestampint64

    The timestamp of the block.

    txHashstring

    The transaction hash.

    txStatusstring

    The status of the transaction in the block.

Authorization: x-api-key

name: x-api-keytype: apiKeyin: headerdescription: API key for authorization. Get your API key at https://minatokens.com/api
curl -L 'https://minatokens.com/api/v1/transaction/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'x-api-key: <x-api-key>' \
-d '{
"hash": "string"
}'
Request Collapse all
Base URL
https://minatokens.com/api/v1
Auth
Body required
{
  "hash": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!