Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-coinmarketcap Install via the SkillsCat registry.
SKILL.md
CoinMarketCap
Overview
Cryptocurrency market data and rankings. Real-time prices, market caps, volumes, and trending tokens from CoinMarketCap's internal data API.
Workflows
Browse top cryptocurrencies
getListings(limit)→id, name, symbol, quotes[].price, cmcRankgetQuote(id)→ statistics.price, marketCap, volume24h, description
Check a specific coin's market data
getListings(sortBy: "name")→idgetQuote(id)→ price, market cap, supply, ATH/ATL, percent changes
Discover trending coins
getTrending(limit)→cryptoId, tokenName, priceUsdgetQuote(id=cryptoId)→ full details for a trending coin
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| getListings | top coins by market cap | start, limit, sortBy | cryptoCurrencyList[].name, symbol, quotes[].price, marketCap, cmcRank | paginated, default sort: market_cap desc |
| getQuote | coin price/market data | id <- getListings / getTrending.cryptoId | statistics.price, marketCap, volume24h, rank, ATH/ATL, description | numeric ID required (1=BTC, 1027=ETH) |
| getTrending | trending/hot coins | start, limit | list[].tokenName, tokenSymbol, priceUsd, volume24h, pricePercentageChange24h | entry point for discovery |
Quick Start
# Get top 10 cryptocurrencies by market cap
openweb coinmarketcap exec getListings '{"limit":10}'
# Get Bitcoin details (id=1)
openweb coinmarketcap exec getQuote '{"id":1}'
# Get Ethereum details (id=1027)
openweb coinmarketcap exec getQuote '{"id":1027}'
# Get trending coins
openweb coinmarketcap exec getTrending '{"limit":10}'