# GeckoTerminal Trending DEX Pools by Network

> GeckoTerminal Trending DEX Pools by Network is a paid API for AI agents from opportunity-api-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the currently trending decentralized exchange pools on a specified blockchain network, including price change, volume, and transaction counts.

## Facts

- Endpoint: GET https://opportunity-api-production.up.railway.app/api/trending-pools
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/geckoterminal-trending-dex-pools-by-network-5b9f1c2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x1ozZJhM9AnS2jD4l2FyB

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-trending-dex-pools-by-network-5b9f1c2a
```

Example prompt: Show me the trending DEX pools on Solana right now — I want to see which ones have the biggest price moves, volume, and transaction activity this hour.

## When to prefer this

Use this endpoint when you need a quick snapshot of where trading activity is concentrated on a specific blockchain right now — ideal for identifying momentum trades, new token launches gaining traction, or high-volume pools. Prefer this over general token trending endpoints when you specifically care about pool-level DEX data rather than token-level CoinGecko data.

## Known failure modes

- Invalid network parameter returns an error or empty result
- Network may be temporarily unavailable from GeckoTerminal's API
- Rate limiting or upstream API downtime causing 5xx errors
- Stale data if GeckoTerminal feed is delayed

## How this service works

Trending DEX pools right now on a network (GeckoTerminal): price change, volume, txns. Where the money flows this hour. Params: network (base,eth,solana,bsc,arbitrum,polygon,optimism,avalanche).

## Output

A list of currently trending DEX pools on the requested network, with data points including price change percentage, trading volume in USD, buy/sell transaction counts, and pool identifiers — sourced from GeckoTerminal and reflecting live market momentum.

## 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",
     "required": [],
     "properties": {
      "network": {
       "type": "string",
       "description": "base|eth|solana|bsc|arbitrum|polygon|optimism|avalanche. Default: base"
      }
     }
    }
   },
   "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-trending-dex-pools-by-network-5b9f1c2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from opportunity-api-production.up.railway.app](https://www.zero.xyz/host/opportunity-api-production.up.railway.app/llms.txt)
