v1
latestOpenAPI 3.0.32026-07-264616.2 KBGet Execution Status
📋 Reference Example Only - This shows the request format. To test with your actual crew, copy the cURL example and replace the URL + token with your real values.
Retrieves the current status and results of a crew execution using its kickoff ID.
The response structure varies depending on the execution state:
- running: Execution in progress with current task info
- completed: Execution finished with full results
- error: Execution failed with error details
get/status/{kickoff_id}
Path parameters
kickoff_idstring uuid required
Example:abcd1234-5678-90ef-ghij-klmnopqrstuv
The kickoff ID returned from the /kickoff endpoint
Response
Successfully retrieved execution status
Example response
{
"status": "running",
"current_task": "research_task",
"progress": {
"completed_tasks": 1,
"total_tasks": 3
}
}