crypto-market-data

Get cryptocurrency prices, market cap, trading volume, trending tokens, market sentiment, Fear & Greed Index, total value locked (TVL), and DeFi protocol rankings. Use when asked about token price, crypto market overview, what's trending, market sentiment, TVL by chain or protocol, top gainers/losers, or price history.

23 stars

Best use case

crypto-market-data is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Get cryptocurrency prices, market cap, trading volume, trending tokens, market sentiment, Fear & Greed Index, total value locked (TVL), and DeFi protocol rankings. Use when asked about token price, crypto market overview, what's trending, market sentiment, TVL by chain or protocol, top gainers/losers, or price history.

Teams using crypto-market-data should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/crypto-market-data/SKILL.md --create-dirs "https://raw.githubusercontent.com/jiayaoqijia/cryptoskill/main/skills/analytics/crypto-market-data/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/crypto-market-data/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How crypto-market-data Compares

Feature / Agentcrypto-market-dataStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Get cryptocurrency prices, market cap, trading volume, trending tokens, market sentiment, Fear & Greed Index, total value locked (TVL), and DeFi protocol rankings. Use when asked about token price, crypto market overview, what's trending, market sentiment, TVL by chain or protocol, top gainers/losers, or price history.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Crypto Market Data

Retrieve real-time and historical crypto market data using free, no-auth APIs.

## APIs

### CoinGecko (Free, no auth for basic endpoints)

Base: `https://api.coingecko.com/api/v3`

**Current price** (up to 250 IDs per call):
```
web_fetch url="https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,solana&vs_currencies=usd&include_24hr_change=true&include_market_cap=true"
```

**Token detail** (includes description, links, market data):
```
web_fetch url="https://api.coingecko.com/api/v3/coins/bitcoin"
```

**Market list** (top N by market cap, paginated):
```
web_fetch url="https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&order=market_cap_desc&per_page=50&page=1&sparkline=false"
```

**Trending tokens** (top 7 by search volume):
```
web_fetch url="https://api.coingecko.com/api/v3/search/trending"
```

**Price history** (daily OHLC, max 365 days free):
```
web_fetch url="https://api.coingecko.com/api/v3/coins/bitcoin/ohlc?vs_currency=usd&days=30"
```

**Search by name/symbol**:
```
web_fetch url="https://api.coingecko.com/api/v3/search?query=pepe"
```

**Categories** (list all categories with market data):
```
web_fetch url="https://api.coingecko.com/api/v3/coins/categories"
```

> Rate limit: ~30 req/min (free). Use `include_market_cap=true` to avoid extra calls.
> See `references/coingecko-ids.md` for top 200 token IDs.

### DexPaprika (Free, no auth)

Base: `https://api.dexpaprika.com`

**Token price on DEXes** (by chain + address):
```
web_fetch url="https://api.dexpaprika.com/networks/ethereum/tokens/0xdac17f958d2ee523a2206206994597c13d831ec7"
```

**Top DEX pools**:
```
web_fetch url="https://api.dexpaprika.com/networks/ethereum/pools?sort=volume_usd&order=desc&limit=20"
```

**Supported networks**:
```
web_fetch url="https://api.dexpaprika.com/networks"
```

**OHLCV for a pool**:
```
web_fetch url="https://api.dexpaprika.com/networks/ethereum/pools/{pool_address}/ohlcv?interval=1d&limit=30"
```

### Fear & Greed Index (Free, no auth)

```
web_fetch url="https://api.alternative.me/fng/?limit=1"
```

Response: `{ "data": [{ "value": "73", "value_classification": "Greed", "timestamp": "..." }] }`

Historical (last 30 days):
```
web_fetch url="https://api.alternative.me/fng/?limit=30"
```

### DefiLlama (Free, no auth)

Base: `https://api.llama.fi`

**Total TVL across all protocols**:
```
web_fetch url="https://api.llama.fi/v2/historicalChainTvl"
```

**TVL by chain**:
```
web_fetch url="https://api.llama.fi/v2/chains"
```

**Protocol TVL + details**:
```
web_fetch url="https://api.llama.fi/protocol/aave"
```

**Top protocols by TVL**:
```
web_fetch url="https://api.llama.fi/protocols"
```

**Stablecoins market cap**:
```
web_fetch url="https://stablecoins.llama.fi/stablecoins?includePrices=true"
```

**DEX volumes** (24h):
```
web_fetch url="https://api.llama.fi/overview/dexs?excludeTotalDataChart=true&excludeTotalDataChartBreakdown=true"
```

## Usage Tips

- Always use CoinGecko IDs (not symbols) — e.g., `bitcoin` not `BTC`. See references for mapping.
- For on-chain DEX data (price by contract address), use DexPaprika.
- For protocol-level TVL and DeFi analytics, use DefiLlama.
- Fear & Greed Index is BTC-focused; mention this when reporting sentiment.
- Combine CoinGecko trending + Fear & Greed for a quick market overview.

