# CoinGecko On-Chain Pool Search

> CoinGecko On-Chain Pool Search is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Search on-chain liquidity pools by keyword and optional network filter using CoinGecko's on-chain data

## Facts

- Endpoint: POST https://stablecrypto.dev/api/coingecko/onchain/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coingecko-on-chain-pool-search-485ca8c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VBfi8kBqP7-SUWQl2YvZB

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-on-chain-pool-search-485ca8c9 -d '<json body>'
```

Example prompt: Search CoinGecko on-chain pools for 'USDC-ETH' on the Ethereum network and show me the first page of results.

## When to prefer this

Use this endpoint when you need to search for on-chain liquidity pools by name, token symbol, or pair keyword — especially when you want to filter by blockchain network. Prefer this over trending or price endpoints when the user wants to discover specific pools rather than browse trending assets or look up prices by contract address.

## Known failure modes

- Missing required 'query' field returns a validation error
- Invalid or unsupported network name may return empty results
- No pools found for obscure or misspelled query returns empty data array
- Rate limiting or payment failure returns a 402 or 429 error
- Pagination with out-of-range page number may return empty results

## How this service works

Pay-per-request access to CoinGecko, DefiLlama, Alchemy, and Etherscan APIs. No auth, no subscriptions.

## Output

Returns an array of on-chain pool objects matching the search query, each containing pool metadata such as pool name, network, DEX, token addresses, and pricing/liquidity data as provided by CoinGecko's on-chain index.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number"
  },
  "query": {
   "type": "string",
   "description": "Search query"
  },
  "network": {
   "type": "string",
   "description": "Filter by network"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-on-chain-pool-search-485ca8c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecrypto.dev](https://www.zero.xyz/host/stablecrypto.dev/llms.txt)
