{
  "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": {
    "downloadMode": "redirect",
    "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",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "cli.js",
      "examples/basic.js",
      "package.json",
      "src/index.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/realtime-crypto-price-api",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Real-time Crypto Price API",
        "body": "Get real-time cryptocurrency prices for 10,000+ tokens."
      },
      {
        "title": "Installation",
        "body": "npm install realtime-crypto-price-api"
      },
      {
        "title": "Usage",
        "body": "const { CryptoPrice } = require('realtime-crypto-price-api');\n\nconst client = new CryptoPrice();\n\n// Get Bitcoin price\nconst btc = await client.getPrice('BTC');\nconsole.log(`Bitcoin: $${btc.price}`);\n\n// Get multiple prices\nconst prices = await client.getPrices(['BTC', 'ETH', 'SOL']);\n\n// Top coins by market cap\nconst top10 = await client.getTopCoins(10);\n\n// Trending gainers/losers\nconst gainers = await client.getTrending('gainers');\n\n// Historical OHLCV data\nconst history = await client.getHistory('ETH', '1d', 30);\n\n// Search tokens\nconst results = await client.search('pepe');"
      },
      {
        "title": "CLI",
        "body": "# Single price\nnpx realtime-crypto-price-api BTC\n\n# Multiple prices\nnpx realtime-crypto-price-api batch BTC,ETH,SOL\n\n# Top coins\nnpx realtime-crypto-price-api top 20\n\n# Trending\nnpx realtime-crypto-price-api trending gainers"
      },
      {
        "title": "API Methods",
        "body": "getPrice(symbol) - Single token price with 24h change\ngetPrices(symbols) - Batch price query\ngetTopCoins(limit) - Top by market cap\ngetTrending(direction) - Gainers or losers\ngetHistory(symbol, interval) - OHLCV candles\nsearch(query) - Find tokens"
      },
      {
        "title": "Data Source",
        "body": "Powered by PRISM API - aggregated from 50+ exchanges."
      }
    ],
    "body": "Real-time Crypto Price API\n\nGet real-time cryptocurrency prices for 10,000+ tokens.\n\nInstallation\nnpm install realtime-crypto-price-api\n\nUsage\nconst { CryptoPrice } = require('realtime-crypto-price-api');\n\nconst client = new CryptoPrice();\n\n// Get Bitcoin price\nconst btc = await client.getPrice('BTC');\nconsole.log(`Bitcoin: $${btc.price}`);\n\n// Get multiple prices\nconst prices = await client.getPrices(['BTC', 'ETH', 'SOL']);\n\n// Top coins by market cap\nconst top10 = await client.getTopCoins(10);\n\n// Trending gainers/losers\nconst gainers = await client.getTrending('gainers');\n\n// Historical OHLCV data\nconst history = await client.getHistory('ETH', '1d', 30);\n\n// Search tokens\nconst results = await client.search('pepe');\n\nCLI\n# Single price\nnpx realtime-crypto-price-api BTC\n\n# Multiple prices\nnpx realtime-crypto-price-api batch BTC,ETH,SOL\n\n# Top coins\nnpx realtime-crypto-price-api top 20\n\n# Trending\nnpx realtime-crypto-price-api trending gainers\n\nAPI Methods\ngetPrice(symbol) - Single token price with 24h change\ngetPrices(symbols) - Batch price query\ngetTopCoins(limit) - Top by market cap\ngetTrending(direction) - Gainers or losers\ngetHistory(symbol, interval) - OHLCV candles\nsearch(query) - Find tokens\nData Source\n\nPowered by PRISM API - aggregated from 50+ exchanges."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/StrykrAgent/realtime-crypto-price-api",
    "publisherUrl": "https://clawhub.ai/StrykrAgent/realtime-crypto-price-api",
    "owner": "StrykrAgent",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}