---
title: "List post comments"
method: GET
path: "/posts/{postId}/comments"
tags: ["Comments"]
---

# List post comments

`GET /posts/{postId}/comments`

List all comments on a post, ordered by creation time (oldest first)

## Path parameters

- `postId` string, uuid, required

## Response `200`

List of comments

- object
  - `comments` Comment[]
    - `id` string, uuid — Unique identifier for the comment
    - `message` string — The comment text. Mentions use the format @[Display Name](userId)
    - `postId` string, uuid — The post this comment belongs to
    - `createdAt` string, date-time — When the comment was created
    - `updatedAt` string, date-time — When the comment was last updated
    - `user` CommentUser — User who created a comment
      - `id` string, uuid
      - `firstName` string, nullable
      - `lastName` string, nullable
      - `email` string, email

## Other responses

- `401` — Unauthorized - Missing or invalid API key
- `404` — Not Found - Resource does not exist

---

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