CrewAI Cloud · Arazzo Workflow
CrewAI AMP Kick Off and Poll Until Complete
Version 1.0.0
Launch a crew execution and poll its status until it completes or errors.
View Spec
View on GitHub
AI AgentsAI Agent PlatformAgent OrchestrationMulti-Agent SystemsAgent Management PlatformManaged AgentsAutomationsObservabilityHuman In The LoopArazzoWorkflows
Provider
Workflows
kickoff-and-poll-until-complete
Kick off a crew and poll status until it completes or errors.
Calls POST /kickoff to launch an execution, then repeatedly calls GET /status/{kickoff_id}, looping while status is running and ending when the status is completed or error.
1
kickoff
kickoffCrew
Launch a crew execution with the supplied inputs and capture the kickoff_id used to poll status.
2
pollStatus
getKickoffStatus
Poll the execution status. While the status is running, loop back and poll again; when it is completed continue to the result, and when it is error branch to the error handler.
3
collectResult
getKickoffStatus
Re-read the completed status to surface the final aggregated crew output, per-task results, and total execution time.
4
collectError
getKickoffStatus
Re-read the errored status to surface the human-readable error message and the elapsed execution time before the failure.