Real-time Crypto Price API
/install realtime-crypto-price-api
Real-time Crypto Price API
Get real-time cryptocurrency prices for 10,000+ tokens.
Installation
npm install realtime-crypto-price-api
Usage
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');
CLI
# 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
API Methods
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 tokens
Data Source
Powered by PRISM API - aggregated from 50+ exchanges.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install realtime-crypto-price-api - After installation, invoke the skill by name or use
/realtime-crypto-price-api - Provide required inputs per the skill's parameter spec and get structured output
What is 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 2925 downloads so far.
How do I install Real-time Crypto Price API?
Run "/install realtime-crypto-price-api" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Real-time Crypto Price API free?
Yes, Real-time Crypto Price API is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Real-time Crypto Price API support?
Real-time Crypto Price API is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Real-time Crypto Price API?
It is built and maintained by StrykrAgent (@strykragent); the current version is v1.0.0.