← Back to Skills Marketplace
coinglass-official

CoinGlass API SKILL

by CoinGlass · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ⚠ suspicious
109
Downloads
1
Stars
0
Active Installs
4
Versions
Install in OpenClaw
/install coinglass-api-skills
Description
CoinGlass API skill. Routes to the appropriate sub-skill based on user intent. Covers futures, ETF, options, spots, on-chain, indicators, account, and other...
README (SKILL.md)

CoinGlass API Skill

This is the root entry point for all CoinGlass API skills. It provides access to comprehensive crypto market data including futures, ETF flows, options, spot markets, on-chain data, indicators, and account information.

When a user request matches a sub-skill, read the corresponding API.md for that sub-skill and follow its instructions.


Routing Table

Based on the user's intent, route to the appropriate sub-skill:

Futures

User Intent Sub-skill Path
Funding rate, funding history futures/funding-rate/API.md
Liquidation, liquidation heatmap futures/liquidation/API.md
Long/short ratio futures/long-short-ratio/API.md
Open interest, OI history futures/open-interest/API.md
Order book (L2), futures order book futures/order-book-l2/API.md
Taker buy/sell volume (futures) futures/taker-buy-sell/API.md
Futures trading market, market overview futures/trading-market/API.md
Hyperliquid positions futures/hyperliquid-positions/API.md

ETF

User Intent Sub-skill Path
Bitcoin ETF, BTC ETF flows etf/bitcoin-etf/API.md
Ethereum ETF, ETH ETF flows etf/ethereum-etf/API.md
Solana ETF, SOL ETF flows etf/solana-etf/API.md
XRP ETF flows etf/xrp-etf/API.md
Grayscale, GBTC, ETHE etf/grayscale/API.md

Spots

User Intent Sub-skill Path
Spot order book spots/order-book/API.md
Spot taker buy/sell volume spots/taker-buy-sell/API.md
Spot trading market, spot market overview spots/trading-market/API.md

Options

User Intent Sub-skill Path
Options, put/call ratio, options flow, max pain options/API.md

On-Chain

User Intent Sub-skill Path
Exchange inflow/outflow, exchange reserve on-chain/exchange-data/API.md
Token on-chain data, holder distribution on-chain/token/API.md
On-chain transactions, whale transactions on-chain/transactions/API.md

Indicators

User Intent Sub-skill Path
Futures indicators indic/futures/API.md
Spot indicators indic/spots/API.md
Other indicators, fear & greed, market sentiment indic/other/API.md

Other

User Intent Sub-skill Path
Financial calendar, economic events, FOMC other/financial-calendar/API.md
Crypto news other/news/API.md

Account

User Intent Sub-skill Path
API account info, plan details, usage account/API.md

Rate Limits

Rate Limits HOBBYIST: 30 Rate limit/min STARTUP: 80 Rate limit/min STANDARD: 300 Rate limit/min PROFESSIONAL: 1200 Rate limit/min

Response Headers API-KEY-MAX-LIMIT: Indicates the maximum allowed request limit for your API key (per minute). API-KEY-USE-LIMIT: Shows the current usage count of your API key (requests made in the current time period).

Error Codes

For detailed information on error codes, please refer to Errors.

