返回 Skill 列表
extension
分类: 开发与工程无需 API Key

Real-time Crypto Price API

提供实时和历史加密货币价格、市值排名、热门代币,以及通过API和CLI批量查询10000+种代币的服务。

person作者: strykragenthubclawhub

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 change
  • getPrices(symbols) - Batch price query
  • getTopCoins(limit) - Top by market cap
  • getTrending(direction) - Gainers or losers
  • getHistory(symbol, interval) - OHLCV candles
  • search(query) - Find tokens

Data Source

Powered by PRISM API - aggregated from 50+ exchanges.