multiAI Summary Pending

market-data

Fetch cryptocurrency prices, market caps, charts, and trending tokens.

272 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/market-data/SKILL.md --create-dirs "https://raw.githubusercontent.com/TermiX-official/cryptoclaw/main/skills/market-data/SKILL.md"

Manual Installation

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

How market-data Compares

Feature / Agentmarket-dataStandard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Fetch cryptocurrency prices, market caps, charts, and trending tokens.

Which AI agents support this skill?

This skill is compatible with multi.

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

# Market Data Skill

Fetch cryptocurrency prices, market caps, charts, and trending tokens.

## Overview

Provide real-time and historical market data for cryptocurrencies using public APIs (CoinGecko free tier).

## Capabilities

- **Price lookup**: Current price of any token in USD/BTC/ETH
- **Market overview**: Top tokens by market cap, 24h volume, gainers/losers
- **Trending tokens**: Currently trending on CoinGecko
- **Price history**: Historical price data for charting
- **Token search**: Find tokens by name or symbol

## Data Sources

- CoinGecko API (free, no key required for basic queries)
- On-chain price from DEX pools via `read_contract` when needed

## Example Interactions

User: "What's the price of ETH?"
Action: Query CoinGecko for ethereum price, report USD value and 24h change

User: "Show me trending tokens"
Action: Query CoinGecko trending endpoint, list top 10 with prices

User: "How has BNB performed this week?"
Action: Query 7-day price history, summarize with high/low/change

## Notes

- Rate limits: CoinGecko free tier allows ~30 calls/minute
- For on-chain token prices, use DEX router contracts
- Always show the data source and timestamp
- For detailed CoinGecko API usage (endpoints, parameters, ID lookup), see the `coingecko` skill