首页龙虾技能列表 › Real-time Crypto Price API — 技能工具

Real-time Crypto Price API — 技能工具

v1.0.0

[自动翻译] Provides real-time and historical cryptocurrency prices, market cap rankings, trending tokens, and batch queries for 10,000+ coins via API and CLI.

1· 2,600·0 当前·0 累计
by @strykragent·MIT-0
下载技能包
License
MIT-0
最后更新
2026/2/14
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill's code, instructions, and optional environment variables are coherent with a cryptocurrency price client powered by the PRISM API; nothing in the files indicates unexplained or disproportionate access.
评估建议
The package appears to be a straightforward client for the PRISM API and behaves consistently with its description. Before installing: (1) verify the publisher/source (check the npm package page and the GitHub repository cited in package.json) to ensure you're installing the intended package; (2) review recent package versions and maintainers, and run npm audit if you plan to install; (3) only provide a PRISM_API_KEY if you trust the service and scope the key appropriately; (4) if you need highe...
详细分析 ▾
用途与能力
The name, README, SKILL.md and source files all align: this is a client/CLI for PRISM API providing realtime and historical crypto prices. Minor metadata mismatch: registry lists 'Source: unknown' and no homepage, while package.json contains a homepage and repository (https://prismapi.ai and GitHub URL). That is not necessarily malicious but is something to verify (publisher origin/trust).
指令范围
SKILL.md instructs normal usage (npm install, require the package, call client methods, or use the CLI). The runtime instructions and code only perform network calls to the PRISM API base URL (configurable via PRISM_API_URL) and do not read arbitrary files or unrelated environment variables.
安装机制
There is no install spec in the registry (instruction-only), but full source files and a package.json are included. No downloads from untrusted URLs, no extract or external installers—installation is the normal npm package workflow.
凭证需求
Registry metadata lists no required env vars, but the package and README use optional PRISM_API_KEY and PRISM_API_URL environment variables. These are proportional to the stated purpose (auth and custom endpoint). The package will read PRISM_API_KEY from the environment if present, so only set it if you trust the package and upstream API.
持久化与权限
The skill does not request persistent privileges, does not set always:true, and does not modify other skills or system configuration. It simply makes network requests when invoked.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/2/14
● 无害

安装命令 点击复制

官方npx clawhub@latest install realtime-crypto-price-api
镜像加速npx clawhub@latest install realtime-crypto-price-api --registry https://cn.clawhub-mirror.com

技能文档

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.

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务