بنقرة واحدة
crypto-prices
Get real-time cryptocurrency prices, market data, and trending coins using the free CoinGecko API.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Get real-time cryptocurrency prices, market data, and trending coins using the free CoinGecko API.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
AI Agent Marketplace for OpenClaw. Browse and discover 60+ free & premium agents — developer tools, content, automation, video, research, and more.
Network-wide ad and tracker blocking at the DNS level. A Pi-hole alternative that runs directly on your machine as an OpenClaw skill. No separate h...
agentplace's autonomous marketing experiments. Use when agentplace wants to try new content, test hooks, track what works, and iterate independently. Covers X posting, TikTok experimentation, and growth tracking.
Generates clean API documentation from code, endpoints, or descriptions — OpenAPI, markdown, or README format
Generates mock API responses with realistic fake data from OpenAPI specs or plain descriptions
Generates professional system architecture diagrams (Mermaid flowcharts, sequence diagrams, C4 models, deployment views) and Architecture Decision Records from plain English descriptions
| name | crypto-prices |
| description | Get real-time cryptocurrency prices, market data, and trending coins using the free CoinGecko API. |
Get real-time cryptocurrency prices, market data, and trending coins using the free CoinGecko API.
Category: finance API Key Required: No
Base URL: https://api.coingecko.com/api/v3
curl -s "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum&vs_currencies=usd,gbp&include_24hr_change=true&include_market_cap=true"
Coin IDs are lowercase (bitcoin, ethereum, solana, cardano, dogecoin, ripple). Use vs_currencies for fiat (usd, gbp, eur).
curl -s "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&order=market_cap_desc&per_page=10&page=1&sparkline=false"
Returns name, symbol, current price, market cap, 24h change, volume, etc.
curl -s "https://api.coingecko.com/api/v3/search/trending"
curl -s "https://api.coingecko.com/api/v3/coins/bitcoin?localization=false&tickers=false&community_data=false&developer_data=false"
curl -s "https://api.coingecko.com/api/v3/search?query=solana"
curl -s "https://api.coingecko.com/api/v3/coins/bitcoin/market_chart?vs_currency=usd&days=7"
User: "What's the price of Bitcoin?" → Call simple/price for bitcoin in usd. Reply: "Bitcoin is currently $XX,XXX (up/down X.X% in 24h)."
User: "What are the top 5 cryptos right now?" → Call coins/markets with per_page=5. Format as a list with name, price, 24h change.
User: "What's trending in crypto?" → Call search/trending. List the top trending coins with their rank and symbol.