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

# Get DEX Tokens

## Endpoint

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

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