# GeckoTerminal DEX Trending Pools by Network

> GeckoTerminal DEX Trending Pools by Network is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns the current top trending DEX liquidity pools for a given blockchain network, including token pairs, USD price, 24h volume, reserves, price changes, and transaction counts.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/dex-trending-pools
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/geckoterminal-dex-trending-pools-by-network-22e8d18b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eBC2w5ITsrX_8Wj2sgrEt

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 geckoterminal-dex-trending-pools-by-network-22e8d18b -d '<json body>'
```

Example prompt: Pull the trending DEX pools on Base right now — I want to see the top pairs with their USD prices, 24h volume, reserve liquidity, and price changes.

## When to prefer this

Use this endpoint when you need real-time trending DEX pool data sourced from GeckoTerminal for a specific blockchain network (ETH, Base, Solana, Arbitrum, etc.). Prefer it over general token price APIs when you specifically want pool-level data including liquidity depth, transaction counts, and multi-token pair context rather than a single token price.

## Known failure modes

- Unsupported or misspelled network slug returns an error or empty list
- GeckoTerminal upstream API downtime causes fetch failure
- Rate limiting or payment verification failure returns 402 or 429
- Network with very low activity may return fewer pools than expected

## How this service works

GeckoTerminal trending DEX pools for a network (eth/base/solana/arbitrum...): base & quote token, price USD, 24h volume, reserve liquidity, price change and tx counts. Pass network; bounded top list.

## Output

A bounded ranked list of trending DEX pools for the requested network, each entry containing: base and quote token identifiers, current price in USD, 24-hour trading volume, reserve/liquidity size, price change percentage, and buy/sell transaction counts.

## 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/geckoterminal-dex-trending-pools-by-network-22e8d18b/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)
