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

> Retrieve supported DEX token list

<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 DEX Tokens

## Endpoint

```text theme={null}
GET /dexTokens
```

Returns a paginated list of tokens supported for decentralized exchange (DEX) swaps.

## Query Parameters

| Field      | Type   | Default | Description                              |
| ---------- | ------ | ------- | ---------------------------------------- |
| `page`     | number | `1`     | Page number to retrieve                  |
| `pageSize` | number | `100`   | Number of tokens per page                |
| `chain`    | string | —       | Blockchain network filter (e.g., `base`) |

## Example Request

```text theme={null}
GET /dexTokens?page=1&pageSize=100&chain=base
```

## Example Response

```json theme={null}
{
  "count": 1,
  "tokens": [
    {
      "id": "66cf5512ba629b6c861a7f45",
      "address": "0xE3086852A4B125803C815a158249ae468A3254Ca",
      "chain": "base",
      "decimals": 18,
      "symbol": "mfer",
      "name": "mfer",
      "created": "2024-08-28T10:00:00.000Z",
      "modified": "2024-08-28T10:00:00.000Z",
      "enabled": true,
      "hasDex": true
    }
  ]
}
```

## Response Fields

| Field    | Type   | Description                     |
| -------- | ------ | ------------------------------- |
| `count`  | number | Total number of matching tokens |
| `tokens` | array  | Array of token objects          |

### Token Object

| Field      | Type    | Description                          |
| ---------- | ------- | ------------------------------------ |
| `id`       | string  | Unique token identifier              |
| `address`  | string  | Token contract address               |
| `chain`    | string  | Network designation (e.g., `base`)   |
| `decimals` | number  | Token decimal precision              |
| `symbol`   | string  | Token symbol (e.g., `mfer`)          |
| `name`     | string  | Full token name                      |
| `created`  | string  | ISO 8601 timestamp of addition       |
| `modified` | string  | ISO 8601 timestamp of last update    |
| `enabled`  | boolean | Whether the token is active          |
| `hasDex`   | boolean | Whether the token supports DEX swaps |
