LaunchKit · 2026
Back to Skills

crypto-market-data

No API KEY needed for free tier.

6
6.7k downloads
by @liam8

Setup & Installation

openclaw skills install @liam8/crypto-market-data

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install crypto-market-data

Version History

v1.0.2Feb 13, 2026 - Version note by skill developer:

Major rewrite: Migration from Python to Node.js, and expansion to support stock market data. - All Python scripts and dependencies removed; replaced by Node.js scripts using only standard libraries. - Added stock market features: real-time stock quotes, company profiles, and stock ticker search tools. - Improved and streamlined authentication: session token management now handled via JavaScript and local file storage. - Updated documentation for new usage patterns, script names, syntax, and supported features. - No external dependencies required—just Node.js out-of-the-box.

What This Skill Does

Provides real-time and historical pricing, market metrics, and company data for both cryptocurrencies and stocks. Authentication is handled automatically via a session token, so no API key setup is needed. Built on Node.js standard libraries with no external dependencies.

Covers both crypto and stock data in a single skill without requiring any manual API key registration or environment configuration.

When to use it

  • Check current Bitcoin and Ethereum prices in JPY
  • Pull AAPL company profile and CEO info
  • Get candlestick data for a coin before making a trade
  • Find top 20 coins by market cap
  • Look up public company Bitcoin treasury holdings

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: What are the current prices and 7-day OHLC charts for Bitcoin and Solana?

AGENT
  1. 1Run get_crypto_price.js bitcoin solana to fetch current prices and 24h metrics
  2. 2Run get_coin_ohlc_chart.js bitcoin --days=7 to retrieve candlestick data for Bitcoin
  3. 3Run get_coin_ohlc_chart.js solana --days=7 to retrieve candlestick data for Solana
  4. 4Format and return prices alongside OHLC tables for both assets
OUTPUT

Current prices with market cap and 24h change, plus 7-day OHLC candlestick data for Bitcoin and Solana