GET /v1/datasets Public

Catalog of every queryable series and its coverage.

Response

One top-level datasets[] array. Each entry is one series; copy its data, symbol (and source / market / interval when present) straight into the /data route.

  • data — dataset name, kebab-case (e.g. ohlcv, funding-rates, coinbase-premium).
  • source — venue or derived (e.g. binance).
  • symbol, market, interval — the series dimensions. nullwhen the dataset doesn't use that dimension.
  • earliest, latest — coverage bounds as RFC3339 UTC timestamps. earliest is null when the series has no rows yet.
{
  "datasets": [
    {
      "data": "ohlcv",
      "source": "binance",
      "symbol": "BTC-USDT",
      "market": "spot",
      "interval": "1m",
      "earliest": "2019-09-08T00:00:00Z",
      "latest": "2026-06-20T00:00:00Z"
    }
  ]
}