# agenttoll.app Trending DEX Pools on Base

> agenttoll.app Trending DEX Pools on Base is a paid API for AI agents from agenttoll.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the top trending decentralized exchange pools on the Base network, including price, volume, and liquidity data

## Facts

- Endpoint: GET https://agenttoll.app/api/base/trending
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-app-trending-dex-pools-on-base-712f257b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_geCkZXIyI3D6VXGyUOpMS

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 agenttoll-app-trending-dex-pools-on-base-712f257b
```

Example prompt: Show me the top 10 trending DEX pools on Base right now — I want to see price, volume, and liquidity for each.

## When to prefer this

Use this endpoint when you need a real-time ranked snapshot of the most active or trending DEX pools specifically on the Base network, including price, volume, and liquidity. Prefer this over generic crypto price APIs when you need pool-level DeFi data on Base rather than just token prices, and over the 'new token radar' sibling endpoint when you want established trending pools rather than newly launched ones.

## Known failure modes

- limit parameter out of range (must be 1–20) returns validation error
- network or API downtime returns 5xx error
- no trending pools available returns empty list
- payment failure (insufficient USDC balance) returns 402 error

## How this service works

Trending Base pool scan: the DEX pools moving on Base right now, with price, 24h volume and liquidity; ?limit=N sets how many

## Output

A ranked list of up to 20 (default 10) trending DEX pools on Base, each with price data, trading volume, and liquidity metrics, allowing agents to identify the most active and liquid trading pairs on the network.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 20,
       "minimum": 1,
       "description": "Optional. How many pools, default 10"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "at": "2026-08-05T13:31:58.678Z",
  "chain": "base",
  "pools": [
   {
    "name": "AERO / USDC",
    "pool": "0x6cdc...971d",
    "priceUsd": 0.4206,
    "change24hPct": 2.711,
    "liquidityUsd": 25358508.8,
    "volume24hUsd": 1118348.8
   }
  ],
  "source": "geckoterminal-trending"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-app-trending-dex-pools-on-base-712f257b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.app](https://www.zero.xyz/host/agenttoll.app/llms.txt)
