API Documentation

REST API for Hyperliquid blockchain data

Fast & Reliable

99.9% uptime with sub-100ms response times

Secure

Rate limited and authenticated endpoints

Always Available

Real-time data with WebSocket support

Getting Started

The Hyperliquid API provides programmatic access to blockchain data. All endpoints return JSON responses.

Base URL

https://api.hyperevmscan.io

Authentication

Include your API key in the request header:

curl -H "X-API-Key: your_api_key_here" \
  https://api.hyperevmscan.io/api/v1/blocks/latest

Example Request

Fetch the latest block:

const response = await fetch('https://api.hyperevmscan.io/api/v1/blocks/latest')
const data = await response.json()
console.log(data)

Example Response

{
  "success": true,
  "data": {
    "number": 8234567,
    "hash": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890",
    "timestamp": 1704096000,
    "transactions": 127,
    "gasUsed": "20457812",
    "validator": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"
  }
}

Rate Limits

Free Tier
100 requests/minute
Pro Tier
1,000 requests/minute