---
title: "List Task Executions (Legacy)"
method: GET
path: "/v1/task/{taskId}/executions"
tags: ["Tasks (Legacy)"]
---

# List Task Executions (Legacy)

`GET /v1/task/{taskId}/executions`

Retrieves execution history for a task, including success/failure status,
execution times, and outputs. Results can be filtered by version and status.

If you are using the new Task Builder, see the Tasks V2 endpoints in this API reference.

## Path parameters

- `taskId` string, uuid, required

## Query parameters

- `page` string
- `limit` string
- `status` 'success' | 'failure' | 'timeout' | 'cancelled'
- `version` string

## Response `200`

Task executions retrieved successfully

- TaskExecutionResultsListResponse
  - `data` object
    - `results` TaskExecutionResult[], required
      - `id` string, uuid, required — Unique identifier for the execution result
      - `taskVersionId` string, uuid, required — Task version identifier
      - `version` string, required — Version that was executed
      - `status` 'success' | 'failure' | 'timeout' | 'cancelled', required — Execution status
      - `output` string, nullable — Task execution output
      - `errorMessage` string, nullable — Error message if execution failed
      - `startTime` string, date-time, required — Execution start time
      - `executionTime` number, nullable — Execution duration in milliseconds
    - `pagination` object, required
      - `page` integer, required — Current page number
      - `limit` integer, required — Number of results per page
      - `total` integer, required — Total number of results
      - `totalPages` integer, required — Total number of pages

## Other responses

- `404` — Task not found
- `500` — Failed to retrieve task executions

## Changes

- **2026-02-25** `ae25b3e0f20d` — 2 info
  - api tag `Tasks (Legacy)` added
  - api tag `Tasks` removed
- **2026-02-18** `4d2d945e5967` — 2 info
  - api tag `Tasks` added
  - api tag `Tasks (Legacy)` removed
- **2026-02-18** `cdc369172404` — 2 info
  - api tag `Tasks (Legacy)` added
  - api tag `Tasks` removed
- **2025-10-20** `918bcdcb6208` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/anchorbrowser/apis/anchorbrowser-api/changes/v1/task/:taskId/executions/get.md)

---

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