TradePortfolio

By Symbol

Dev

GET /hip3-analytics/by-symbol


Granular HIP-3 stats broken down by symbol across all builder DEXes — volume, trade count, and builder fees per coin. Also bundled in /dashboard; use this endpoint when you need the per-symbol breakdown specifically 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-symbol?period=1d"

Example response

json
{
  "success": true,
  "period": "1d",
  "data": [
    { "symbol": "BTC", "volume_usd": 180000000, "trades": 42000, "builder_fees_usd": 90000 },
    { "symbol": "ETH", "volume_usd": 98000000, "trades": 24800, "builder_fees_usd": 49000 },
    { "symbol": "SOL", "volume_usd": 48000000, "trades": 12400, "builder_fees_usd": 24000 }
  ]
}

Related