TradePortfolio

OI Trends (Total)

Dev

GET /hip3-analytics/oi-trends/total


Estimated HIP-3 open interest derived from fill data — all markets combined as a daily time series, with a per-DEX breakdown. Use it to chart overall HIP-3 OI growth, see which DEXes are driving positioning, or track how HIP-3 market depth is evolving over time.

Authentication

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

Parameters

Query parameters

NameTypeRequiredDescription
periodstring1w, 1m, or all. Defaults to all.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  "https://api.loris.tools/hip3-analytics/oi-trends/total?period=1m"

Example response

json
{
  "success": true,
  "period": "1m",
  "data": [
    { "day": "2026-05-01", "oi_usd": 182000000, "oi_contracts": 2420 },
    { "day": "2026-05-02", "oi_usd": 194000000, "oi_contracts": 2580 },
    { "day": "2026-05-03", "oi_usd": 201000000, "oi_contracts": 2680 }
  ],
  "by_dex": {
    "hyperliquid_dex": [
      { "day": "2026-05-01", "oi_usd": 98000000, "oi_contracts": 1380 },
      { "day": "2026-05-02", "oi_usd": 105000000, "oi_contracts": 1460 }
    ]
  }
}

Related