# CoinGecko DEX Pool & Token Search via AiDress

> CoinGecko DEX Pool & Token Search via AiDress is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Search onchain DEX liquidity pools and tokens by contract address, name, or symbol using CoinGecko data.

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_pro_api_coingecko_com
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-dex-pool-token-search-via-aidress-4f8f31e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aeSKLiEkuIv8GePhmK-_V

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 coingecko-dex-pool-token-search-via-aidress-4f8f31e0
```

Example prompt: Search for all onchain DEX pools for the token PEPE on Ethereum — I want to see pool names, contract addresses, and which DEXes list it.

## When to prefer this

Use this endpoint when you need to search CoinGecko's onchain DEX pool and token data by name, symbol, or contract address — especially when you need to identify which DEXes list a specific token or find pool-level details. Prefer this over general token price APIs when the goal is DEX pool discovery or contract address resolution across networks.

## Known failure modes

- No results found for an obscure or misspelled token symbol
- Contract address not found on the specified network
- Rate limiting or payment failure if USDC payment not processed
- Invalid network parameter returns empty or error response
- Pagination page number out of range returns empty results

## How this service works

Search onchain DEX pools and token, by contract address, name, or token symbol.

## Output

Returns a list of matching DEX pools and/or tokens from CoinGecko's onchain data, including token names, symbols, contract addresses, associated DEXes, and network information. Results are paginated and can be filtered by network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "page": {
       "type": "integer"
      },
      "query": {
       "type": "string"
      },
      "include": {
       "type": "string"
      },
      "network": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-dex-pool-token-search-via-aidress-4f8f31e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