Related Skills

okx-cex-market

23
from jiayaoqijia/cryptoskill

This skill should be used when the user asks for 'price of BTC', 'ETH ticker', 'show me the orderbook', 'market depth', 'BTC candles', 'OHLCV chart data', 'funding rate', 'open interest', 'mark price', 'index price', 'recent trades', 'price limit', 'list instruments', 'what instruments are available', or any request to query public market data on OKX CEX. All commands are read-only and do NOT require API credentials. Do NOT use for account balance/positions (use okx-cex-portfolio), placing/cancelling orders (use okx-cex-trade), or grid/DCA bots (use okx-cex-bot).

okx-dex-market

23
from jiayaoqijia/cryptoskill

This skill should be used when the user asks about live on-chain market data: token prices, price charts (K-line, OHLC), trade history, or swap activity. Also covers on-chain signals — smart money, whale, and KOL wallet activity, large trades, and signal-supported chains. For meme tokens: scanning new launches (扫链/trenches,golden dog, alpha, pump fun), checking dev wallets, developer reputation, rug pull detection, tokens by same creator, bundle/sniper detection, bonding curves, and meme token safety checks. For token search, market cap, liquidity, trending tokens, or holder distribution, use okx-dex-token instead.

Kraken Crypto Skill

23
from jiayaoqijia/cryptoskill

Use the kraken_cli.py wrapper to query your Kraken account.

recipe-morning-market-brief

23
from jiayaoqijia/cryptoskill

Generate a morning market summary with prices, volume, and portfolio state.

kraken-market-intel

23
from jiayaoqijia/cryptoskill

Read market state with low-noise data pulls and streaming updates.

gate-info-marketoverview

23
from jiayaoqijia/cryptoskill

Market overview. Use this skill whenever the user asks about overall market. Trigger phrases include: how is the market, market overview, what is happening in crypto. MCP tools: info_marketsnapshot_get_market_overview, info_coin_get_coin_rankings, info_platformmetrics_get_defi_overview, news_events_get_latest_events, info_macro_get_macro_summary.

gate-exchange-marketanalysis

23
from jiayaoqijia/cryptoskill

The market analysis function of Gate Exchange, such as liquidity, momentum, liquidation, funding arbitrage, basis, manipulation risk, order book explainer, slippage simulation. Use when the user asks about liquidity, depth, slippage, buy/sell pressure, liquidation, funding rate arbitrage, basis/premium, manipulation risk, order book explanation, or slippage simulation (e.g. market buy $X slippage). Trigger phrases: liquidity, depth, slippage, momentum, buy/sell pressure, liquidation, squeeze, funding rate, arbitrage, basis, premium, manipulation, order book, spread, slippage simulation.

gate-dex-market

23
from jiayaoqijia/cryptoskill

Gate DEX market data skill. Uses AK/SK authentication to call Gate DEX OpenAPI, providing token and market quote read-only queries. Use when users mention quotes, prices, token information, rankings, security audits.

crypto-com-mcp-skill

23
from jiayaoqijia/cryptoskill

Use Crypto.com MCP through UXC for exchange market data workflows with help-first discovery and read-only guardrails.

crypto-cex

23
from jiayaoqijia/cryptoskill

Get centralized exchange market data, order books, trading pairs, ticker prices, and 24h volume across Binance, Coinbase, Kraken, Bybit, Gate.io, and Bitget. Use when asked about CEX prices, exchange order book, trading pairs, CEX volume, Binance price, Kraken ticker, exchange comparison, or funding rates on centralized exchanges.

market-intel

23
from jiayaoqijia/cryptoskill

On-chain and institutional market intelligence — the structural layer beneath price. Use this skill whenever the user asks about: whale activity, exchange flows, token unlocks, ETF inflows/outflows, institutional buying or selling, DeFi TVL, yield opportunities, DEX trending tokens, meme coins, new token launches, market cycle indicators, AHR999, Pi Cycle, rainbow chart, accumulation zone, BTC market cycle, is now a good time to DCA, Coinbase premium, stablecoin supply, on-chain health, ETH gas, BTC fees, mempool, market cap rankings, or anything about what large holders and institutions are doing with their coins.

crypto-market-rank

23
from jiayaoqijia/cryptoskill

Crypto market rankings and leaderboards. Query trending tokens, top searched tokens, Binance Alpha tokens, tokenized stocks, social hype sentiment ranks, smart money inflow token rankings, top meme token rankings from Pulse launchpad, and top trader PnL leaderboards. Use this skill when users ask about token rankings, market trends, social buzz, meme rankings, breakout meme tokens, or top traders.