Dashboard
DevGET /hip3-analytics/dashboard
Combined HIP-3 dashboard payload that replaces 14+ separate calls. Returns summary totals, per-DEX stats, timeseries, builder fee series, and priority gas series — everything a HIP-3 DEX analytics dashboard needs in one request. Use it as your primary dashboard data source and drill into specific DEXes with the dex-detail endpoint.
Authentication
Requires Dev tier or higher. Dev: period limited to 4h, 1d, and 1w. Pro: full access including 1m and all.
Parameters
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
period | string | – | 4h, 1d, 1w, 1m, or all. Defaults to 1d. |
Tier behavior
- Dev: period must be 4h, 1d, or 1w.
- Pro: Full access. period includes 1m and all.
Example request
bash
curl -H "X-Api-Key: lk_live_your_key_here" \
"https://api.loris.tools/hip3-analytics/dashboard?period=1d"Example response
json
{
"success": true,
"period": "1d",
"summary": {
"total_volume_usd": 482000000,
"total_trades": 128400,
"total_builder_fees_usd": 241000,
"unique_traders": 8420
},
"by_dex": [
{
"dex_name": "hyperliquid_dex",
"volume_usd": 210000000,
"trades": 54200,
"builder_fees_usd": 105000
}
],
"timeseries": [
{
"timestamp": "2026-06-08T00:00:00Z",
"volume_usd": 482000000,
"trades": 128400
}
],
"builder_fee_timeseries": [],
"priority_gas_timeseries": []
}Errors
400— Invalid period value.403— Dev tier attempting period=1m or period=all. Upgrade to Pro.
For authentication errors (401) and rate limit responses (429), see Errors.