---
title: "Get Project Tasks"
method: GET
path: "/projects/{project_id}/tasks"
tags: ["Tasks"]
---

# Get Project Tasks

`GET /projects/{project_id}/tasks`

List tasks in a project. By default all tasks are returned; set `exclude-closed=true` to hide closed/completed tasks. See [Pagination](/pagination) for `limit`/`page` rules.

## Path parameters

- `project_id` string, required

## Query parameters

- `page` integer
- `limit` integer
- `exclude-closed` boolean
- `query` string

## Response `200`

OK

- Task[]
  - `id` string, required
  - `name` string, required
  - `projects` string[], required — List of projects ID
  - `section` number, nullable — Section ID
  - `labels` string[]
  - `position` number
  - `description` string, nullable
  - `dueAt` string, nullable — Format: Y-m-d H:i:s
  - `status` 'open' | 'closed'
  - `time` TaskTime
    - `total` number, required — Total task time in seconds
    - `users` object, required — Task time per user ID
  - `estimate` TaskEstimate
    - `total` number, required — Total task estimate in seconds
    - `type` 'overall' | 'users', required
    - `users` object — Task estimate per user ID
  - `attributes` object — Custom attributes from integration
  - `metrics` object — Custom metrics from integration
  - `unbillable` boolean

## Other responses

- `401` — Unauthorized

---

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