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

# DexUtils Pro API: Real-Time DEX Analytics Overview

> Explore the DexUtils Pro API — real-time token prices, liquidity pool stats, swap transactions, batch token lookups, and full-text DEX search.

The DexUtils Pro API gives you programmatic access to the full DexUtils data platform over REST. Whether you're building a trading bot, a portfolio tracker, or an analytics dashboard, every endpoint returns structured JSON you can query directly — no scraping, no polling workarounds, no rate-limit headaches.

## Base URL

All API requests target the following base URL:

```
https://api.dexutils.io/v1
```

Every response is JSON. Successful responses use standard HTTP `2xx` status codes; errors use `4xx` or `5xx` codes with a machine-readable body. See the [Error Codes](/api/errors) reference for details.

## What You Can Do

The Pro API covers the full surface of DexUtils data across every supported chain and DEX:

* **Token prices and metadata** — Fetch real-time USD prices, fully diluted valuations, market caps, and contract metadata for any token across all supported networks using `GET /networks/{network}/tokens/{address}`.
* **Batch token lookups** — Resolve prices and metadata for multiple tokens in a single call via `POST /tokens/batch`, ideal for portfolio dashboards and watchlists.
* **Liquidity pool listing** — Query and filter pools by token, DEX, volume, or liquidity on any chain using `GET /networks/{network}/pools`.
* **Pool details and stats** — Fetch reserves, fee tiers, 24-hour volume, and liquidity depth for a specific pool with `GET /networks/{network}/pools/{address}`.
* **Swap transaction history** — Paginate swap events from any pool, including amounts, prices, and wallet addresses, via `GET /networks/{network}/pools/{address}/transactions`.
* **Network and DEX discovery** — List all supported chains with `GET /networks` and all DEX protocols on a given chain with `GET /networks/{network}/dexes`.
* **Full-text search** — Search across tokens, pools, and DEXes by name, symbol, or contract address in one unified `GET /search` endpoint.

## Endpoints at a Glance

| Method | Path                                               | Description                                  |
| ------ | -------------------------------------------------- | -------------------------------------------- |
| `GET`  | `/networks`                                        | List all supported blockchain networks       |
| `GET`  | `/networks/{network}/tokens/{address}`             | Get token details and real-time price        |
| `GET`  | `/networks/{network}/pools`                        | List and filter liquidity pools on a network |
| `GET`  | `/networks/{network}/pools/{address}`              | Get pool details and statistics              |
| `GET`  | `/networks/{network}/pools/{address}/transactions` | Get swap transactions for a pool             |
| `POST` | `/tokens/batch`                                    | Batch token price and metadata lookup        |
| `GET`  | `/search`                                          | Search tokens, pools, and DEXes              |
| `GET`  | `/networks/{network}/dexes`                        | List DEX protocols on a network              |

## Pro API vs. Free Tier

The Pro API is a paid upgrade that removes the constraints of the free public tier and adds dedicated infrastructure for production workloads.

| Feature                   | Free Tier    | Pro API           |
| ------------------------- | ------------ | ----------------- |
| Rate limit                | 60 req / min | **None**          |
| Infrastructure            | Shared       | **Dedicated**     |
| Data freshness            | \~30 seconds | **Sub-2 seconds** |
| Support                   | Community    | **Priority**      |
| Transaction history depth | 7 days       | **Unlimited**     |
| SLA uptime guarantee      | ✗            | **✓**             |

## Quick Navigation

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/api/authentication">
    Learn how to pass your API key and keep it secure.
  </Card>

  <Card title="Quickstart" icon="bolt" href="/api/quickstart">
    Make your first API call and fetch a live token price in minutes.
  </Card>

  <Card title="Endpoints Reference" icon="code" href="/api/networks">
    Browse every available endpoint with full request and response schemas.
  </Card>

  <Card title="Error Codes" icon="triangle-exclamation" href="/api/errors">
    Understand every error response and how to handle it gracefully.
  </Card>
</CardGroup>

## Getting a Pro API Key

<Note>
  Pro API access requires a **Premium plan** or a standalone **Pro API subscription**. To upgrade, visit your [DexUtils dashboard](https://dexutils.io) and navigate to **Settings → Plans**, or contact the sales team at **[sales@dexutils.io](mailto:sales@dexutils.io)** for enterprise pricing and volume agreements.
</Note>
