---
title: "List tasks in project"
method: GET
path: "/projects/{project_id}/tasks"
tags: ["Tasks"]
---

# List tasks in project

`GET /projects/{project_id}/tasks`

List all tasks in the given project_id.

## Path parameters

- `project_id` integer, required

## Response `200`

successfully returns all the tasks in the project.

- object
  - `data` Task[]
    - `id` integer
    - `name` string — Name of the task
    - `description` string — Description of the task - supports limited subset of HTML &lt;b&gt;, &lt;ul&gt;, &lt;li&gt;, &lt;br&gt;, and &lt;a&gt;.
    - `status` 'to_do' | 'pending_review' | 'approved' — Status of the task

## Other responses

- `403` — project not found

---

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