Quickstart
Preview Hyperliquid fills through the market activity feed. Start with BTC fills, then swap in any supported coin, DEX, or user address from the endpoint catalog below.
1curl 'https://token-api.service.pinax.network/v1/hyperliquid/markets/activity?coin=BTC&limit=10&page=1' \2 -H 'Authorization: Bearer <YOUR_JWT>' \3 -H 'Accept: application/json'
Supported DEXs
FREEPREVIEWReturns the list of perpetuals DEXs and spot, each with 24h activity stats (volume, trade count, unique users, asset count). Hyperliquid hosts a core perpetuals venue (dex=perps) alongside builder-deployed perpetuals DEXs that each list their own asset universe — xyz (commodities and macro indices), cash (tokenized equities), km, and others.
Use this endpoint to discover valid dex filter values for venue-scoped queries on /markets, /markets/activity, /markets/liquidations, /users, and /users/positions.
For platform-wide totals across all DEXs over arbitrary intervals, use /v1/hyperliquid/platform.
Public — no auth required.
Response
200 OK{ "data": [ { "dex": "perps", "assets": 192, "volume_24h": 3587190584.83, "trades_24h": 1780780, "unique_users_24h": 7663 }, { "dex": "xyz", "assets": 48, "volume_24h": 412857192.13, "trades_24h": 245118, "unique_users_24h": 1842 }, { "dex": "spot", "assets": 275, "volume_24h": 89724108.55, "trades_24h": 154297, "unique_users_24h": 943 } ] }