Symbol Timeseries
DevGET /hip3-analytics/timeseries/symbol
Volume and fee timeseries for one HIP-3 symbol on a specific DEX. Use it to chart how trading activity on a particular token has evolved on a builder DEX, or compare activity between periods.
Authentication
Requires Dev tier or higher.
Parameters
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
dex_name | string | ✓ | HIP-3 DEX identifier. Use with symbol. Alternatively, use coin=dex:symbol format. |
symbol | string | ✓ | Symbol name. Use with dex_name. |
period | string | – | 4h, 1d, 1w, 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/timeseries/symbol?dex_name=hyperliquid_dex&symbol=BTC&period=1w"Example response
json
{
"success": true,
"period": "1w",
"dex_name": "hyperliquid_dex",
"symbol": "BTC",
"data": [
{
"timestamp": "2026-06-01T00:00:00Z",
"volume_usd": 14200000,
"trades": 2840,
"fees_usd": 7100
},
{
"timestamp": "2026-06-02T00:00:00Z",
"volume_usd": 15800000,
"trades": 3120,
"fees_usd": 7900
}
]
}Errors
400— Missing required dex_name and symbol (or coin).
For authentication errors (401) and rate limit responses (429), see Errors.