# Get Transaction Status

Retrieve the status of a transaction by chain and transaction hash. Supports EVM, Solana, and Bitcoin.

**Endpoint:** `GET /api/v1/status/transaction/{txHash}`\
**Auth:** Required (`Authorization: Bearer YOUR_API_KEY`)

## Path parameters

| Parameter | Type   | Required | Description      |
| --------- | ------ | -------- | ---------------- |
| `txHash`  | string | Yes      | Transaction hash |

## Query parameters

| Parameter  | Type   | Required | Description                                 | Example       |
| ---------- | ------ | -------- | ------------------------------------------- | ------------- |
| `chainRef` | string | Yes      | Chain identifier. Required query parameter. | `eth-mainnet` |

## Example

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

```bash
curl -X GET 'https://api.gateway.zert.com/api/v1/status/transaction/0x123...?chainRef=eth-mainnet' \
  -H 'Authorization: Bearer YOUR_API_KEY'
```

{% endtab %}

{% tab title="Example Response" %}

```json
{
  "data": {
    "txHash": "0x123...",
    "chain": "eth-mainnet",
    "status": "confirmed",
    "confirmedAtMs": 1745400000000
  },
  "meta": {
    "requestId": "req_xyz",
    "timestamp": "2026-04-23T12:00:00.000Z"
  }
}
```

{% endtab %}
{% endtabs %}

## Transaction status values

| Status      | Description                              |
| ----------- | ---------------------------------------- |
| `pending`   | Transaction submitted, not yet confirmed |
| `confirmed` | Transaction confirmed on chain           |
| `failed`    | Transaction failed                       |

## Responses

| Code | Description                               |
| ---- | ----------------------------------------- |
| 200  | Transaction status found                  |
| 400  | Missing or invalid `chainRef`             |
| 401  | Unauthorized (missing or invalid API key) |
| 404  | Transaction not found                     |
| 502  | Upstream error                            |

{% embed url="<https://api.gateway.zert.com/docs>" %}
Zert API — Transaction Status
{% endembed %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.zert.com/api-reference/status-and-tracking/get-transaction-status.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
