Hyperliquid RPC Endpoint
Fast, flat-rate Hyperliquid RPC node provider — free tier, no KYC, HTTP & WebSocket.
HyperEVM is not a rollup — it runs natively inside Hyperliquid's own Layer 1, sharing state with HyperCore, the high-performance trading engine. Fees, staking and governance all use HYPE, and the network settles in well under a second.
hyperliquidAbout Hyperliquid
Hyperliquid began as an on-chain perpetuals exchange running its own HyperBFT-based Layer 1 (HyperCore). HyperEVM added Ethereum-compatible smart contracts to that same chain in February 2025, so EVM contracts and native HyperCore state can call each other directly instead of going through a bridge.
HYPE moves between the two execution environments by sending to a reserved address (0x2222222222222222222222222222222222222222), and the network is secured by a small active validator set with delegation. From an RPC point of view the surface is standard eth_*, with unusually short block intervals for a chain this active.
Common Use Cases on Hyperliquid
- Perpetuals and spot trading
- DeFi protocols
- On-chain market data
- Prediction markets
HTTP Endpoint
https://rpc.swiftnodes.io/rpc/hyperliquid?key=YOUR_API_KEYWebSocket Endpoint
wss://rpc.swiftnodes.io/ws/hyperliquid?key=YOUR_API_KEYQuick Start: Connect to Hyperliquid
cURL
curl -X POST https://rpc.swiftnodes.io/rpc/hyperliquid?key=YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'ethers.js
import { JsonRpcProvider } from "ethers";
const provider = new JsonRpcProvider(
"https://rpc.swiftnodes.io/rpc/hyperliquid?key=YOUR_API_KEY"
);
const blockNumber = await provider.getBlockNumber();
console.log("Hyperliquid block:", blockNumber);viem
import { createPublicClient, http } from "viem";
const client = createPublicClient({
transport: http("https://rpc.swiftnodes.io/rpc/hyperliquid?key=YOUR_API_KEY"),
});
const blockNumber = await client.getBlockNumber();web3.py
from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://rpc.swiftnodes.io/rpc/hyperliquid?key=YOUR_API_KEY"))
print("Hyperliquid block:", w3.eth.block_number)Add Hyperliquid to MetaMask
https://rpc.swiftnodes.io/rpc/hyperliquid?key=YOUR_API_KEYwss://rpc.swiftnodes.io/ws/hyperliquid?key=YOUR_API_KEYFeatures of SwiftNodes for Hyperliquid
- Multiple load-balanced upstream nodes for high availability
- Health-checked every 60 seconds with automatic failover
- Free tier available — no credit card or KYC required
- Flat-rate monthly pricing with no per-request fees
- HTTP and WebSocket support
- One API key works across all 75+ supported chains, including Hyperliquid
Rate Limits
| Plan | Price | HTTP req/s | WS msg/s |
|---|---|---|---|
| Free | $0/mo | 2 | 1 |
| Starter | $49/mo | 50 | 25 |
| Growth | $89/mo | 150 | 75 |
| Scale | $149/mo | 300 | 150 |
| Pro | $249/mo | 500 | 250 |
Ready to start building on Hyperliquid? Connect your wallet and get a free API key in 30 seconds. No email or KYC required.