# CoinGecko Exchange Tickers

> CoinGecko Exchange Tickers 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 trading pair tickers from a specific cryptocurrency exchange via CoinGecko data, including price, volume, and market depth information.

## Facts

- Endpoint: POST https://stablecrypto.dev/api/coingecko/exchange/tickers
- 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-exchange-tickers-e2c1afb2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QAaa69tANeZ-p3lBbznHu

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-exchange-tickers-e2c1afb2 -d '<json body>'
```

Example prompt: Show me all the trading tickers for Binance — exchange ID is 'binance' — and filter for Bitcoin and Ethereum only using coin IDs 'bitcoin,ethereum', and include market depth data.

## When to prefer this

Use this endpoint when you need live trading pair data (tickers) from a specific exchange identified by its CoinGecko exchange ID, especially when you want to filter by specific coins or retrieve market depth. Prefer this over generic price endpoints when exchange-specific tick data, volume, and trading pair metadata are needed.

## Known failure modes

- Invalid or unknown exchange ID returns empty or null tickers
- Invalid coin_ids format causes filtering to fail or return no results
- Pagination beyond available pages returns empty ticker arrays
- Network timeout if exchange has a very large number of tickers
- Missing required 'id' field returns a 400-level validation error

## How this service works

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

## Output

Returns the exchange name and an array of ticker objects, each containing trading pair details such as base and target currencies, price, volume, and optionally market depth data for the specified exchange.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Exchange ID"
  },
  "page": {
   "type": "number"
  },
  "depth": {
   "type": "boolean"
  },
  "order": {
   "type": "string"
  },
  "coin_ids": {
   "type": "string",
   "description": "Filter by coin IDs (comma-separated)"
  },
  "include_exchange_logo": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coingecko-exchange-tickers-e2c1afb2/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)
