Skip to main content
POST
/
api
/
v1
/
workers
/
up
curl -X POST https://alfred.black/api/v1/workers/up \
  -H "Authorization: Bearer alf_your_key_here" \
  -H "Content-Type: application/json"
{
  "message": "Workers started"
}
Starts your AI agents. You can optionally start only specific agents by providing a comma-separated list.
only
string
Comma-separated list of agents to start. Valid values: curator, janitor, distiller. If omitted, all configured agents will start.Example: "curator,janitor"
curl -X POST https://alfred.black/api/v1/workers/up \
  -H "Authorization: Bearer alf_your_key_here" \
  -H "Content-Type: application/json"
{
  "message": "Workers started"
}
message
string
Confirmation that agents have been started.