Returns markets ranked by activity — pick the window (Documentation Index
Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt
Use this file to discover all available pages before exploring further.
24h or lifetime) and the metric (volume, traders, fills, fees).
Endpoint
Query parameters
| Param | Type | Default | Description |
|---|---|---|---|
window | string | "lifetime" | lifetime (all time) or 24h (rolling 24h) |
by | string | "volume" | One of volume, traders, fills, fees |
status | string | "all" | One of active, resolved, all |
limit | int | 100 | Max rows (cap 500) |
Response
| Field | Description |
|---|---|
unique_traders | Distinct wallets that filled either side |
unique_takers | Distinct takers (crossed the spread) |
unique_makers | Distinct makers (provided liquidity) |
volume_shares | Total shares matched (both sides combined) |
fees_total | Sum of all fees: base + builder + deployer |
Ranking modes
by=volume— total USDH notional. Default. The “biggest market” view.by=traders— distinct trader count. Best signal for “viral” markets even at low ticket size.by=fills— count of fills. Activity / churn measure.by=fees— total fees paid. The “highest-revenue market” leaderboard.
Use cases
- Homepage “trending markets” widget:
window=24h,by=volume,status=active,limit=20. - Largest-ever HIP-4 markets:
window=lifetime,by=volume. - Most-engaged markets:
by=tradersto surface markets where lots of distinct wallets play, not just one whale.
Examples
Notes
- The
24hwindow is a rolling aggregation, refreshed each minute. Numbers are exact at the moment of the last refresh. fees_totalandbuilder_fees_totalare equal whenever no deployer fee is being charged (current state on HIP-4 mainnet).- The maker/taker/trader counts are NOT additive — the same wallet can be a maker on some fills and a taker on others.