For the complete documentation index, see llms.txt. This page is also available as Markdown.

Transaction Status

Returns the status and possible EVM error of a given transaction hash

https://api.vechainstats.com/v2/transaction/status
    ?txid=0x7ea45490b25257769d656343cf240d63b6813d553a7d82d459c046bc3046ed77
    &VCS_API_KEY=your_api_key

Note : This endpoint is throttled to 30 calls/minute regardless of API Pro tier.

Parameter
Description

txid

The transaction hash for which you want to request the status

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "status": "reverted",
        "block_height": 16572263,
        "vcs_evm_error": "UniswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT"
    },
    "meta": {
        "txid": "0x7ea45490b25257769d656343cf240d63b6813d553a7d82d459c046bc3046ed77",
        "timestamp": 1696252801
    }
}

Last updated