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

# List inline comments on a post

`GET /posts/{postId}/inline-comments`

Returns inline comments (text-anchored comments) from all channels on a post. Optionally filter by channel or resolution status.

## Path parameters

- `postId` string, uuid, required

## Query parameters

- `channel` 'LinkedIn' | 'Twitter' | 'Instagram' | 'Facebook' | 'Threads' | 'TikTok' | 'Discord' | 'Slack' | 'Webflow' | 'YouTubeShorts'
- `resolved` boolean

## Response `200`

List of inline comments

- object
  - `inlineComments` InlineComment[]
    - `id` string — Unique identifier for the inline comment thread
    - `resolved` boolean — Whether the comment thread has been marked as resolved
    - `channel` string — The channel this comment is on (LinkedIn, Twitter, etc.)
    - `highlightedText` string — The text that was highlighted when the comment was created
    - `replies` InlineCommentReply[] — Array of replies in the thread
      - `id` string — Unique identifier for the reply
      - `user` CommentUser — User who created a comment
        - `id` string, uuid
        - `firstName` string, nullable
        - `lastName` string, nullable
        - `email` string, email
      - `message` string — The reply text. Mentions use the format @[Display Name](userId)
      - `createdAt` string, date-time — When the reply was created
      - `reactions` InlineCommentReaction[] — Array of emoji reactions on this reply
        - `emoji` string — The emoji used for the reaction
        - `users` CommentUser[] — Array of users who added this reaction
          - `id` string, uuid
          - `firstName` string, nullable
          - `lastName` string, nullable
          - `email` string, email
    - `createdAt` string, date-time — When the thread was created
    - `updatedAt` string, date-time, nullable — When the thread was last updated

## Other responses

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

---

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