API reference
Public API/Backtesting

List datasets

GET/backtests/atop/datasets

Registered ClickHouse replay datasets available as backtest inputs.

120 requests / minute per key (read tier). Returns the {success, message, data} envelope.

Authorizations

Authorizationstringheaderrequired

Bearer token - an ito_* key (from Settings) holding the backtests:read scope.

Request
curl "https://itomarkets.com/api/v1/backtests/atop/datasets" \  -H "Authorization: Bearer $ITO_API_KEY"
ResponseJSON
{  "success": true,  "message": "Success",  "data": {    "registry_version": "atop-dataset-registry-v1",    "datasets": [      {        "dataset_id": "clickhouse:ito_hot.platform_orderbook_l2"      }    ]  }}