TradePortfolio

DEX Detail

Dev

GET /hip3-analytics/dex-detail


Single-DEX bundle for the specified HIP-3 builder DEX — summary stats, per-symbol breakdown, timeseries, builder fee series, and priority gas series. Use it to build a dedicated page for one DEX showing all its analytics without making multiple calls.

Authentication

Requires Dev tier or higher.

Parameters

Query parameters

NameTypeRequiredDescription
dex_namestringHIP-3 DEX identifier, e.g. hyperliquid_dex.
periodstring4h, 1d, 1w, 1m, or all. Defaults to 1d.
top_nintNumber of top symbols to include. Defaults to 10, max 20.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  "https://api.loris.tools/hip3-analytics/dex-detail?dex_name=hyperliquid_dex&period=1d"

Example response

json
{
  "success": true,
  "period": "1d",
  "dex_name": "hyperliquid_dex",
  "summary": {
    "volume_usd": 210000000,
    "trades": 54200,
    "builder_fees_usd": 105000,
    "unique_traders": 3820
  },
  "by_symbol": [
    { "symbol": "BTC", "volume_usd": 98000000, "trades": 18200 },
    { "symbol": "ETH", "volume_usd": 42000000, "trades": 12400 }
  ],
  "timeseries": [],
  "builder_timeseries": [],
  "priority_gas_timeseries": [],
  "symbol_breakdown": {}
}

Errors

  • 400 Missing required parameter dex_name.

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

Related