hyperliquid

Retrieve Hyperliquid market data and account activity via the public /info endpoint.

1|Updated May 16, 2026
One-click install
npx skills add https://github.com/devMoez/titan --skill hyperliquid-devmoez
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hyperliquid
Source: https://github.com/devMoez/titan/tree/main/optional-skills/blockchain/hyperliquid
Command: npx skills add https://github.com/devMoez/titan --skill hyperliquid-devmoez

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Hyperliquid traders and analysts often need reliable market snapshots and account activity (markets, candles, funding, order book, positions, fills, and orders) without manual browsing, so this Skill turns public Hyperliquid data into consistent, actionable outputs.

Core Features & Use Cases

  • Market discovery: List perp DEXs and available perp markets, plus top spots/pairs by liquidity.
  • Historical analytics: Pull candles and funding histories to understand price action and funding conditions over a defined window.
  • Live positioning & post-trade review: Inspect account state, spot balances, recent fills/orders, and generate a heuristic trade review that summarizes realized PnL net of fees along with market context.

Quick Start

Run the command below to get normalized JSON market data: python3 ~/.Titan/skills/blockchain/hyperliquid/scripts/hyperliquid_client.py markets --limit 15 --sort volume

Frequently Asked Questions about hyperliquid

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

FAQPage Schema
How do I fetch Hyperliquid market data for backtesting preparation?

You can retrieve Hyperliquid market data by running the Python client script to export candles and funding histories as normalized JSON. The tool queries the public /info endpoint via HTTP POST and outputs consistent market data for your defined analysis window.

Can I check my Hyperliquid account state and recent fills without an API key?

Yes, the tool is read-only and requires no API key or signing. It queries public Hyperliquid endpoints to inspect your address's state, spot balances, recent fills, and open orders, then summarizes them into a post-trade review with realized PnL.

How do I list available perpetual markets and top spot pairs on Hyperliquid?

You can discover perp DEXs and available perp markets by running the markets command, which sorts pairs by liquidity or volume. The script returns normalized JSON data directly from the public Hyperliquid API for analysis.

Does this Hyperliquid data fetcher require any external Python libraries?

No, the tool relies entirely on the Python standard library modules. It performs HTTP POST requests to the public Hyperliquid /info endpoint without needing any external dependencies or API authentication.

What's the best way to generate a post-trade review from Hyperliquid order history?

The tool summarizes recent fills and orders into a heuristic trade review that calculates realized PnL net of fees. It automatically pulls your account activity and market context from Hyperliquid to produce an actionable post-trade analysis output.

Are there limitations to querying Hyperliquid order book data with this tool?

The tool is strictly read-only and limited to public Hyperliquid /info endpoint data. It cannot execute trades, place orders, or access private account functions requiring authentication signing.