TradePortfolio

Coin Volume

Free

GET /volume/coin


Volume timeseries for all exchanges reporting a given base coin, aggregated per venue. Returns a chronological series of daily trading volume snapshots broken down by exchange. Use it to build per-coin volume charts, compare exchange activity on a given token, or correlate volume spikes with price and OI movements.

Authentication

Available on all tiers. Free tier: BTC and ETH only — requests for other coins return 403. Dev: all coins, 30-day max lookback. Pro: all coins, up to 90 days.

Parameters

Query parameters

NameTypeRequiredDescription
coinstringBase symbol. Defaults to BTC.
start_datestring / ISO 8601Start of range. Defaults to 7 days ago.
end_datestring / ISO 8601End of range. Defaults to now.

Tier behavior

  • Free: BTC and ETH only. Requests for any other coin return 403 with required_tier: dev.
  • Dev: All coins. Maximum 30-day lookback. Requests beyond this are clamped with a notice.
  • Pro: All coins. Up to 90 days and beyond.

Example request

bash
curl -H "X-Api-Key: lk_live_your_key_here" \
  "https://api.loris.tools/volume/coin?coin=ETH&start_date=2026-06-01"

Example response

json
{
  "data": [
    {
      "timestamp": "2026-06-01T00:00:00Z",
      "exchange": "binance",
      "volume_usd": 5800000000
    },
    {
      "timestamp": "2026-06-01T00:00:00Z",
      "exchange": "bybit",
      "volume_usd": 2100000000
    },
    {
      "timestamp": "2026-06-02T00:00:00Z",
      "exchange": "binance",
      "volume_usd": 6200000000
    }
  ],
  "notices": [],
  "coin": "ETH"
}

Errors

  • 403 Free tier requesting a coin other than BTC or ETH. Upgrade to Dev.

For authentication errors (401) and rate limit responses (429), see Errors.

Related