Run a marketplace or studio strategy as autopilot (two-step confirm)
POST /v1/autopilot/managed/run — Run a strategy from another source as autopilot. `marketplace` subscribes the published strategy to the chosen wallet an
POST /v1/autopilot/managed/run
Run a strategy from another source as autopilot. marketplace subscribes the published strategy to the chosen wallet and starts it; studio starts an already-deployed strategy on its own wallet. Fund-moving: omit confirm (or pass false) for { confirmed: false, preview }; pass confirm: true with the same idempotencyKey to execute. The built-in catalog keeps the /strategies create path.
| Method | POST |
| Path | /v1/autopilot/managed/run |
| Auth | Authorization: Bearer <token> required when GATEWAY_AUTH_TOKEN is set |
| Category | autopilot |
Request body
{ "source": "marketplace", "strategyRef": "pub_…", "subAccountId": "sub_…", "settings": {}, "confirm": false, "idempotencyKey": "<uuid-v4>" }Response body
{ "confirmed": false, "preview": { "source": "marketplace", "strategyRef": "pub_…", "subAccountId": "sub_…", "warning": "…" } }