Skip to main content

POST /v1/engine/run

Body Parameters

ParameterTypeRequiredDescription
verticalstringThe creative vertical
workflowstringThe workflow to execute
contextobjectContextual data for the workflow
asyncbooleanRun asynchronously. Default: false

Example Request

curl -X POST https://api.boobie.ai/v1/engine/run \
  -H "Authorization: Bearer YOUR_BOOBIE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "vertical": "music",
    "workflow": "release-strategy",
    "context": {
      "artist": "Artist Name",
      "genre": "R&B",
      "releaseDate": "2026-08-01"
    }
  }'

Response

{
  "id": "job_abc123",
  "status": "completed",
  "vertical": "music",
  "workflow": "release-strategy",
  "result": {
    "strategy": "Full AI-generated strategy...",
    "recommendations": [],
    "timeline": {}
  },
  "created_at": "2026-06-12T09:00:00Z",
  "completed_at": "2026-06-12T09:00:02Z"
}