# GeckoTerminal New DEX Pools Feed

> GeckoTerminal New DEX Pools Feed 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 newest DEX liquidity pools on a specified blockchain network, filtered by minimum liquidity reserve, with price, volume, transaction counts, and creation time.

## Facts

- Endpoint: GET https://opportunity-api-production.up.railway.app/api/new-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-new-dex-pools-feed-02fb16dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ist3LrCB9dVNN4q1SHH6V

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-new-dex-pools-feed-02fb16dd
```

Example prompt: Show me the newest DEX pools on Solana right now that have at least $25,000 in liquidity — I'm looking for fresh pairs to snipe.

## When to prefer this

Use this endpoint when you need to discover newly created DEX trading pairs across major EVM-compatible chains or Solana, especially for new-pair sniping agents, token launch monitoring, or DeFi opportunity discovery. Prefer this over general trending token endpoints when recency and liquidity filtering are the primary signals needed.

## Known failure modes

- Invalid network name returns an error or empty result
- min_reserve set too high returns an empty pool list
- GeckoTerminal API upstream outage causes failure
- Network congestion or latency may delay freshness of pool data
- Missing or malformed query parameters may default silently or return errors

## How this service works

Newest DEX pools on a network (GeckoTerminal) filtered by min liquidity: price, reserve, 24h volume, txns, created time. For sniping/newpair agents. Params: network (base,eth,solana,bsc,arbitrum,polygon,optimism,avalanche), min_reserve (USD, default 10000).

## Output

A list of newly created DEX liquidity pools on the requested network, each with token price, liquidity reserve in USD, 24-hour trading volume, buy/sell transaction counts, and the timestamp of pool creation, filtered to only include pools above the specified minimum reserve threshold.

## 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"
      },
      "min_reserve": {
       "type": "string",
       "description": "min liquidity USD, default 10000"
      }
     }
    }
   },
   "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-new-dex-pools-feed-02fb16dd/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)
