---
title: "List Comments"
method: GET
path: "/api/v2/core/comments"
tags: ["Comment"]
---

# List Comments

`GET /api/v2/core/comments`

Returns all comments for a given entity type and entity id

## Query parameters

- `start` integer
- `limit` integer
- `entityType` string, required
- `entityId` integer, required
- `exclude` string
- `keyList` string

## Headers

- `Authorization` string, required

## Response `200`

OK

- object
  - `data` CommentSchema[]
    - `createdAt` integer, nullable — Comment creation timestamp
    - `entityType` string, nullable — Type of entity the comment is associated with
    - `commentId` integer, nullable — Comment ID
    - `isPrivate` boolean, nullable — Whether the comment is private
    - `entityId` integer, nullable — ID of the entity the comment is associated with
    - `createdBy` string, nullable — Email of the user who created the comment
    - `parentId` integer, nullable — ID of the parent comment
    - `groupId` string, nullable — Group ID
    - `updatedAt` integer, nullable — Comment update timestamp
    - `comment` string, nullable — Comment content in text (HTML) format

---

[API](https://skmtc.net/eightfold/apis/api-server-v2-service-service.md) · [All operations](https://skmtc.net/eightfold/apis/api-server-v2-service-service/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/eightfold/api-server-v2-service-service/versions/0fb26f4e41bf/schema)
