⚙️Rest API

Everything you need to get started with our API

The HyperTracker API provides access to real-time and historical data from the Hyperliquid ecosystem.

Developers and analysts can explore wallets, positions, leaderboards, referrals, and HYPE token metrics through a unified data interface. Standard requests return 500 results by default, keeping your data flow manageable.

Base Endpoint

https://ht-api.coinmarketman.com

All requests use HTTPS and require the header:

Authorization: Bearer <token>

How to Connect

curl --location 'https://ht-api.coinmarketman.com/api/external/segments' \
--header 'Authorization: Bearer YOUR_API_TOKEN'

Replace YOUR_API_TOKEN with the key generated in your API Dashboard. Once your token is added, you can run the example requests directly from your terminal or preferred environment to confirm authentication and connection to the API.

Authentification

Every request must include a valid JWT Bearer Token in the header.

Authorization: Bearer eyJhbGciOiJ...

Invalid or missing tokens return a 401 Unauthorized error.

Response Format

All responses are returned in JSON.

Errors follow the same structure:

Last updated