Fetches official Hyperliquid API documentation on-demand. Use when answering questions about Hyperliquid API endpoints, websockets, signing, order placement, info queries, exchange actions, rate limits, or any HL API implementation details. Triggers on Hyperliquid API questions.
Install
npx skillscat add cezar-r/hyperliquid-skills/hyperliquid-api-docs Install via the SkillsCat registry.
SKILL.md
Hyperliquid API Documentation Fetcher
This skill fetches the official Hyperliquid API documentation to ensure accurate, up-to-date answers.
URL Mapping
Based on the query topic, fetch the appropriate documentation:
Instructions
- Identify the topic(s) from the user's question
- Fetch only the relevant URL(s) using WebFetch - do NOT fetch all docs
- Extract the specific information needed to answer the question
- Cite the source when providing the answer
Examples
User asks about order types or placing orders:
- Fetch: Exchange endpoint URL
User asks about WebSocket subscriptions:
- Fetch: WebSocket subscriptions URL (and possibly general WebSocket URL if needed)
User asks about getting market data:
- Fetch: Info endpoint - perpetuals (for perps) or Info endpoint - spot (for spot)
User asks about authentication or signing:
- Fetch: Signing URL
Important
- Only fetch what's needed - don't fetch multiple docs unless the question spans topics
- If the question is ambiguous, start with the most likely doc and fetch more if needed
- Always prefer official documentation over assumptions