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

# List Tasks

`GET /api/tasks`

## Query parameters

- `status` string, nullable
- `assigned_to_user_id` string, uuid, nullable
- `assigned_to` string, nullable — Use 'me' for the current user
- `person_id` string, uuid, nullable
- `company_id` string, uuid, nullable
- `source_campaign_name` string, nullable
- `page` integer
- `limit` integer

## Response `200`

Successful Response

- PaginatedResponseTaskOut
  - `data` TaskOut[], required
    - `id` string, uuid, required
    - `title` string, required
    - `description` string, nullable, required
    - `status` string, required
    - `task_type` string, required
    - `assigned_to_user_id` string, uuid, nullable, required
    - `assigned_to_email` string, nullable
    - `requested_by_user_id` string, uuid, nullable, required
    - `person_id` string, uuid, nullable, required
    - `person_name` string, nullable
    - `person_linkedin_url` string, nullable
    - `company_id` string, uuid, nullable, required
    - `company_name` string, nullable
    - `campaign_id` string, uuid, nullable, required
    - `source` string, required
    - `source_campaign_name` string, nullable, required
    - `source_external_id` string, nullable, required
    - `needs_review` boolean, required
    - `due_at` string, date-time, nullable, required
    - `completed_at` string, date-time, nullable, required
    - `metadata` object, nullable
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `total` integer, required — Total records matching the query (before pagination)
  - `page` integer, required — Current page number (1-indexed)
  - `limit` integer, required — Records per page (default 50, max 200)
  - `has_more` boolean, required — True if (page * limit) < total

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/rethoric/apis/rethoric-os.md) · [All operations](https://skmtc.dev/rethoric/apis/rethoric-os/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rethoric/rethoric-os/revisions/76b6d39426f6/schema)
