HomeยทValidation Toolsยทhyperliquid
hyperliquid logo
MAINNET
By LavenderFive

Learn how to interact with hyperliquid nodes using different endpoint types.

#Available Endpoints

ServiceEndpoint
REST APINot available
RPCNot available
gRPCNot available
WebSocketNot available
JSON-RPChttps://hyperliquid.lavenderfive.com:443/evm
WS-JSON-RPCwss://hyperliquid.lavenderfive.com:443/evm/ws
โ“˜ย ย ย  Some endpoints may require an API key for access. You can get one by signing up with the yellow "API KEY" button on this page or visit lavenderfive.com/api.

#๐ŸŒ Usage Examples

#JSON-RPC Examples

curl -X POST "https://hyperliquid.lavenderfive.com:443/evm" \
  -H "Content-Type: application/json" \
  -H "x-api-key: your-api-key-uuid" \
  -d '{
    "jsonrpc": "2.0",
    "method": "eth_blockNumber",
    "params": [],
    "id": 1
  }'

#WebSocket JSON-RPC Examples

const ws = new WebSocket('wss://hyperliquid.lavenderfive.com:443/evm/ws');
// Add API key to connection
ws.onopen = () => {
  ws.send(JSON.stringify({
    type: 'auth',
    api_key: 'your-api-key-uuid'
  }));
};

#๐Ÿ”‘ Common Response Codes

CodeDescription
200Successful request
400Bad request / Invalid parameters
401Unauthorized / Invalid API key
404Resource not found
429Too many requests
500Internal server error
โš ย ย ย  Rate limits may apply to endpoints. Please use for testing and get a trial API-key to try out a fully unlimited api for 14 days.
Chain ID:
Latest Version:
Public endpoints
Json-RPC
hyperliquid.lavenderfive.com:443/evm
Json-RPC (websocket)
wss://hyperliquid.lavenderfive.com:443/evm/ws
Lavender Five
ยฉ 2022 Lavender.Five Nodes. All rights reserved.
Terms of Service.Privacy policy.Cookies policy.