POST /public/workflows//execute
Start a flow execution with input data.Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
input | array | Yes | Array of objects to process |
Response
| Field | Type | Description |
|---|---|---|
workflow_run_id | string | Run ID for status polling |
status | string | "running" |
GET /public/workflows/runs/
Check the status of a flow run and retrieve results.Response (running)
Response (completed)
Response Fields
| Field | Type | Description |
|---|---|---|
status | string | Current status |
progress | number | Progress from 0 to 1 (when running) |
results | object | Contains data array with enriched items (when completed) |
Status Values
| Status | Description |
|---|---|
running | Flow is processing |
completed | Flow finished successfully |
failed | Flow failed |