---
title: "List tasks"
method: GET
path: "/tasks"
tags: ["tasks"]
---

# List tasks

`GET /tasks`

Returns a paginated list of tasks with optional client and workspace filters.

## Query parameters

- `limit` number — The number of items to return
- `cursor` string, cuid — The cursor to return the next page of items
- `workspaceId` string, cuid — The ID of the workspace
- `parentId` string, cuid — The ID of the parent task
- `sort` 'createdAt' | 'updatedAt' | 'dueDate' | 'status' | 'title' — The sort field of the results
- `order` 'asc' | 'desc' — The order of the results based on the sort field

## Headers

- `x-client-id` string, cuid, required — The ID of the client

## Response `200`

Tasks

- PaginatedTasks
  - `data` Task[], required
    - `id` string, cuid, required — The ID of the task
    - `title` string, required — The title of the task
    - `text` string, nullable, required — The text of the task
    - `status` 'IN_PROGRESS' | 'ACCEPTED' | 'OPEN' | 'IN_REVIEW' | 'DECLINED', required — The status of the task
    - `dueDate` string, date-time, nullable, required — The due date of a task. ISO-8601 format (YYYY-MM-DDTHH:MM:SSZ).
    - `workspaceId` string, cuid, required — The ID of the workspace
    - `createdById` string, cuid, nullable, required — The ID of the creator
    - `actorType` 'USER' | 'SYSTEM' | 'AI' | 'API', required — The type of the actor
    - `parentId` string, cuid, nullable, required — The ID of the parent task
    - `destinationFolderId` string, cuid, nullable, required — The ID of the destination folder where assigned files will be stored
    - `createdAt` string, date-time, required — The date and time of the creation for the task. ISO-8601 format (YYYY-MM-DDTHH:MM:SSZ).
    - `updatedAt` string, date-time, required — The date and time of the last update for the task. ISO-8601 format (YYYY-MM-DDTHH:MM:SSZ).
  - `pagination` Pagination, required
    - `nextCursor` string — The cursor to return the next page of items
    - `previousCursor` string — The cursor to return the previous page of items
    - `limit` integer, required — The number of items to return
    - `total` integer, required — The total number of items

## Other responses

- `401` — Unauthorized
- `422` — The validation error(s)
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.net/steuerboard/apis/steuerboard-api.md) · [All operations](https://skmtc.net/steuerboard/apis/steuerboard-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/steuerboard/steuerboard-api/versions/9170dd572b31/schema)
