ideabrowser.com — find trending startup ideas with real demand
Try itnpx skills add https://github.com/starchild-ai-agent/official-skills --skill coingeckoCoinGecko provides comprehensive crypto market data including spot prices, OHLC candles, market cap, trending coins, sector performance, and global stats.
Use CoinGecko for:
coin_price(coin_id="bitcoin") # Supports symbols like BTC, ETH, SOL
coin_price(coin_id="ethereum", vs_currencies="usd,eur")
coin_ohlc(coin_id="bitcoin", vs_currency="usd", days=7) # OHLC candles
coin_chart(coin_id="ethereum", vs_currency="usd", days=30) # Price chart data
cg_trending() # Trending coins in the last 24h
cg_top_gainers_losers() # Top movers
cg_new_coins() # Recently listed coins
cg_coins_markets(vs_currency="usd", order="market_cap_desc", per_page=100)
cg_coin_data(id="bitcoin") # Detailed coin data
cg_coin_tickers(id="ethereum") # All trading pairs
cg_search(query="solana") # Search for coins
cg_exchanges() # All exchanges
cg_exchange(id="binance") # Specific exchange
cg_exchange_tickers(id="binance") # Exchange trading pairs
cg_exchange_volume_chart(id="binance", days=7)
cg_global() # Total market stats
cg_global_defi() # DeFi specific stats
cg_categories() # Sector performance
cg_token_price(contract_addresses=["0x..."], vs_currencies="usd")
cg_coin_by_contract(contract_address="0x...", platform="ethereum")
cg_vs_currencies() to see all supported currencies.Common symbols are automatically resolved:
Important: If unsure about a coin ID, always use cg_search(query="coin name") first to find the exact CoinGecko ID before calling price tools.