hypernode uses API keys for all access. One key works across both the WebSocket stream and REST API.Documentation Index
Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt
Use this file to discover all available pages before exploring further.
Getting a key
- Sign up at polynode.dev to create an account
- Your
pn_live_API key is generated automatically - The same key works on both polynode (Polymarket data) and hypernode (HyperLiquid data)
Authentication methods
WebSocket
Pass the key as a query parameter:REST API
Pass the key as an HTTP header:Exchange API
Same header for trading endpoints:Tiers
| Tier | Price | WS Connections | Subscriptions | REST | Exchange |
|---|---|---|---|---|---|
| Free | $0 | 1 | 1 | Yes | Yes |
| Starter | $50/mo | 5 | 50 | Yes | Yes |
| Growth | $200/mo | 10 | 500 | Yes | Yes |
| Pro | Custom | 150 | 5,000 | Yes | Yes |
| Enterprise | $750/mo | 500 | 100,000 | Yes | Yes |
What counts as a connection
Each WebSocket connection is one connection. Openingwss://hyper.polynode.dev/ws?key=YOUR_KEY uses one connection slot.
REST API requests do not count against your connection limit.
What counts as a subscription
Eachsubscribe message creates one subscription. Multiple subscriptions on the same connection each count separately.
Error responses
WebSocket handshake errors
| Status | Message | Meaning |
|---|---|---|
| 401 | missing API key — use ?key=pn_live_... | No key in URL |
| 401 | invalid API key | Key not found |
| 403 | API key is disabled | Key exists but deactivated |
| 429 | connection limit reached for this key | Upgrade tier or close connections |
Subscription errors
Delivered as JSON messages after connection:REST API rate limits
REST endpoints do not have per-key rate limits. However, the underlying data sources (HyperLiquid API via FireProx) have their own limits. If you hit a 429 response on a REST endpoint, back off for a few seconds. The L4 order book endpoints (/v2/l4book, /v2/l4summary) are served from a local cache and have no rate limit.
Key format
All keys follow the formatpn_live_ followed by a random string:
Security
- Keys authenticate your identity but do not grant access to any wallet or funds
- To trade via the exchange API, you must separately register a wallet using
POST /exchange/register - Keep your API key private. If compromised, contact support for a new key
- Never embed keys in client-side JavaScript (use a backend proxy instead)