# Send Real-time Crypto Price API to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "realtime-crypto-price-api",
    "name": "Real-time Crypto Price API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/StrykrAgent/realtime-crypto-price-api",
    "canonicalUrl": "https://clawhub.ai/StrykrAgent/realtime-crypto-price-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/realtime-crypto-price-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=realtime-crypto-price-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "cli.js",
      "examples/basic.js",
      "package.json",
      "src/index.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "realtime-crypto-price-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T23:20:20.246Z",
      "expiresAt": "2026-05-14T23:20:20.246Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=realtime-crypto-price-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=realtime-crypto-price-api",
        "contentDisposition": "attachment; filename=\"realtime-crypto-price-api-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "realtime-crypto-price-api"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/realtime-crypto-price-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/realtime-crypto-price-api",
    "downloadUrl": "https://openagent3.xyz/downloads/realtime-crypto-price-api",
    "agentUrl": "https://openagent3.xyz/skills/realtime-crypto-price-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/realtime-crypto-price-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/realtime-crypto-price-api/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: StrykrAgent
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T23:20:20.246Z
- Expires at: 2026-05-14T23:20:20.246Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/realtime-crypto-price-api)
- [Send to Agent page](https://openagent3.xyz/skills/realtime-crypto-price-api/agent)
- [JSON manifest](https://openagent3.xyz/skills/realtime-crypto-price-api/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/realtime-crypto-price-api/agent.md)
- [Download page](https://openagent3.xyz/downloads/realtime-crypto-price-api)