---
title: "Get Execution Status"
method: GET
path: "/status/{kickoff_id}"
---

# Get Execution Status

`GET /status/{kickoff_id}`

**📋 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

## Path parameters

- `kickoff_id` string, uuid, required

## Response `200`

Successfully retrieved execution status

- union
  - ExecutionRunning
    - `status` 'running'
    - `current_task` string — Name of the currently executing task
    - `progress` object
      - `completed_tasks` integer — Number of completed tasks
      - `total_tasks` integer — Total number of tasks in the crew
  - ExecutionCompleted
    - `status` 'completed'
    - `result` object
      - `output` string — Final output from the crew execution
      - `tasks` TaskResult[]
        - `task_id` string — Unique identifier for the task
        - `output` string — Output generated by this task
        - `agent` string — Name of the agent that executed this task
        - `execution_time` number — Time taken to execute this task in seconds
    - `execution_time` number — Total execution time in seconds
  - ExecutionError
    - `status` 'error'
    - `error` string — Error message describing what went wrong
    - `execution_time` number — Time until error occurred in seconds

## Other responses

- `401` — Authentication failed - check your bearer token
- `404` — Kickoff ID not found
- `500` — Internal server error

---

[API](https://skmtc.dev/crewai/apis/crewai-amp-api.md) · [All operations](https://skmtc.dev/crewai/apis/crewai-amp-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/crewai/crewai-amp-api/revisions/ee5ac53a62cc/schema)
