# GeckoTerminal New DEX Pools Feed

> GeckoTerminal New DEX Pools Feed 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).

Fetches the newest decentralized exchange (DEX) liquidity pools for a given blockchain network, including token pairs, pool address, USD price, reserve liquidity, and creation time.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/dex-new-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-new-dex-pools-feed-edf3304b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PbmJxqWx-z37vP-TmKq3C

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-edf3304b -d '<json body>'
```

Example prompt: Show me the newest DEX liquidity pools on Base network — I want to see the token pairs, pool addresses, USD prices, and reserve liquidity for the freshest listings.

## When to prefer this

Use this endpoint when you need a real-time feed of the freshest DEX pool listings across major EVM and non-EVM networks (Ethereum, Base, Solana, etc.), especially for token sniping, new listing discovery, or DeFi monitoring workflows. Prefer this over general token price APIs when the recency of pool creation is the primary signal you need.

## Known failure modes

- Invalid or unsupported network identifier returns an error or empty result
- Payment not completed results in HTTP 402 rejection
- Network congestion or GeckoTerminal API downtime causes timeout or 503
- Malformed POST body returns validation error
- Very new networks may have no pools yet, returning empty list

## How this service works

GeckoTerminal newest DEX pools for a network (eth/base/solana...): base & quote token, pool address, price USD, reserve liquidity and creation time. Pass network; bounded feed of fresh listings.

## Output

A bounded list of the newest DEX pools on the specified network, each containing: base token symbol/address, quote token symbol/address, pool contract address, current price in USD, reserve liquidity amount, and pool creation timestamp.

## 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-new-dex-pools-feed-edf3304b/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)
