Skip to main content
POST
/
stop
/
{kickoff_id}
Stop Crew Execution
curl --request POST \
  --url https://your-actual-crew-name.crewai.com/stop/{kickoff_id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "stopped",
  "kickoffId": "abcd1234-5678-90ef-ghij-klmnopqrstuv"
}

Documentation Index

Fetch the complete documentation index at: https://crewai-docs-stop-execution-endpoint.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

📋 Reference Documentation - The tokens shown in examples are placeholders for reference only.

Use your actual Bearer Token or User Bearer Token from the CrewAI AMP dashboard for real API calls.

Bearer Token: Organization-level access for full crew operations User Bearer Token: User-scoped access with limited permissions

Path Parameters

kickoff_id
string<uuid>
required

The kickoff ID of the execution to stop

Example:

"abcd1234-5678-90ef-ghij-klmnopqrstuv"

Response

Successfully stopped the execution

status
enum<string>

Indicates the execution was successfully stopped

Available options:
stopped
Example:

"stopped"

kickoffId
string

The kickoff ID of the stopped execution

Example:

"abcd1234-5678-90ef-ghij-klmnopqrstuv"