TradePortfolio

Builder Analytics

Dev

GET /builder-analytics/dashboard


Hyperliquid builder order-flow analytics dashboard — volume, fees, builder rankings, and period-over-period trends, all cached in Redis. Returns a comprehensive payload covering how different Hyperliquid builders are performing. Use it to build a builder analytics leaderboard, track referral fee flows, or analyze Hyperliquid's ecosystem health.

Authentication

Requires Dev tier or higher.

Parameters

Query parameters

NameTypeRequiredDescription
periodstring4h, 1d, 1w, 1m, or all. Defaults to 1d.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  "https://api.loris.tools/builder-analytics/dashboard?period=1d"

Example response

json
{
  "success": true,
  "period": "1d",
  "total_volume_usd": 1840000000,
  "total_builder_fees_usd": 920000,
  "total_trades": 482000,
  "by_builder": [
    {
      "builder": "0xBuilder1...",
      "volume_usd": 420000000,
      "fees_usd": 210000,
      "trades": 108000,
      "rank": 1
    },
    {
      "builder": "0xBuilder2...",
      "volume_usd": 310000000,
      "fees_usd": 155000,
      "trades": 82000,
      "rank": 2
    }
  ],
  "timeseries": [
    {
      "timestamp": "2026-06-08T00:00:00Z",
      "volume_usd": 1840000000,
      "fees_usd": 920000
    }
  ]
}

Errors

  • 400 Invalid period value.

For authentication errors (401) and rate limit responses (429), see Errors.

Related