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

# List tasks

`GET /tasks`

Returns a paginated list of tasks. Supports search and filtering.

## Query parameters

- `cursor` string — Cursor for pagination. Pass the previous response nextCursor value to fetch the next page.
- `limit` number — Number of items to return (max 100)
- `search` string — Search by task title
- `status` 'OPEN' | 'IN_PROGRESS' | 'ON_HOLD' | 'COMPLETED' | 'CANCELLED' — Filter by status
- `type` 'call' | 'todo' | 'meeting' — Filter by task type
- `priority` 'LOW' | 'MEDIUM' | 'HIGH' — Filter by priority

## Response `200`

OK

- object
  - `items` object[], required
    - `id` string, required — Task public ID
    - `number` string, required — Auto-generated task number
    - `title` string, required — Task title
    - `description` string, nullable — Task description
    - `status` string, required — Task status
    - `type` string, required — Task type
    - `priority` string, nullable — Task priority
    - `dueDate` string, date-time, nullable — Due date
    - `startDate` string, date-time, nullable — Start date
    - `createdAt` string, date-time, required — When the task was created
  - `nextCursor` string, nullable — Cursor to fetch the next page. Null if there are no more results.
  - `hasMore` boolean, required — Whether additional results are available

---

[API](https://skmtc.net/heffl/apis/heffl-api-v2-beta.md) · [All operations](https://skmtc.net/heffl/apis/heffl-api-v2-beta/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/heffl/heffl-api-v2-beta/revisions/27006cfef4d8/schema)
