# SuVerse Base DEX Liquidity Pools

> SuVerse Base DEX Liquidity Pools is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns top liquidity pools on Base across Uniswap V3, Aerodrome, BaseSwap and other DEXes with TVL, 24h volume, fee tier, and APR per pool.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-base-dex-pools
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-efe8835a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sArMNwwYADbXifN-tgABF

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability proxy-suverse-io-efe8835a -d '<json body>'
```

Example prompt: What are the top liquidity pools on Base right now? I need to see TVL, 24h volume, fee tier, and APR across Uniswap V3, Aerodrome, and BaseSwap so I can figure out where to route my swap for the deepest liquidity.

## When to prefer this

Choose this endpoint when you need real-time, multi-DEX liquidity pool data specifically on Base L2, covering Uniswap V3, Aerodrome, and BaseSwap in a single call. Prefer this over generic DeFi APIs when routing swaps on Base, identifying deep liquidity, tracking new pool launches, or building Base-specific DeFi strategies. Use the sibling Ethereum DEX pools endpoint instead if you need Ethereum mainnet data.

## Known failure modes

- GeckoTerminal upstream outage returns error or empty pool list
- Payment not processed correctly results in 402 or authorization error
- Malformed POST body returns 400 bad request
- Rate limiting if called too frequently returns 429
- Base chain data lag during high congestion may return slightly stale TVL figures

## How this service works

Top liquidity pools on Base mainnet across Uniswap V3, Aerodrome, BaseSwap. Each pool token pair, TVL USD, 24h volume, fee tier, APR. AI agent Base liquidity finder, L2 DEX pool API, new-pool tracker, routing source. Real-time from GeckoTerminal.

## Output

A list of top liquidity pools on Base chain, each containing the token pair (e.g. WETH/USDC), total value locked in USD, 24-hour trading volume, fee tier percentage, APR, pool contract address, and the DEX protocol name (Uniswap V3, Aerodrome, BaseSwap, etc.).

## Example request

```json
{
 "input": {
  "body": {
   "chain": "base",
   "dexes": [
    "uniswap_v3",
    "aerodrome",
    "baseswap"
   ],
   "limit": 10,
   "sortBy": "tvl"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-efe8835a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