Usage Guidance
This skill is a documentation-style wrapper around the CoinGlass REST API and will make HTTP requests to open-api-v4.coinglass.com using curl. Before installing: 1) Expect to need a CoinGlass API key — the API docs show a CG-API-KEY header, but the skill does not declare any required env var or primary credential; confirm how you will provide the key on this platform. 2) Only provide a read-only / limited-scope API key (if possible); do not paste high-privilege or account-management keys into chat. 3) Verify the skill's source (the homepage points to a GitHub repo) and confirm it's the official integration. 4) Review which endpoints you will call — most examples are GET/read-only, but avoid supplying API keys with write/trade permissions. 5) If you need stronger assurances, ask the publisher to update the skill metadata to declare a required environment variable for the API key (so the platform handles it securely) and to document expected key scope.
Capability Analysis
Type: OpenClaw Skill Name: coinglass-api-skills Version: 1.1.0 The coinglass-api-skills bundle is a comprehensive and well-documented set of API definitions for accessing cryptocurrency market data from CoinGlass. It covers futures, ETFs, options, spot markets, and on-chain data. All requests are directed to the legitimate domain open-api-v4.coinglass.com and follow standard REST API patterns, requiring a user-provided API key. There is no evidence of data exfiltration, malicious code execution, or prompt injection attempts across the numerous SKILL.md and API.md files.
Capability Assessment
Purpose & Capability
Name and description (crypto market data across futures, spots, ETF, on-chain, etc.) match the provided API.md files and routing table. Requiring curl is reasonable for an instruction-only wrapper that runs HTTP requests.
Instruction Scope
The SKILL.md and per-endpoint API.md files instruct the agent to call CoinGlass endpoints via curl and include a CG-API-KEY header in examples (e.g. CG-API-KEY: ${YOUR_API_KEY}). The skill's root instructions tell the agent to read the sub-skill API.md files and follow them. There are no instructions to read local files, system configs, or unrelated environment variables, but the explicit use of ${YOUR_API_KEY} in many examples implies the agent will need an API key even though none is declared.
Install Mechanism
Instruction-only skill with no install spec and no code files — no files are written to disk and nothing is downloaded or executed beyond curl-initiated HTTP requests.
Credentials
Many API examples expect a CG-API-KEY header (placeholder ${YOUR_API_KEY}) but the registry metadata lists no required environment variables or primary credential. That mismatch is an incoherence: the skill will function only if an API key is provided, but it doesn't declare how the platform will receive/store that key. This omission increases risk of accidental key exposure if users paste keys into chat or otherwise supply them insecurely.
Persistence & Privilege
always is false and the skill is user-invocable with normal autonomous invocation allowed. There is no install or behavior that attempts to modify other skills or system configuration.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install coinglass-api-skills
  3. After installation, invoke the skill by name or use /coinglass-api-skills
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.0
- Added comprehensive documentation and routing table for the CoinGlass API skill, listing all available sub-skills and their entry points. - Clarified the scope: covers futures, ETF, options, spots, on-chain data, indicators, account info, news, and financial calendar. - Provided detailed user intent mapping to appropriate sub-skills for easier navigation. - Included rate limits for each subscription tier and described rate limit response headers. - Linked to error code documentation for troubleshooting.
v1.0.3
- Initial release of the CoinGlass API skill (v1.0.0). - Provides a unified entry point and routing for all CoinGlass API sub-skills. - Supports crypto market data including futures, ETF, options, spot, on-chain, indicators, account, and more. - Includes a detailed routing table mapping user intent to sub-skill documentation. - Documents rate limits and relevant response headers. - Reference provided for API error codes.
v1.0.1
- Removed the documentation file: futures/order-book-l2/SKILL.md - No functional changes; this update only affects documentation.
v1.0.0
CoinGlass API Skill 1.0.0 initial release: - Root entry point skill for CoinGlass API, enabling unified routing to sub-skills based on user intent. - Supports crypto market data across futures, ETF flows, options, spot, on-chain, indicators, news, and account details. - Provides a comprehensive routing table mapping user requests to specific sub-skill documentation. - Documents API rate limits and relevant response headers. - Includes reference to error code documentation.
Metadata
Slug coinglass-api-skills
Version 1.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 4
Frequently Asked Questions

What is CoinGlass API SKILL?

CoinGlass API skill. Routes to the appropriate sub-skill based on user intent. Covers futures, ETF, options, spots, on-chain, indicators, account, and other... It is an AI Agent Skill for Claude Code / OpenClaw, with 109 downloads so far.

How do I install CoinGlass API SKILL?

Run "/install coinglass-api-skills" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is CoinGlass API SKILL free?

Yes, CoinGlass API SKILL is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does CoinGlass API SKILL support?

CoinGlass API SKILL is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created CoinGlass API SKILL?

It is built and maintained by CoinGlass (@coinglass-official); the current version is v1.1.0.

💬 Comments