# Base DEX Trending Pools

> Base DEX Trending Pools is a paid API for AI agents from webtools402.176-109-107-191.sslip.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns trending Base L2 DEX pools ranked by recent swap volume and net buy/sell flow, computed from Aerodrome/Uniswap-V3 on-chain Swap event logs.

## Facts

- Endpoint: GET https://webtools402.176-109-107-191.sslip.io/dex/trending
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-dex-trending-pools-9e20221b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YT5vQMGj2EIfE4uSWzLt3

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 base-dex-trending-pools-9e20221b
```

Example prompt: Show me the top 5 trending DEX pools on Base right now, looking back over the last 30 minutes — I want to see which ones have the highest swap volume and whether there's more buying or selling pressure.

## When to prefer this

Use this endpoint when you need a real-time, ranked snapshot of which Base L2 DEX pools are most actively traded and whether buy or sell pressure dominates — especially for DeFi trading signals, market monitoring, or identifying hot tokens on Base. Prefer over generic CEX volume APIs when on-chain DEX-specific flow data (Aerodrome, Uniswap V3 on Base) is required.

## Known failure modes

- Invalid window format (e.g. unsupported duration string) returns 400 error
- limit out of range (must be 1-6) returns 400 validation error
- No pools found within the window returns empty result set
- On-chain RPC unavailability causes 503 or timeout
- Stale data if recent blocks have not been indexed yet

## How this service works

Trending Base DEX pools ranked by recent swap volume and net buy/sell flow over a short window, computed by us from public Aerodrome/Uniswap-V3 Swap event logs.

## Output

A ranked list of Base DEX pools (up to the requested limit) sorted by recent swap volume, each including pool identifiers, trading pair, swap volume over the lookback window, and net buy/sell flow computed from Aerodrome and Uniswap-V3 Swap event logs on Base L2.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 6,
       "minimum": 1,
       "description": "Max pools to return, ranked by volume (default all tracked)"
      },
      "window": {
       "type": "string",
       "description": "Look-back window, e.g. 15m / 30m / 1h (default 30m, max ~1h)"
      }
     }
    }
   },
   "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/base-dex-trending-pools-9e20221b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from webtools402.176-109-107-191.sslip.io](https://www.zero.xyz/host/webtools402.176-109-107-191.sslip.io/llms.txt)
