# CoinGecko Onchain Pool Info

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

Retrieves metadata for a specific onchain liquidity pool by network and contract address via CoinGecko's onchain data

## Facts

- Endpoint: POST https://stablecrypto.dev/api/coingecko/onchain/pool/info
- 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-onchain-pool-info-3fc1139f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VCtjlCxZqUlDJQ2lgM0Th

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-onchain-pool-info-3fc1139f -d '<json body>'
```

Example prompt: Can you pull up the CoinGecko onchain pool info for the contract address 0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640 on Ethereum mainnet?

## When to prefer this

Use this endpoint when you need structured metadata about a specific onchain liquidity pool and already know its contract address and network. It is ideal for enriching DeFi analytics, identifying token pairs and DEX associations, or resolving pool details before executing trades or analysis. Prefer this over symbol-based or trending endpoints when you have a precise contract address.

## Known failure modes

- Invalid or unsupported network ID returns an error or empty data
- Unrecognized contract address returns no data or a not-found response
- Pool not indexed by CoinGecko returns empty or null data object
- Malformed address string causes a validation error
- Payment failure (insufficient USDC balance) prevents the call from being made

## How this service works

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

## Output

Returns a data object containing pool metadata from CoinGecko's onchain index, including pool name, paired tokens, associated DEX/protocol, liquidity, trading volume, price, and other pool-level attributes for the given contract address on the specified network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "Pool contract address"
  },
  "network": {
   "type": "string",
   "description": "Network ID"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-onchain-pool-info-3fc1139f/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)
