---
title: "List Task Executions"
method: GET
path: "/tasks/{task_id}/executions"
tags: ["tasks"]
---

# List Task Executions

`GET /tasks/{task_id}/executions`

## Path parameters

- `task_id` string, uuid, required

## Query parameters

- `limit` integer
- `offset` integer
- `sort_by` 'created_at' | 'updated_at'
- `direction` 'asc' | 'desc'

## Response `200`

Successful Response

- ListResponseExecution
  - `items` Execution[], required
    - `task_id` string, uuid, required
    - `status` 'queued' | 'starting' | 'running' | 'awaiting_input' | 'succeeded' | 'failed' | 'cancelled', required
    - `input` object, required
    - `output` unknown
    - `error` string, nullable
    - `transition_count` integer, nullable
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `metadata` object, nullable
    - `id` string, uuid, required

## Other responses

- `422` — Validation Error

## Changes

- **2025-03-18** `09b958f5a876` — 1 info
  - added the optional property `items/items/transition_count` to the response with the `200` status

[Change history](https://skmtc.dev/julep-ai/apis/julep-agents-api/changes/tasks/:task_id/executions/get.md)

---

[API](https://skmtc.dev/julep-ai/apis/julep-agents-api.md) · [All operations](https://skmtc.dev/julep-ai/apis/julep-agents-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/julep-ai/julep-agents-api/revisions/21c8182519ef/schema)
