Skip to Content
HyperQuote is live on HyperEVM — Start trading →
API ReferenceLeague Endpoints

League Endpoints

The League API provides access to the Liquidity League competitive ranking system. Unlike the points-based leaderboard, the league ranks participants by a composite performance score computed from volume, price improvement, and reliability.

Get League Standings

GET /api/v1/league

Returns ranked league entries sourced from fill records. Performance metrics only — no badge boosts or points are applied to league scores.

Query Parameters

ParameterTypeDefaultDescription
rolestring"maker""maker" or "taker"
periodstring"7d""7d", "30d", or "all"
minUsdnumber0Minimum notional USD filter
searchstringAddress search (minimum 4 characters)

Response

{ "role": "maker", "period": "7d", "minUsd": 0, "entries": [ { "rank": 1, "address": "0xabcd1234...", "score": 8542.50, "rawScore": 8542.50, "filledNotional": 2500000.00, "avgImprovementBps": 150, "privateShare": 0.35, "fills": 85, "reliability": 1.1, "cancelRate": 0.0, "boostMultiplier": 1.0, "points": 0 }, { "rank": 2, "address": "0xefgh5678...", "score": 6230.00, "rawScore": 6230.00, "filledNotional": 1800000.00, "avgImprovementBps": 120, "privateShare": 0.10, "fills": 62, "reliability": 1.05, "cancelRate": 0.02, "boostMultiplier": 1.0, "points": 0 } ], "totalParticipants": 156, "hasMore": false, "kpi": { "totalNotional": 8500000.00, "avgImprovementBps": 135, "privateVolumePct": 22.5, "fillCount": 342 } }

Entry Fields

FieldTypeDescription
ranknumberPosition in the league
addressstringWallet address
scorenumberComposite league score (rounded to 2 decimals)
filledNotionalnumberTotal filled notional USD
avgImprovementBpsnumberAverage price improvement (basis points)
privateSharenumberFraction of fills that were private (0-1)
fillsnumberNumber of filled trades
reliabilitynumber or nullReliability factor (makers only, 0.5-1.1)
cancelRatenumber or nullCancel/kill rate (makers only)

KPI Fields

The kpi object contains aggregate metrics across all participants in the selected period:

FieldTypeDescription
totalNotionalnumberTotal USD volume across all fills
avgImprovementBpsnumberAverage improvement for fills with benchmark data
privateVolumePctnumberPercentage of fills that were private
fillCountnumberTotal number of fills

Get League Activity

GET /api/v1/league/activity

Returns recent fills for a specific address, used for the league detail drawer.

Query Parameters

ParameterTypeRequiredDescription
addressstringYesWallet address (0x + 40 hex, lowercased)
rolestringNo"maker" (default) or "taker"
periodstringNo"7d" (default), "30d", or "all"
limitnumberNoResults per page (default: 10, max: 50)

Response

{ "address": "0xabcd1234...", "role": "maker", "period": "7d", "fills": [ { "txHash": "0xabc123...", "filledAt": "2026-03-10T16:00:12.000Z", "counterparty": "0x70997970...", "tokenIn": "0xb88339cb...", "tokenOut": "0x55555555...", "amountIn": "1000000000", "amountOut": "50000000000000000000", "notionalUsd": 1000.0, "isPrivate": false, "improvementBps": 150, "benchmarkAvailable": true } ] }

League scores and points use different formulas. The league emphasizes recent competitive performance, while points reward long-term cumulative contribution. See League Overview for details on the scoring model.

Scoring Factors

Maker Scoring

Maker league score is computed from:

  • Filled notional volume — Total USD value of trades
  • Price improvement — How much better the fill was vs. baseline
  • Reliability factor — Penalizes frequent cancellations (clamp(1.1 - cancelRate * 1.5, 0.5, 1.1))
  • Privacy contribution — Bonus for private RFQ routing

Taker Scoring

Taker league score uses a similar formula but without the reliability factor.

Last updated on