Crypto Market Data 🪙
Query cryptocurrency market data from CoinGecko through AIsa.
Use this skill when you need current prices, historical charts, OHLC candles, token lookup by contract address, market-cap rankings, exchange data, categories, trending searches, or crypto news from a single CLI.
Compatibility
Works with any agentskills.io-compatible harness, including:
- Claude Code and Claude
- OpenAI Codex
- Cursor
- Gemini CLI
- OpenCode, Goose, OpenClaw, Hermes
- and other tools that implement the Agent Skills specification
Requires Python 3, a POSIX shell, and AISA_API_KEY (get one at aisa.one).
What you can do
Price tracking
"What is the current price of bitcoin and ethereum in USD and EUR?"
Historical charts
"Get the last 30 days of BTC price data in USD"
OHLC candles
"Pull 7-day OHLC candles for solana"
Token lookup by contract address
"Find the CoinGecko price for USDC at 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum"
Market-cap screening
"List the top 25 coins by market cap with 24h change"
Exchange research
"What are Binance's top trading pairs by trust score?"
Trend discovery
"What are the top trending coin searches on CoinGecko right now?"
Category breakdown
"Rank DeFi coin categories by market cap"
Quick start
export AISA_API_KEY="your-key"
Simple prices
# Current price of bitcoin and ethereum in USD + EUR with 24h change
python3 scripts/coingecko_client.py simple price \
--ids bitcoin,ethereum --vs usd,eur --include-24hr-change
# All supported fiat/crypto currencies usable as vs_currency
python3 scripts/coingecko_client.py simple supported-currencies
# Price by on-chain contract address (USDC on Ethereum)
python3 scripts/coingecko_client.py simple token-price \
--platform ethereum \
--addresses 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 \
--vs usd --include-24hr-vol
Coin data, markets, and history
# Full coin data for bitcoin
python3 scripts/coingecko_client.py coins data --id bitcoin
# Top 25 coins by market cap (USD)
python3 scripts/coingecko_client.py coins markets \
--vs usd --order market_cap_desc --per-page 25
# Directory of all coins with ids/symbols/names
python3 scripts/coingecko_client.py coins list
# Historical snapshot for a specific date (dd-mm-yyyy)
python3 scripts/coingecko_client.py coins history \
--id bitcoin --date 01-01-2024
# 30-day daily market chart for BTC in USD
python3 scripts/coingecko_client.py coins chart \
--id bitcoin --vs usd --days 30
# Explicit UNIX timestamp range
python3 scripts/coingecko_client.py coins chart-range \
--id bitcoin --vs usd --from 1704067200 --to 1706745600
# 7-day OHLC candles
python3 scripts/coingecko_client.py coins ohlc \
--id bitcoin --vs usd --days 7
# Exchange-listed trading pairs for a coin
python3 scripts/coingecko_client.py coins tickers \
--id bitcoin --order trust_score_desc
# Full data / chart by contract address
python3 scripts/coingecko_client.py coins contract \
--platform ethereum \
--address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
python3 scripts/coingecko_client.py coins contract-chart \
--platform ethereum \
--address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 \
--vs usd --days 14
Categories
# All category IDs and names
python3 scripts/coingecko_client.py categories list
# Category leaderboard (market cap, volume, top-3 coins)
python3 scripts/coingecko_client.py categories markets \
--order market_cap_desc
Exchanges
# Exchanges with current trading volume and metadata
python3 scripts/coingecko_client.py exchanges list --per-page 50
# Just the ID -> name map (useful for resolving user input)
python3 scripts/coingecko_client.py exchanges id-map
# Detailed data for a specific exchange
python3 scripts/coingecko_client.py exchanges data --id binance
# Trading pairs on a specific exchange
python3 scripts/coingecko_client.py exchanges tickers \
--id binance --order trust_score_desc
News and trending
python3 scripts/coingecko_client.py news
python3 scripts/coingecko_client.py trending
Inputs and outputs
- Input: coin IDs (for example
bitcoin, ethereum, solana), fiat/crypto vs_currency codes (usd, eur, btc), category IDs, exchange IDs, or supported platform + contract address pairs. Use coins list and exchanges id-map to resolve user-friendly names to CoinGecko IDs.
- Output: JSON printed to stdout, matching the CoinGecko schema for each endpoint: price dictionaries, coin and exchange objects, arrays of timestamped
[ts, value] pairs for charts, [ts, o, h, l, c] tuples for OHLC, ticker arrays, and related market-data payloads.
When to use / When not to use
Use when:
- You need current or historical crypto prices, market caps, volumes, or charts.
- You need to look up a token by its on-chain contract address (
ethereum, binance-smart-chain, polygon-pos, and similar supported platforms).
- You need exchange-level data such as trust scores, volumes, or per-pair tickers.
- You want to screen categories such as DeFi, AI, or L1s, or surface trending coins.
Do not use when:
- You need equities or traditional finance data — use the
marketpulse skill.
- You need prediction-market order-book depth for platforms such as Polymarket or Kalshi — use
prediction-market-data.
- You need on-chain wallet balances, transfers, or gas traces — CoinGecko is a pricing and market-data source, not a node RPC.
Requirements
- Python 3,
curl, POSIX shell
AISA_API_KEY — required, get one at aisa.one
API reference
This skill calls the following AIsa CoinGecko endpoints directly:
- Simple Price — current price for one or more coins in any supported currencies
- Supported Currencies — list of all supported fiat and crypto
vs_currency codes
- Coin Price by Token Address — current price of tokens by contract address on a supported platform
- Coins List (ID Map) — directory of all coins with id, symbol, and name
- Coins Markets — all coins with full market data (price, market cap, volume, etc.)
- Coin Data by ID — current coin info including price, markets, links, community and developer data
- Coin Tickers — exchange-listed trading pairs for a coin
- Coin Historical Data — historical snapshot (price, market cap, volume) for a given date
- Coin Historical Chart — historical market data over the last N days
- Coin Market Chart Range — historical market data within an explicit UNIX timestamp range
- Coin OHLC — OHLC candles for a coin
- Coin Data by Token Address — full coin data by contract address on a supported platform
- Coin Historical Chart by Contract — historical market data for a token by contract address
- Categories List — all coin categories used by CoinGecko
- Categories with Market Data — categories with market cap, volume, and top-3 coins
- Exchanges List — all exchanges with current trading volume and metadata
- Exchanges List (ID Map) — exchange identifiers and names for mapping
- Exchange Data by ID — detailed data for a single exchange (volume, tickers, trust score)
- Exchange Tickers — trading pairs listed on a given exchange
- Crypto News — latest crypto news articles aggregated by CoinGecko
- Trending Search — top-7 trending coin searches in the last 24 hours
See the full AIsa API Reference for the complete catalog.
License
MIT — see LICENSE at the repo root.
1---2name: crypto-market-data-33description: Query real-time and historical cryptocurrency market data via CoinGecko through AIsa — simple prices, coin details, historical charts, OHLC candles, token prices by contract address, market-cap rankings, exchange data and tickers, categories, trending searches, and crypto news. Use when you need crypto market research, price tracking, token lookup, portfolio analysis, or market-cap screening. Use when: the user needs market data, stock analysis, dividend research, or read-only financial data workflows.4license: MIT5---67# Crypto Market Data 🪙89Query cryptocurrency market data from CoinGecko through AIsa.1011Use this skill when you need current prices, historical charts, OHLC candles, token lookup by contract address, market-cap rankings, exchange data, categories, trending searches, or crypto news from a single CLI.1213## Compatibility1415Works with any [agentskills.io](https://agentskills.io)-compatible harness, including:1617- **Claude Code** and **Claude**18- **OpenAI Codex**19- **Cursor**20- **Gemini CLI**21- **OpenCode**, **Goose**, **OpenClaw**, **Hermes**22- and other tools that implement the [Agent Skills specification](https://agentskills.io/specification)2324Requires Python 3, a POSIX shell, and `AISA_API_KEY` (get one at [aisa.one](https://aisa.one)).2526## What you can do2728### Price tracking29```text30"What is the current price of bitcoin and ethereum in USD and EUR?"31```3233### Historical charts34```text35"Get the last 30 days of BTC price data in USD"36```3738### OHLC candles39```text40"Pull 7-day OHLC candles for solana"41```4243### Token lookup by contract address44```text45"Find the CoinGecko price for USDC at 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum"46```4748### Market-cap screening49```text50"List the top 25 coins by market cap with 24h change"51```5253### Exchange research54```text55"What are Binance's top trading pairs by trust score?"56```5758### Trend discovery59```text60"What are the top trending coin searches on CoinGecko right now?"61```6263### Category breakdown64```text65"Rank DeFi coin categories by market cap"66```6768## Quick start6970```bash71export AISA_API_KEY="your-key"72```7374### Simple prices7576```bash77# Current price of bitcoin and ethereum in USD + EUR with 24h change78python3 scripts/coingecko_client.py simple price \79 --ids bitcoin,ethereum --vs usd,eur --include-24hr-change8081# All supported fiat/crypto currencies usable as vs_currency82python3 scripts/coingecko_client.py simple supported-currencies8384# Price by on-chain contract address (USDC on Ethereum)85python3 scripts/coingecko_client.py simple token-price \86 --platform ethereum \87 --addresses 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 \88 --vs usd --include-24hr-vol89```9091### Coin data, markets, and history9293```bash94# Full coin data for bitcoin95python3 scripts/coingecko_client.py coins data --id bitcoin9697# Top 25 coins by market cap (USD)98python3 scripts/coingecko_client.py coins markets \99 --vs usd --order market_cap_desc --per-page 25100101# Directory of all coins with ids/symbols/names102python3 scripts/coingecko_client.py coins list103104# Historical snapshot for a specific date (dd-mm-yyyy)105python3 scripts/coingecko_client.py coins history \106 --id bitcoin --date 01-01-2024107108# 30-day daily market chart for BTC in USD109python3 scripts/coingecko_client.py coins chart \110 --id bitcoin --vs usd --days 30111112# Explicit UNIX timestamp range113python3 scripts/coingecko_client.py coins chart-range \114 --id bitcoin --vs usd --from 1704067200 --to 1706745600115116# 7-day OHLC candles117python3 scripts/coingecko_client.py coins ohlc \118 --id bitcoin --vs usd --days 7119120# Exchange-listed trading pairs for a coin121python3 scripts/coingecko_client.py coins tickers \122 --id bitcoin --order trust_score_desc123124# Full data / chart by contract address125python3 scripts/coingecko_client.py coins contract \126 --platform ethereum \127 --address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48128129python3 scripts/coingecko_client.py coins contract-chart \130 --platform ethereum \131 --address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 \132 --vs usd --days 14133```134135### Categories136137```bash138# All category IDs and names139python3 scripts/coingecko_client.py categories list140141# Category leaderboard (market cap, volume, top-3 coins)142python3 scripts/coingecko_client.py categories markets \143 --order market_cap_desc144```145146### Exchanges147148```bash149# Exchanges with current trading volume and metadata150python3 scripts/coingecko_client.py exchanges list --per-page 50151152# Just the ID -> name map (useful for resolving user input)153python3 scripts/coingecko_client.py exchanges id-map154155# Detailed data for a specific exchange156python3 scripts/coingecko_client.py exchanges data --id binance157158# Trading pairs on a specific exchange159python3 scripts/coingecko_client.py exchanges tickers \160 --id binance --order trust_score_desc161```162163### News and trending164165```bash166python3 scripts/coingecko_client.py news167python3 scripts/coingecko_client.py trending168```169170## Inputs and outputs171172- **Input:** coin IDs (for example `bitcoin`, `ethereum`, `solana`), fiat/crypto `vs_currency` codes (`usd`, `eur`, `btc`), category IDs, exchange IDs, or supported platform + contract address pairs. Use `coins list` and `exchanges id-map` to resolve user-friendly names to CoinGecko IDs.173- **Output:** JSON printed to stdout, matching the CoinGecko schema for each endpoint: price dictionaries, coin and exchange objects, arrays of timestamped `[ts, value]` pairs for charts, `[ts, o, h, l, c]` tuples for OHLC, ticker arrays, and related market-data payloads.174175## When to use / When not to use176177**Use when:**178- You need current or historical **crypto** prices, market caps, volumes, or charts.179- You need to look up a token by its **on-chain contract address** (`ethereum`, `binance-smart-chain`, `polygon-pos`, and similar supported platforms).180- You need **exchange-level** data such as trust scores, volumes, or per-pair tickers.181- You want to screen categories such as DeFi, AI, or L1s, or surface trending coins.182183**Do not use when:**184- You need **equities or traditional finance** data — use the `marketpulse` skill.185- You need **prediction-market order-book depth** for platforms such as Polymarket or Kalshi — use `prediction-market-data`.186- You need **on-chain wallet balances, transfers, or gas traces** — CoinGecko is a pricing and market-data source, not a node RPC.187188## Requirements189190- Python 3, `curl`, POSIX shell191- `AISA_API_KEY` — required, get one at [aisa.one](https://aisa.one)192193## API reference194195This skill calls the following AIsa CoinGecko endpoints directly:196197- [Simple Price](https://aisa.one/docs/api-reference/coingecko/simple-price) — current price for one or more coins in any supported currencies198- [Supported Currencies](https://aisa.one/docs/api-reference/coingecko/supported-currencies) — list of all supported fiat and crypto `vs_currency` codes199- [Coin Price by Token Address](https://aisa.one/docs/api-reference/coingecko/coin-price-by-token-address) — current price of tokens by contract address on a supported platform200- [Coins List (ID Map)](https://aisa.one/docs/api-reference/coingecko/coins-list) — directory of all coins with id, symbol, and name201- [Coins Markets](https://aisa.one/docs/api-reference/coingecko/coins-markets) — all coins with full market data (price, market cap, volume, etc.)202- [Coin Data by ID](https://aisa.one/docs/api-reference/coingecko/coin-data-by-id) — current coin info including price, markets, links, community and developer data203- [Coin Tickers](https://aisa.one/docs/api-reference/coingecko/coin-tickers) — exchange-listed trading pairs for a coin204- [Coin Historical Data](https://aisa.one/docs/api-reference/coingecko/coin-historical-data) — historical snapshot (price, market cap, volume) for a given date205- [Coin Historical Chart](https://aisa.one/docs/api-reference/coingecko/coin-historical-chart) — historical market data over the last N days206- [Coin Market Chart Range](https://aisa.one/docs/api-reference/coingecko/coin-market-chart-range) — historical market data within an explicit UNIX timestamp range207- [Coin OHLC](https://aisa.one/docs/api-reference/coingecko/coin-ohlc) — OHLC candles for a coin208- [Coin Data by Token Address](https://aisa.one/docs/api-reference/coingecko/coin-data-by-token-address) — full coin data by contract address on a supported platform209- [Coin Historical Chart by Contract](https://aisa.one/docs/api-reference/coingecko/coin-historical-chart-by-contract) — historical market data for a token by contract address210- [Categories List](https://aisa.one/docs/api-reference/coingecko/categories-list) — all coin categories used by CoinGecko211- [Categories with Market Data](https://aisa.one/docs/api-reference/coingecko/categories-with-market-data) — categories with market cap, volume, and top-3 coins212- [Exchanges List](https://aisa.one/docs/api-reference/coingecko/exchanges-list) — all exchanges with current trading volume and metadata213- [Exchanges List (ID Map)](https://aisa.one/docs/api-reference/coingecko/exchanges-list-id-map) — exchange identifiers and names for mapping214- [Exchange Data by ID](https://aisa.one/docs/api-reference/coingecko/exchange-data-by-id) — detailed data for a single exchange (volume, tickers, trust score)215- [Exchange Tickers](https://aisa.one/docs/api-reference/coingecko/exchange-tickers) — trading pairs listed on a given exchange216- [Crypto News](https://aisa.one/docs/api-reference/coingecko/crypto-news) — latest crypto news articles aggregated by CoinGecko217- [Trending Search](https://aisa.one/docs/api-reference/coingecko/trending-search) — top-7 trending coin searches in the last 24 hours218219See the [full AIsa API Reference](https://aisa.one/docs/api-reference) for the complete catalog.220221## License222223MIT — see [LICENSE](../LICENSE) at the repo root.