Omni Terminal ranks public Hyperliquid traders by PnL, position size, wallet size, or liqu
Omni Terminal ranks public Hyperliquid traders by PnL, position size, wallet size, or liquidation proximity for wallet and positioning research.
3000 (raw units)
price
15
calls / 30d
3
unique payers
2026-09-05
updated
Provider
omniterminal.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:84532",
"payTo": "0x733f40A4FA0cd13d59aBADE04b9eD2e9acAc6457",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "3000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x733f40A4FA0cd13d59aBADE04b9eD2e9acAc6457",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"symbol": "BTC"
},
"queryParams": {
"limit": 10,
"rank": "best",
"scope": "current"
},
"type": "http"
},
"output": {
"example": {
"data_as_of": 1784116800000,
"freshness": {
"age_seconds": 0,
"data_as_of": "2026-07-15T12:00:00.000Z",
"max_age_seconds": 300,
"status": "fresh"
},
"generated_at": "2026-07-15T12:00:00.000Z",
"product_version": "v1",
"rank": "best",
"rows": [
{
"address": "0x45d26f28196d226497130c4bac709d808fed4029",
"total_pnl": 3635032.76,
"total_size": -103,
"total_value": 6682743
}
],
"schema": "hyperliquid_trader_leaderboard.v1",
"scope": "current",
"service": "omni.hyperliquid_trader_leaderboard",
"symbol": "BTC",
"usage": {
"item_count": 1,
"item_limit": 10
}
},
"type": "json"
}
},
"routeTemplate": "/api/x402/v1/traders/:symbol",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"symbol": {
"description": "Allowlisted market symbol, for example BTC",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
},
"queryParams": {
"properties": {
"limit": {
"default": 10,
"maximum": 20,
"minimum": 1,
"type": "integer"
},
"rank": {
"default": "best",
"enum": [
"best",
"worst",
"largest",
"largest_size",
"wallet_size",
"risk",
"closest"
],
"type": "string"
},
"scope": {
"default": "current",
"enum": [
"current",
"aggregate"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"builder-code": {
"info": {
"a": "bc_wttcxbb6"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://omniterminal.app/api/x402/v1/traders/:symbol" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://omniterminal.app/api/x402/v1/traders/:symbol");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://omniterminal.app/api/x402/v1/traders/:symbol")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1454.json, and this resource appears in /discovery/resources and /discovery/search.