Access Hyperliquid DEX market data via simple REST API. Prices, orderbooks, candles, funding rates — no direct integration needed. Free tier requires no API key.
All endpoints return JSON. Free tier: 100 req/day, no auth. Paid: Bearer token for unlimited.
Get started in under 60 seconds. No API key needed for free tier.
# Get all perpetual futures prices
curl https://hyperliquid-api.vercel.app/api/prices
# Get BTC price
curl https://hyperliquid-api.vercel.app/api/price/BTC
# Get ETH orderbook
curl https://hyperliquid-api.vercel.app/api/book/ETH
# Get BTC hourly candles (last 24h)
curl "https://hyperliquid-api.vercel.app/api/candles/BTC?interval=1h"
# With API key for unlimited access
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://hyperliquid-api.vercel.app/api/prices
Try a real API call right now — no setup required:
Start free. Scale with USDC on Base — no card, no KYC.
No API key needed. Just call the endpoint.
= 500 API calls. Top up on Base chain anytime.
The Hyperliquid native API requires POST requests with custom JSON bodies. Our wrapper gives you simple GET endpoints.