← 返回 Skills 市场
hyperxtrade

HyperX Data API

作者 hyperxtrade · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
265
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install hyperx-data-api
功能描述
Use when building apps with HyperX Data API — Hyperliquid wallet analytics, market data, Twitter/news feeds. Triggers on: "HyperX API", "data-api.hyperx.trad...
使用说明 (SKILL.md)

HyperX Data API

Base URL: https://data-api.hyperx.trade

Hyperliquid on-chain analytics API — wallet PnL, market positions, crypto Twitter, news feeds.

Authentication

Method Header / Field How to get
API Token X-API-Key: \x3Ctoken> Login at hyperx.trade → Settings → API Token
Cookie HyperX session cookie Login at hyperx.trade

To get an API key: visit hyperx.trade/hyperliquid/settings, log in with your account, and generate a token in the API Token section. Free tier is available.

Twitter & News endpoints are free, no auth required.

Rate Limits

Tier Budget / min Monthly Price
Free 30 10,000 $0
Pro 300 500,000 $99/mo
Ultra 1,200 5,000,000 $399/mo

Each endpoint has a weight (1–5). Each call costs weight from your budget.

Endpoints

Wallet Analysis

Method Path Weight Auth Description
POST /wallet_analysis/{address} 5 optional Full wallet PnL analysis with positions, trades, risk metrics
GET /wallet_metrics/{address} 2 none Pre-calculated wallet performance metrics (win rate, ROI, PnL)
POST /wallet_metrics_query 2 optional Batch query wallet metrics with filters and sorting
GET /fills/{address} 5 optional Trading history (fills) for a wallet address
WS /fills/ws 5/msg optional Real-time fills stream. Addr limits: free=1, pro=50, ultra=300

Market Analysis

All weight 1, no auth required.

Method Path Description
GET /market/coins All tradable coins with metadata
GET /market/snapshots Market overview snapshots
GET /market/overview Aggregated market overview
GET /market/aggregate-positions Cross-asset aggregated position data
GET /market/top-positions/{asset} Top positions for a specific asset
GET /market/leverage-distribution/{asset} Leverage distribution
GET /market/pnl-distribution/{asset} PnL distribution
GET /market/concentration/{asset} Position concentration analysis
GET /market/whale-changes/{asset} Whale position changes tracking
GET /market/entry-price/{asset} Entry price distribution
GET /market/high-leverage-whales/{asset} High-leverage whale positions
GET /market/top-losers/{asset} Top losing positions
GET /market/top-winners/{asset} Top winning positions
GET /market/liquidation-heatmap/{asset} Liquidation price heatmap
GET /market/liquidation-positions/{asset} Positions near liquidation

Time Distribution

All weight 1, auth optional.

Method Path Description
GET /wallet/time-distribution/{address}/hourly Hourly trading activity
GET /wallet/time-distribution/{address}/day-of-week Day-of-week patterns
GET /wallet/time-distribution/{address}/heatmap Full activity heatmap (hour × day)
GET /wallet/time-distribution/{address}/daily Daily trading volume

Twitter (FREE)

All weight 1, no auth required.

Method Path Description
GET /twitter Twitter feed with filtering
GET /twitter/authors Active authors ranked by tweet count
WS /twitter/ws Real-time Twitter feed stream

GET /twitter params:

Param Type Description
screen_name string Filter by author(s), comma-separated
min_followers int Minimum follower count
user_tags string Filter by tags: trader, kol, founder, featured
tweet_type string reply, quote, retweet
keyword string Content keyword search
hours int Time range in hours (1–168, default 24)
page / page_size int Pagination (max 100/page)

Response fields:

{
  "id": 12345,
  "sfe_id": "a2552b68aad7c9fa",
  "tweet_type": "reply",
  "tweet_id": "2032041519130296698",
  "tweet_time": "2026-03-12T10:30:26",
  "content": "tweet text...",
  "screen_name": "elonmusk",
  "display_name": "Elon Musk",
  "avatar_url": "https://pbs.twimg.com/...",
  "follower_count": 694593,
  "user_tags": ["founder", "featured"],
  "tweet_interaction_type": "reply",
  "media": [{"t": "image", "u": "https://..."}],
  "source_tweet": {
    "tweet_id": "...",
    "content": "original tweet...",
    "screen_name": "...",
    "follower_count": 24977,
    "media": []
  }
}

