get_coin_details
Retrieve comprehensive metadata for a cryptocurrency coin, including description, links, market data, community stats, and developer activity. Ideal for exploring a coin's details, scores, and history in one query.
Instructions
Get rich metadata for a single coin: description, links, scores, market data, dev/community stats.
Use this when the user wants to learn about a coin (what is it, who built it, links to docs/source/socials), or when you need scores like CoinGecko rank, sentiment up/down vote percentages, or developer activity.
For just the price, use get_price (much cheaper).
Args:
coin_id: CoinGecko coin ID, e.g. "bitcoin".
localization: Include localized names/descriptions for many languages.
Usually false to keep responses small.
tickers: Include a tickers array (large). Use get_coin_tickers instead
when you specifically want exchange tickers.
market_data: Include current price, market cap, 24h/7d/30d/1y change,
ATH/ATL, supply, etc. Recommended.
community_data: Twitter/Reddit/Telegram follower counts and growth.
developer_data: GitHub stars, forks, commit counts, PR activity.
Returns:
A coin object with fields like id, symbol, name, description,
links, image, market_cap_rank, market_data, community_data,
developer_data, categories, genesis_date, etc.
Note: coin_id is validated against ^[a-z0-9][a-z0-9._-]{0,127}$.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| coin_id | Yes | ||
| localization | No | ||
| tickers | No | ||
| market_data | No | ||
| community_data | No | ||
| developer_data | No |