> For the complete documentation index, see [llms.txt](https://docs.vechainstats.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vechainstats.com/api-endpoints/transaction/transaction-status.md).

# Transaction Status

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

{% hint style="info" %}
**Note :** This endpoint is throttled to **30 calls/minute** regardless of API Pro tier.
{% endhint %}

{% tabs %}
{% tab title="Request" %}

| Parameter    | Description                                                   |
| ------------ | ------------------------------------------------------------- |
| txid         | The transaction hash for which you want to request the status |
| {% endtab %} |                                                               |

{% tab title="Response" %}

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

{% endtab %}
{% endtabs %}