WS /twitter/ws params: screen_names, min_followers, user_tags (same filters as REST). Messages are JSON objects with same fields as REST response items.

News (FREE)

All weight 1, no auth required.

Method Path Description
GET /news Trading news from multiple sources
GET /news/channels Available news channel categories

BTC Mining

Method Path Weight Auth Description
GET /btc-mining/shutdown-prices 1 none BTC mining shutdown prices by miner model

Quick Start

import requests

BASE = "https://data-api.hyperx.trade"

# No auth needed for Twitter
tweets = requests.get(f"{BASE}/twitter", params={"hours": 1, "min_followers": 10000}).json()
for t in tweets["items"]:
    print(f"@{t['screen_name']}: {t['content']}")

# With API key for wallet analysis (get yours at hyperx.trade/hyperliquid/settings)
headers = {"X-API-Key": "your-api-key"}
pnl = requests.post(f"{BASE}/wallet_analysis/0x1234...", headers=headers).json()
# WebSocket — real-time Twitter stream
import asyncio, websockets, json

async def stream():
    async with websockets.connect(f"wss://data-api.hyperx.trade/twitter/ws?min_followers=5000") as ws:
        async for msg in ws:
            tweet = json.loads(msg)
            print(f"@{tweet['screen_name']}: {tweet.get('content', '')}")

asyncio.run(stream())

API Catalog Endpoint

GET /api-catalog — returns the full structured catalog as JSON with dynamic weights.

安全使用建议
This appears to be a straightforward API reference. Before installing or using it, verify the domain and that 'hyperx.trade' is the official service you expect. Treat any API key as sensitive: only provide it when necessary, prefer scoped/limited keys, and avoid pasting keys into untrusted contexts. Note that wallet-analysis endpoints return potentially sensitive on-chain analytics — only query addresses you are authorized to analyze. Monitor rate limits and potential costs if you upgrade beyond the free tier.
功能分析
Type: OpenClaw Skill Name: hyperx-data-api Version: 1.0.1 The skill bundle provides documentation and integration instructions for the HyperX Data API (data-api.hyperx.trade), which offers Hyperliquid wallet analytics, market data, and Twitter/news feeds. The content consists of standard API endpoint descriptions, authentication requirements, and benign Python code examples using common libraries like requests and websockets. No malicious patterns, data exfiltration, or prompt injection attempts were found.
能力评估
Purpose & Capability
Name and description match the SKILL.md content: this is API documentation for HyperX Data API. There are no unrelated credential or binary requirements and nothing in the manifest implies extra capabilities beyond calling the documented endpoints.
Instruction Scope
SKILL.md contains endpoint, auth, and usage documentation only. It does not instruct the agent to read local files, access unrelated environment variables, or transmit data to unexpected endpoints; instructions stay within the API documentation scope.
Install Mechanism
There is no install spec and no code files — the skill is instruction-only, so nothing is written to disk or installed at runtime.
Credentials
The skill declares no required environment variables or credentials. The documentation describes an optional X-API-Key available from the HyperX site, which is proportionate to the API's documented auth model.
Persistence & Privilege
The skill is not always-enabled and does not request special persistence or modification of other skills/config. Default autonomous invocation is allowed (platform default) and is not by itself a red flag here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install hyperx-data-api
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /hyperx-data-api 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Fix: API Token获取方式改为引导用户到hyperx.trade Settings页面申请
v1.0.0
Initial release
元数据
Slug hyperx-data-api
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

HyperX Data API 是什么?

Use when building apps with HyperX Data API — Hyperliquid wallet analytics, market data, Twitter/news feeds. Triggers on: "HyperX API", "data-api.hyperx.trad... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 265 次。

如何安装 HyperX Data API?

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

HyperX Data API 是免费的吗?

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

HyperX Data API 支持哪些平台?

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

谁开发了 HyperX Data API?

由 hyperxtrade(@hyperxtrade)开发并维护,当前版本 v1.0.1。

💬 留言讨论