get_coin_tickers
Find where to buy or sell a specific cryptocurrency by listing its exchange tickers across multiple venues, including price, volume, bid-ask spread, and trust scores.
Instructions
List exchange tickers (trading pairs) for a single coin across many venues.
Use to answer "where can I buy/sell X?" or "which exchanges have the best liquidity for X?" Each ticker includes price, volume, bid-ask spread, converted last/volume in BTC/ETH/USD, and CoinGecko's trust score.
Args:
coin_id: CoinGecko coin ID.
exchange_ids: Optional comma-separated exchange IDs to filter by
(CoinGecko exchange IDs, see list_exchanges_directory).
page: Pagination page (each page is up to 100 tickers).
order: Sort order. Default ranks by liquidity trust score.
Returns:
Object with name (coin name) and tickers (array of ticker objects).
Note: coin_id is validated against ^[a-z0-9][a-z0-9._-]{0,127}$.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| coin_id | Yes | ||
| exchange_ids | No | ||
| page | No | ||
| order | No | trust_score_desc |