← 返回 Skills 市场
coinglass-official

CoinGlass API SKILL

作者 CoinGlass · GitHub ↗ · v1.1.0 · MIT-0
cross-platform ⚠ suspicious
109
总下载
1
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install coinglass-api-skills
功能描述
CoinGlass API skill. Routes to the appropriate sub-skill based on user intent. Covers futures, ETF, options, spots, on-chain, indicators, account, and other...
使用说明 (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.

安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install coinglass-api-skills
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /coinglass-api-skills 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug coinglass-api-skills
版本 1.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 4
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 109 次。

如何安装 CoinGlass API SKILL?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install coinglass-api-skills」即可一键安装,无需额外配置。

CoinGlass API SKILL 是免费的吗?

是的,CoinGlass API SKILL 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

CoinGlass API SKILL 支持哪些平台?

CoinGlass API SKILL 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 CoinGlass API SKILL?

由 CoinGlass(@coinglass-official)开发并维护,当前版本 v1.1.0。

💬 留言讨论