> ## 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

<Danger>
  Deprecation of the REST v1 swap endpoints begins on September 30, 2026. Please migrate to the Partner API v2. Dashboard and authentication endpoints remain on v1 GraphQL and are not affected. [Read the migration guide](https://docs.houdiniswap.com/migration/v1-to-v2)
</Danger>

# Get Status

## Endpoint

```text theme={null}
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

```text theme={null}
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                        |
