---
title: "Get Task Comments"
method: GET
path: "/v2/task/{task_id}/comment"
tags: ["Comments"]
---

# Get Task Comments

`GET /v2/task/{task_id}/comment`

View task comments. \
 \
Retrieve comments from a task. Results are returned in reverse chronological order (newest to oldest). By default, the request returns the 25 most recent comments.\
 \
[Pagination](https://developer.clickup.com/docs/task-comments-pagination): To fetch the next page of history (older comments), you must use the `start` and `start_id` parameters together, using the data from the last comment of the current response.

## Path parameters

- `task_id` string, required

## Query parameters

- `custom_task_ids` boolean
- `team_id` number
- `start` integer
- `start_id` string

## Response `200`

- object
  - `comments` object[], required
    - `id` string, required
    - `comment` object[], required
      - `text` string, required
    - `comment_text` string, required
    - `user` User, required — unresolved $ref
    - `resolved` boolean, required
    - `assignee` object, required
      - `id` integer, required
      - `username` string, required
      - `email` string, required
      - `color` string, required
      - `initials` string, required
      - `profilePicture` string, required
    - `assigned_by` object, required
      - `id` integer, required
      - `username` string, required
      - `initials` string, required
      - `email` string, required
      - `color` string, required
      - `profilePicture` string, required
    - `reactions` string[], required
    - `date` string, required
    - `reply_count` string — For threaded comments, `reply_count` is always 0.

---

[API](https://skmtc.dev/clickup/apis/clickup-api-v2-reference.md) · [All operations](https://skmtc.dev/clickup/apis/clickup-api-v2-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/clickup/clickup-api-v2-reference/revisions/72216f55b952/schema)
