Provides real-time and historical cryptocurrency prices, market cap rankings, trending tokens, and batch queries for 10,000+ coins via API and CLI.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install realtime-crypto-price-api或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install realtime-crypto-price-api⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/realtime-crypto-price-api/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: realtime-crypto-price-api description: Real-time cryptocurrency price data API for Bitcoin, Ethereum, Solana and 10,000+ tokens. Get live prices, historical data, trending coins, and batch queries for trading bots and dashboards. ---
Get real-time cryptocurrency prices for 10,000+ tokens.
npm install realtime-crypto-price-api
const { CryptoPrice } = require('realtime-crypto-price-api');
const client = new CryptoPrice();
// Get Bitcoin price
const btc = await client.getPrice('BTC');
console.log(`Bitcoin: $${btc.price}`);
// Get multiple prices
const prices = await client.getPrices(['BTC', 'ETH', 'SOL']);
// Top coins by market cap
const top10 = await client.getTopCoins(10);
// Trending gainers/losers
const gainers = await client.getTrending('gainers');
// Historical OHLCV data
const history = await client.getHistory('ETH', '1d', 30);
// Search tokens
const results = await client.search('pepe');
# Single price
npx realtime-crypto-price-api BTC
# Multiple prices
npx realtime-crypto-price-api batch BTC,ETH,SOL
# Top coins
npx realtime-crypto-price-api top 20
# Trending
npx realtime-crypto-price-api trending gainers
getPrice(symbol) - Single token price with 24h changegetPrices(symbols) - Batch price querygetTopCoins(limit) - Top by market capgetTrending(direction) - Gainers or losersgetHistory(symbol, interval) - OHLCV candlessearch(query) - Find tokensPowered by PRISM API - aggregated from 50+ exchanges.
安装 Real-time Crypto Price API 后,可以对 AI 说这些话来触发它
Help me get started with Real-time Crypto Price API
Explains what Real-time Crypto Price API does, walks through the setup, and runs a quick demo based on your current project
Use Real-time Crypto Price API to real-time and historical cryptocurrency prices, market cap rankings...
Invokes Real-time Crypto Price API with the right parameters and returns the result directly in the conversation
What can I do with Real-time Crypto Price API in my finance & investment workflow?
Lists the top use cases for Real-time Crypto Price API, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/realtime-crypto-price-api/ 目录(个人级,所有项目可用),或 .claude/skills/realtime-crypto-price-api/(项目级)。重启 AI 客户端后,用 /realtime-crypto-price-api 主动调用,或让 AI 根据上下文自动发现并使用。
Real-time Crypto Price API 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Real-time Crypto Price API 可免费安装使用。请查阅仓库了解许可证信息。
Provides real-time and historical cryptocurrency prices, market cap rankings, trending tokens, and batch queries for 10,000+ coins via API and CLI.
Real-time Crypto Price API 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using Real-time Crypto Price API
Identifies repetitive steps in your workflow and sets up Real-time Crypto Price API to handle them automatically