API reference
Public API/Backtesting

List execution models

GET/backtests/atop/execution-models

Fill/execution models for replay runs.

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/execution-models" \  -H "Authorization: Bearer $ITO_API_KEY"
ResponseJSON
{  "success": true,  "message": "Success",  "data": {    "registry_version": "atop-execution-registry-v1",    "models": [      {        "fill_model": "l2_vwap"      }    ]  }}