TradePortfolio

Exchange Timeseries

Dev

GET /markets/exchanges/{exchange}/timeseries


Volume and OI timeseries for one exchange over a configurable range. Returns hourly buckets for the 1d range, daily otherwise. Use it to chart how a specific venue's total volume and OI have evolved, or compare trend slopes between exchanges over the same window.

Authentication

Requires Dev tier or higher. Dev: ranges of 1d, 7d, and 30d. Pro: up to 90 days.

Parameters

Path parameters

NameTypeRequiredDescription
exchangestringLowercase exchange slug, e.g. binance.

Query parameters

NameTypeRequiredDescription
rangestring1d, 7d, 30d, or 90d. Defaults to 7d.

Tier behavior

  • Dev: Ranges of 1d, 7d, and 30d are available.
  • Pro: Full 90-day range.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  "https://api.loris.tools/markets/exchanges/binance/timeseries?range=7d"

Example response

json
{
  "exchange": "binance",
  "range": "7d",
  "data": [
    {
      "timestamp": "2026-06-01T00:00:00Z",
      "volume_usd": 38000000000,
      "oi_usd": 17200000000
    },
    {
      "timestamp": "2026-06-02T00:00:00Z",
      "volume_usd": 39500000000,
      "oi_usd": 17500000000
    },
    {
      "timestamp": "2026-06-03T00:00:00Z",
      "volume_usd": 41200000000,
      "oi_usd": 17800000000
    }
  ]
}

Related