Bots
Start Bot
Starts a bot by creating and launching its Docker container. Returns immediately — startup happens in the background.
POST
Body
string
required
UUID of the bot to start.
The response is returned immediately with
status: "starting". Track the real status via GET /bots/:id or stream logs with GET /bots/:id/logs/stream.Process
- Validates ownership
- Creates a Docker container (
bot_<id>) with--memoryand--cpuslimits - Starts the container
- Begins async log capture
- Updates status to
"online"once running

