hyperliquid-reader

Reads Hyperliquid perp and spot market data via the public info API through opencli.

Updated Aug 15, 2026
One-click install
npx skills add https://github.com/qqlcx5/skills-hub --skill hyperliquid-reader-qqlcx5
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hyperliquid-reader
Source: https://github.com/qqlcx5/skills-hub/tree/main/skills/hyperliquid-reader
Command: npx skills add https://github.com/qqlcx5/skills-hub --skill hyperliquid-reader-qqlcx5

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @jackwener/opencli, and includes references (resource) components.

What problem does it solve? Getting Hyperliquid perpetual and spot market data normally requires writing custom API clients or manually browsing the exchange UI. This Skill gives an AI agent direct read-only access to Hyperliquid's public info API through opencli, returning normalized tables of prices, funding rates, open interest, order books, and candles with a single command. ## Core Features & Use Cases - Perp and spot market tables: Retrieve mark/oracle/mid prices, 24h change, hourly funding plus annualized APR, open interest, and volume for every perpetual, or price, volume, and market cap for spot pairs. - Order book, candles, and funding history: Fetch L2 order book snapshots with spread, OHLCV candles across 14 intervals, and historical hourly funding per coin. - Cross-venue funding arbitrage screen: Compare predicted funding APRs across Hyperliquid, Binance, and Bybit with annualized spreads to surface the widest dislocations. - Use Case: Ask for the funding rate on BTC perp and receive mark price, 24h change, funding APR, and open interest in one normalized row, with no API key, wallet, or login required. ## Quick Start Ask the agent to show the current funding rate, open interest, and mark price for the BTC perpetual on Hyperliquid.

Frequently Asked Questions about hyperliquid-reader

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check Hyperliquid funding rates for BTC?

Run opencli hyperliquid markets --coin BTC to get the hourly funding rate and annualized APR alongside mark price and open interest. For historical rates, use opencli hyperliquid funding-history --coin BTC with an --hours lookback window.

How to compare funding rates between Hyperliquid and Binance?

Use opencli hyperliquid funding-compare, which annualizes each venue's predicted funding with its own interval and reports hlVsBinancePct and hlVsBybitPct spreads. The default sort surfaces the widest dislocations first as an arbitrage screen.

Does Hyperliquid market data require an API key or wallet?

No. Hyperliquid's info endpoints are fully public, so reading markets, order books, candles, and funding requires no API key, wallet, or login. The skill is read-only and never touches account or order endpoints.

Can this skill place trades on Hyperliquid?

No. The skill is strictly read-only market data and exposes no write endpoints. It cannot read accounts, place, modify, or cancel orders, or move funds, since order placement requires wallet-signed actions on a separate endpoint the plugin never calls.

Why does opencli report Unknown command: hyperliquid?

The hyperliquid adapter is a separate plugin, not built into opencli. Install it with opencli plugin install github:himself65/finance-skills/hyperliquid, then verify with opencli hyperliquid markets --coin BTC.

What candle intervals does Hyperliquid support?

The candles command accepts 1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 8h, 12h, 1d, 3d, 1w, and 1M intervals. It returns the most recent candles up to a --limit of 5000, defaulting to 100 hourly candles.