> ## Documentation Index
> Fetch the complete documentation index at: https://docs.houdiniswap.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Status

> Check the status of a swap transaction

# Get Status

## Endpoint

```
GET /status/
```

Returns the current status of a swap transaction.

## Path Parameters

| Field | Type   | Description                                                                            |
| ----- | ------ | -------------------------------------------------------------------------------------- |
| `id`  | string | Unique ID of the transaction (from exchange response, example: h9NpKm75gRnX7GWaFATwYn) |

## Example Request

```
GET /status?id=fgCqqMztaiV8dyo6mLqYgx
```

## Status Codes

| Code | Status      | Description                                    |
| ---- | ----------- | ---------------------------------------------- |
| `-1` | NEW         | Transaction has been created                   |
| `0`  | WAITING     | Waiting for funds to be received               |
| `1`  | CONFIRMING  | Funds received, confirming                     |
| `2`  | EXCHANGING  | Exchange in progress                           |
| `3`  | ANONYMIZING | Privacy routing in progress                    |
| `4`  | FINISHED    | Transaction completed successfully             |
| `5`  | EXPIRED     | Transaction expired before funds were received |
| `6`  | FAILED      | Transaction failed                             |
| `7`  | REFUNDED    | Funds were refunded                            |
| `8`  | DELETED     | Transaction was deleted                        |
