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

# POST DEX Confirm Transaction

> Confirm a DEX transaction after on-chain submission

# POST DEX Confirm Transaction

## Endpoint

```
POST /dexConfirmTx
```

Confirms a DEX transaction after the approval transaction has been submitted on-chain. Returns a boolean indicating success.

## Request Body

```json theme={null}
{
  "id": "6689b73ec90e45f3b3e51553",
  "txHash": "0x123456789abcdef..."
}
```

## Request Fields

| Field    | Type   | Description                                              |
| -------- | ------ | -------------------------------------------------------- |
| `id`     | string | Internal ID of the transaction                           |
| `txHash` | string | Blockchain transaction hash from the on-chain submission |

## Example Response

```json theme={null}
true
```

## Response Fields

| Field      | Type    | Description                                          |
| ---------- | ------- | ---------------------------------------------------- |
| `response` | boolean | `true` if the transaction was successfully confirmed |
