docs/en/enterprise/guides/kickoff-crew.mdx
Once you've deployed your crew to the CrewAI AMP platform, you can kickoff executions through the web interface or the API. This guide covers both approaches.
From your crew's detail page, you have two options to kickoff an execution:
Kickoff link in the Test Endpoints sectionSend Request buttonRun tab in the crew detail pageRun Crew buttonAfter initiating the execution:
kickoff_id - copy this IDTo monitor the progress of your execution:
kickoff_id into the designated fieldThe status response will show:
running, completed, etc.)Once execution is complete:
completedExecutions tab in the crew detail pageYou can also kickoff crews programmatically using the CrewAI AMP REST API.
All API requests require a bearer token for authentication:
curl -H "Authorization: Bearer YOUR_CREW_TOKEN" https://your-crew-url.crewai.com
Your bearer token is available on the Status tab of your crew's detail page.
Before executing operations, you can verify that your crew is running properly:
curl -H "Authorization: Bearer YOUR_CREW_TOKEN" https://your-crew-url.crewai.com
A successful response will return a message indicating the crew is operational:
Healthy%
First, determine what inputs your crew requires:
curl -X GET \
-H "Authorization: Bearer YOUR_CREW_TOKEN" \
https://your-crew-url.crewai.com/inputs
The response will be a JSON object containing an array of required input parameters, for example:
{ "inputs": ["topic", "current_year"] }
This example shows that this particular crew requires two inputs: topic and current_year.
Initiate execution by providing the required inputs:
curl -X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_CREW_TOKEN" \
-d '{"inputs": {"topic": "AI Agent Frameworks", "current_year": "2025"}}' \
https://your-crew-url.crewai.com/kickoff
The response will include a kickoff_id that you'll need for tracking:
{ "kickoff_id": "abcd1234-5678-90ef-ghij-klmnopqrstuv" }
Monitor the execution progress using the kickoff_id:
curl -X GET \
-H "Authorization: Bearer YOUR_CREW_TOKEN" \
https://your-crew-url.crewai.com/status/abcd1234-5678-90ef-ghij-klmnopqrstuv
For executions that may take a long time:
The execution context includes:
If an execution fails: