TradePortfolio

By DEX

Dev

GET /hip3-analytics/by-dex


Granular HIP-3 stats broken down by builder DEX — volume, trade count, builder fees, and unique traders per venue. This data is also bundled in the /dashboard endpoint; use this endpoint when you need just the per-DEX breakdown without the rest of the dashboard payload.

Authentication

Requires Dev tier or higher. Free tier does not have access (returns 403).

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/hip3-analytics/by-dex?period=1d"

Example response

json
{
  "success": true,
  "period": "1d",
  "data": [
    {
      "dex_name": "hyperliquid_dex",
      "volume_usd": 210000000,
      "trades": 54200,
      "builder_fees_usd": 105000,
      "unique_traders": 3820
    },
    {
      "dex_name": "another_dex",
      "volume_usd": 84000000,
      "trades": 21400,
      "builder_fees_usd": 42000,
      "unique_traders": 1240
    }
  ]
}

Related