REST API for Hyperliquid blockchain data
99.9% uptime with sub-100ms response times
Rate limited and authenticated endpoints
Real-time data with WebSocket support
The Hyperliquid API provides programmatic access to blockchain data. All endpoints return JSON responses.
https://api.hyperevmscan.ioInclude your API key in the request header:
curl -H "X-API-Key: your_api_key_here" \
https://api.hyperevmscan.io/api/v1/blocks/latestFetch the latest block:
const response = await fetch('https://api.hyperevmscan.io/api/v1/blocks/latest')
const data = await response.json()
console.log(data){
"success": true,
"data": {
"number": 8234567,
"hash": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
"timestamp": 1704096000,
"transactions": 127,
"gasUsed": "20457812",
"validator": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"
}
}