coingecko
Complete CoinGecko Solana API integration for token prices, DEX pool data, OHLCV charts, trades, and market analytics. Use for building trading bots, portfolio trackers, price feeds, and on-chain data applications.
npx skills add majiayu000/claude-skill-registry --skill coingecko --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
What it does
Implements CoinGecko's on-chain Solana API integration, offering real-time token prices, DEX pool data, OHLCV charts, trade history, DEX discovery, search, megafilter, and top pool/pool-related data across Solana networks.
How it works
The guide describes TypeScript/JavaScript functions and HTTP request patterns that call endpoints under BASE_URL (https://api.coingecko.com/api/v3/onchain for demo, or pro equivalents) with NETWORK set to 'solana'. It uses headers keyed by a per-type API_KEY (HEADER_KEY) and constructs requests like:
- GET /simple/networks/{network}/token_price/{token_address}
- GET /networks/{network}/tokens/{address}
- GET /networks/{network}/tokens/multi/{addresses}
- GET /networks/{network}/pools/{pool_address}
- GET /networks/{network}/pools
- GET /networks/trending_pools
- GET /search/pools
- GET /networks/{network}/pools/{pool_address}/ohlcv/{timeframe}
- GET /networks/{network}/pools/{pool_address}/trades
- GET /networks/{network}/dexes
- GET /pools/megafilter
Examples show how to construct URLs, add query parameters (include, interval, limit, currency), and parse data into TypeScript interfaces.
When to use it
Use when you need real-time token prices, pool details, chart data, or historical trades for Solana DeFi assets, or when building trading bots, portfolio trackers, price feeds, or on-chain data apps that require on-chain data analytics across 1,700+ DEXes and 15M+ tokens.
What it can touch
- API endpoints as described above via fetch calls
- Environment/config values: COINGECKO_API_KEY, COINGECKO_API_TYPE, BASE_URL, HEADER_KEY, NETWORK set to 'solana'
Caveats
- Rate limits are listed per plan (Demo 30 calls/min, Pro 1000 calls/min, etc.).
- Data fields and response shapes are defined in the code examples (TokenData, PoolData, OHLCVData, TradeData, DexData), and may vary by endpoint or plan.
- No guarantees of uptime or data completeness beyond stated endpoints and parameters.
# CoinGecko Solana API Development Guide A comprehensive guide for integrating CoinGecko's on-chain API for Solana. Access real-time token prices, DEX pool data, OHLCV charts, trade history, and market analytics across 1,700+ decentralized exchanges. ## Overview CoinGecko's Solana API provides: - **Token Prices**: Real-time prices by contract address (single or batch) - **Pool Data**: Liquidity pool information, trending pools, top pools - **OHLCV Charts**: Candlestick data for technical analysis - **Trade History**: Recent trades for any pool - **DEX Discovery**: List all DEXes operating on Solana - **Search**: Find pools by token name, symbol, or address - **Megafilter**: Advanced filtering across pools, tokens, and DEXes ### Key Features | Feature | Description | |---------|-------------| | **250+ Networks** | Multi-chain support including Solana | | **1,700+ DEXes** | Raydium, Orca, Jupiter, Meteora, Pump.fun, etc. | | **15M+ Tokens** | Comprehensive token coverage | | **Real-time Data** | Updates every 10-30 seconds | | **Historical Data** | OHLCV charts and trade history | --- ## Quick Start ### Get Your API Key 1. **Demo API (Free)**: Visit [coingecko.com/en/api](https://www
- Overview
- Key Features
- Quick Start
- Get Your API Key
- Environment Setup
- API Configuration
- Basic Token Price Fetch
- API Endpoints Reference
- Simple Token Price
- Token Data by Address
- Multi-Token Data
- Pool Data by Address
- Trending Pools
- Top Pools on Network
What does the coingecko skill do?
Complete CoinGecko Solana API integration for token prices, DEX pool data, OHLCV charts, trades, and market analytics. Use for building trading bots, portfolio trackers, price feeds, and on-chain data applications.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill coingecko --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
