Retrieve the current status and results of a workflow app execution run.
Use this endpoint to poll the status of a run after calling the
POST /v1/ai/apps/{app-id}/run endpoint. The run_id path parameter
corresponds to the workflow_run_identifier returned in the run response.
Polling strategy:
status is completed, the result field contains download URLsstatus is failed, the error_message field describes the failureAsset URLs in the result field are temporary and valid for 12 hours.
Statuses:
| Status | Description |
|---|---|
pending | Run is queued but has not started yet |
running | Workflow is executing |
completed | Finished successfully, result is available |
completed_with_errors | Execution finished but some nodes failed |
failed | Execution failed, see error_message |
cancelled | Execution was cancelled |
Enterprise exclusive. This endpoint is only available to Enterprise customers. Contact sales for access.
Your Magnific API key. Required for authentication. Learn how to obtain an API key
Unique identifier (SQID) of the workflow run. This is the
workflow_run_identifier value returned by the POST /v1/ai/apps/{app-id}/run endpoint.
"omps2OH829"
OK - Run status and result.
Status and result of a single workflow app execution run.
{
"error_message": "error_message",
"result": {
"images": [
{
"duration": 0.8008281904610115,
"width": 6,
"created_at": "2026-02-11T10:14:15.000Z",
"id": "LSFgqqrswO",
"url": "https://pikaso.cdnpk.net/private/production/3280037299/render.png?token=...",
"tool": "text-to-image",
"height": 1
},
{
"duration": 0.8008281904610115,
"width": 6,
"created_at": "2026-02-11T10:14:15.000Z",
"id": "LSFgqqrswO",
"url": "https://pikaso.cdnpk.net/private/production/3280037299/render.png?token=...",
"tool": "text-to-image",
"height": 1
}
],
"audios": [
{
"duration": 0.8008281904610115,
"width": 6,
"created_at": "2026-02-11T10:14:15.000Z",
"id": "LSFgqqrswO",
"url": "https://pikaso.cdnpk.net/private/production/3280037299/render.png?token=...",
"tool": "text-to-image",
"height": 1
},
{
"duration": 0.8008281904610115,
"width": 6,
"created_at": "2026-02-11T10:14:15.000Z",
"id": "LSFgqqrswO",
"url": "https://pikaso.cdnpk.net/private/production/3280037299/render.png?token=...",
"tool": "text-to-image",
"height": 1
}
],
"videos": [
{
"duration": 0.8008281904610115,
"width": 6,
"created_at": "2026-02-11T10:14:15.000Z",
"id": "LSFgqqrswO",
"url": "https://pikaso.cdnpk.net/private/production/3280037299/render.png?token=...",
"tool": "text-to-image",
"height": 1
},
{
"duration": 0.8008281904610115,
"width": 6,
"created_at": "2026-02-11T10:14:15.000Z",
"id": "LSFgqqrswO",
"url": "https://pikaso.cdnpk.net/private/production/3280037299/render.png?token=...",
"tool": "text-to-image",
"height": 1
}
]
},
"completed_at": "2026-02-25T12:02:00.000Z",
"run_id": "omps2OH829",
"started_at": "2026-02-25T12:00:00.000Z",
"app_id": "uqzQLDr2Aw",
"status": "completed"
}