termix-official/cryptoclaw

coingecko

Query CoinGecko API for prices, market data, trending tokens, and historical charts.

First seen Feb 28, 2026

Installation

$ npx skills add termix-official/cryptoclaw --skill coingecko

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from termix-official/cryptoclaw · top by installs.

npx skills add termix-official/cryptoclaw

Browse all from termix-official/cryptoclaw

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 101
License LICENSE
Default branch main
Open issues 1
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,034 B
  • docs SUMMARY.md 101 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 16 installs

SKILL.md

CoinGecko API

Query cryptocurrency prices, market caps, charts, and trending tokens via the CoinGecko free API.

Base URL

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

No API key required. Rate limit: ~30 calls/minute.

Endpoints

Price Lookup

GET /simple/price?ids={ids}&vs_currencies={currencies}&include_24hr_change=true&include_market_cap=true
  • ids: comma-separated CoinGecko IDs (see ID table below)
  • vs_currencies: usd, btc, eth, bnb

Example: /simple/price?ids=bitcoin,ethereum&vscurrencies=usd&include24hr_change=true

Token Price by Contract Address

GET /simple/token_price/{platform}?contract_addresses={addresses}&vs_currencies=usd&include_24hr_change=true

Platform IDs:

  • binance-smart-chain — BSC
  • ethereum — Ethereum
  • polygon-pos — Polygon
  • arbitrum-one — Arbitrum
  • optimistic-ethereum — Optimism
  • base — Base

Example: /simple/tokenprice/binance-smart-chain?contractaddresses=0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82&vs_currencies=usd

Market Rankings

GET /coins/markets?vs_currency=usd&order=market_cap_desc&per_page=20&page=1&sparkline=false

Returns top coins with price, market cap, volume, and 24h change.

Trending

GET /search/trending

Returns trending coins, NFTs, and categories. No parameters needed.

Historical Chart

GET /coins/{id}/market_chart?vs_currency=usd&days={days}
  • days: 1, 7, 14, 30, 90, 365, max
  • Returns arrays of [timestamp, value] for prices, marketcaps, totalvolumes

Coin Detail

GET /coins/{id}?localization=false&tickers=false&community_data=false&developer_data=false

Returns full metadata: description, links, contract addresses, market data.

CoinGecko ID Reference

Token CoinGecko ID
BTC bitcoin
ETH ethereum
BNB binancecoin
SOL solana
USDT tether
USDC usd-coin
XRP ripple
ADA cardano
DOGE dogecoin
AVAX avalanche-2
DOT polkadot
MATIC matic-network
LINK chainlink
UNI uniswap
CAKE pancakeswap-token
ARB arbitrum
OP optimism
AAVE aave
LDO lido-dao
SHIB shiba-inu

For unknown tokens, search: GET /search?query={name}

Usage Notes

  • Always use curl -s to fetch, then parse the JSON response
  • For on-chain token prices not listed on CoinGecko, fall back to DEX quotes via swapgetquote
  • The market-data skill provides high-level workflow guidance; this skill is the concrete API reference
  • Report data source and freshness: "CoinGecko, fetched just now"