RPC Endpoints & API
Connect to HyperEVM via standard JSON-RPC or interact with HyperCore via the native REST and WebSocket APIs.
HyperEVM RPC (JSON-RPC)
Standard Ethereum JSON-RPC over HTTP. WebSocket is not available on the official endpoint — use community providers like HypeRPC if you need WebSocket access.
Mainnet EVM RPC
https://rpc.hyperliquid.xyz/evmTestnet EVM RPC
https://rpc.hyperliquid-testnet.xyz/evmHyperCore Native API (REST)
POST requests with Content-Type: application/json. Used for querying perpetuals, spot markets, user positions, and funding data.
Mainnet Info API
https://api.hyperliquid.xyz/infoTestnet Info API
https://api.hyperliquid-testnet.xyz/infoPOST https://api.hyperliquid.xyz/info
Content-Type: application/json
{
"type": "allMids"
}WebSocket (Real-time Feed)
Subscribe to live order book, trade, and position data.
{
"method": "subscribe",
"subscription": { "type": "allMids" }
}Rate Limits
| Endpoint | Limit |
|---|---|
| Info API (REST) | 20 req / second |
| Exchange API (REST) | 120 req / minute |
| WebSocket messages | 1,000 / minute |
| EVM RPC (JSON-RPC) | 50 req / second |
For higher throughput, consider community providers such as HypeRPC or Hydromancer API.
Common Info API Request Types
allMidsAll current mid prices for perpetuals and spot markets.
metaPerpetuals metadata: asset names, decimals, leverage.
metaAndAssetCtxsMetadata + live mark prices, funding rates, open interest.
clearinghouseStateUser account: open positions, leverage, liquidation price, margin.
fundingHistoryHistorical funding rates for a specific asset.
predictedFundingsPredicted funding rates across venues (Binance, Bybit, Hyperliquid).
perpDeployAuctionStatusCurrent Dutch auction timeline and gas price for HIP-3 deployment.
perpDexsList all perpetual DEXs (native + builder-deployed via HIP-3).