Skip to Content
HyperQuote is live on HyperEVM — Start trading →
LeagueActivity Feed

Activity Feed

The league activity feed provides a detailed view of recent fills for any participant address. It is available both through the HyperQuote UI and via the REST API, enabling programmatic access to fill history and league scoring data.

UI Detail Sheet

In the HyperQuote UI, clicking on any participant in the league leaderboard opens a detail sheet that shows:

  • Address and rank — The participant’s wallet address and current rank in the selected period.
  • League score — The computed league score with a breakdown of each component (volume, improvement, reliability, privacy).
  • Recent fills — A chronological list of the participant’s most recent settled trades, including:
    • Token pair and direction
    • Notional value (USD)
    • Price improvement (bps) vs. benchmark
    • Timestamp of settlement
    • Transaction hash (linked to block explorer)

The detail sheet updates in near-real-time as new fills are confirmed.

API Endpoint

The activity feed is accessible via the HyperQuote REST API:

GET /api/v1/league/activity

Query Parameters

ParameterTypeRequiredDescription
addressstringYesThe wallet address to query (hex, checksummed or lowercase)
periodstringNoRanking period: 7d, 30d, or all. Defaults to 30d
limitnumberNoMaximum number of fills to return. Defaults to 50, max 200
offsetnumberNoPagination offset. Defaults to 0

Example Request

curl "https://hyperquote.xyz/api/v1/league/activity?address=0x1234...abcd&period=7d&limit=20"

Response Format

{ "address": "0x1234...abcd", "period": "7d", "rank": 12, "score": 547320, "scoreBreakdown": { "filledNotional": 500000, "avgImprovementBps": 8.5, "reliabilityFactor": 1.055, "privacyFactor": 1.02 }, "fills": [ { "txHash": "0xabcd...1234", "timestamp": "2026-03-09T14:32:00Z", "pair": "HYPE/USDC", "side": "buy", "notionalUsd": 25000, "improvementBps": 12.3, "role": "maker", "private": false } ], "pagination": { "total": 45, "limit": 20, "offset": 0 } }

The scoreBreakdown object shows each factor that contributes to the league score, making it easy to understand what is driving a participant’s ranking.

Response Fields

FieldDescription
addressThe queried wallet address
periodThe ranking period used for the query
rankThe participant’s rank in the leaderboard for this period
scoreThe computed league score
scoreBreakdownDetailed breakdown of score components
fillsArray of recent fill objects
fills[].txHashOn-chain transaction hash of the settlement
fills[].timestampISO 8601 timestamp of the settlement block
fills[].pairToken pair (e.g., “HYPE/USDC”)
fills[].sideTrade direction from the queried address’s perspective
fills[].notionalUsdUSD notional value of the fill
fills[].improvementBpsPrice improvement vs. benchmark in basis points
fills[].roleWhether the address was the maker or taker in this fill
fills[].privateWhether the fill came from a private RFQ

Use Cases

Maker Performance Monitoring

Makers can query their own activity feed to track fill rates, average improvement, and reliability scores over time. This data can be fed into monitoring dashboards to optimize quoting strategies.

Taker Quote Quality Analysis

Takers can review their fill history to assess whether they are consistently selecting the best available quotes. A negative average improvement suggests the taker could benefit from using the venue comparison more actively.

Third-Party Analytics

The public API enables third-party analytics platforms to build leaderboards, performance dashboards, and competitive analysis tools on top of HyperQuote league data.

The activity feed API is rate-limited. See Technical FAQ for current rate limit details.

Last updated on