---
title: "List Executions"
method: GET
path: "/applications/{uuid}/scheduled-tasks/{task_uuid}/executions"
tags: ["Scheduled Tasks"]
---

# List Executions

`GET /applications/{uuid}/scheduled-tasks/{task_uuid}/executions`

List all executions for a scheduled task on an application.

## Path parameters

- `uuid` string, required
- `task_uuid` string, required

## Response `200`

Get all executions for a scheduled task.

- ScheduledTaskExecution[]
  - `uuid` string — The unique identifier of the execution.
  - `status` 'success' | 'failed' | 'running' — The status of the execution.
  - `message` string, nullable — The output message of the execution.
  - `retry_count` integer — The number of retries.
  - `duration` number, nullable — Duration in seconds.
  - `started_at` string, date-time, nullable — When the execution started.
  - `finished_at` string, date-time, nullable — When the execution finished.
  - `created_at` string, date-time — When the record was created.
  - `updated_at` string, date-time — When the record was last updated.

## Other responses

- `401` — Unauthenticated.
- `404` — Resource not found.

---

[API](https://skmtc.net/coollabsio/apis/coolify.md) · [All operations](https://skmtc.net/coollabsio/apis/coolify/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/coollabsio/coolify/versions/08be5dc8e729/schema)
