> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tryordinal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List inline comments on a post

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



## OpenAPI

````yaml /api/openapi.json get /posts/{postId}/inline-comments
openapi: 3.1.0
info:
  title: Ordinal API
  version: 1.0.0
  description: API to create and manage Ordinal workspaces, posts, profiles, and analytics
servers:
  - url: https://app.tryordinal.com/api/v1
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: Analytics
    description: Social media analytics data
  - name: Approvals
    description: Post approval workflows
  - name: Comments
    description: >-
      Post comments for team collaboration. Supports @mentions using the format
      @[Display Name](userId).
  - name: Engagements
    description: Auto-engagements for posts (likes, comments, reposts)
  - name: Invites
    description: Workspace invitations for adding new users
  - name: Labels
    description: Labels for organizing posts
  - name: Instagram
    description: Instagram utilities for location search and tagging
  - name: LinkedIn
    description: LinkedIn utilities for profile lookups, tagging, and mentions
  - name: Posts
    description: Create and manage posts
  - name: Profiles
    description: List connected social profiles
  - name: Slack Boosts
    description: >-
      List connected Slack channels (webhooks), then create and manage slack
      boosts so teams get notified in Slack when posts publish. Requires Slack
      connected with marketing boost channels.
  - name: Subscribers
    description: Post subscribers for notifications
  - name: File Uploads
    description: >-
      Upload files from URLs for use in posts. Supports images (JPEG, PNG, GIF,
      WebP) up to 10 MB and videos (MP4, MOV) up to 350 MB.
  - name: Ideas
    description: >-
      Create and manage content ideas. Ideas are draft posts without scheduled
      dates that can be converted to calendar posts.
  - name: Inline Comments
    description: >-
      Text-anchored comments on specific post content. Read-only API for
      retrieving inline comments across channels.
  - name: Users
    description: Workspace users
  - name: Webhooks
    description: >-
      Create, list, get, update, and delete webhooks to receive real-time event
      notifications
  - name: Workspaces
    description: Workspace information
paths:
  /posts/{postId}/inline-comments:
    get:
      tags:
        - Inline Comments
      summary: List inline comments on a post
      description: >-
        Returns inline comments (text-anchored comments) from all channels on a
        post. Optionally filter by channel or resolution status.
      operationId: inline-comments-list
      parameters:
        - name: postId
          in: path
          required: true
          description: Post ID (UUID)
          schema:
            type: string
            format: uuid
        - name: channel
          in: query
          description: Filter by channel
          schema:
            type: string
            enum:
              - LinkedIn
              - Twitter
              - Instagram
              - Facebook
              - Threads
              - TikTok
              - Discord
              - Slack
              - Webflow
              - YouTubeShorts
        - name: resolved
          in: query
          description: Filter by resolution status
          schema:
            type: boolean
      responses:
        '200':
          description: List of inline comments
          content:
            application/json:
              schema:
                type: object
                properties:
                  inlineComments:
                    type: array
                    items:
                      $ref: '#/components/schemas/InlineComment'
              example:
                inlineComments:
                  - id: th_abc123xyz
                    resolved: false
                    channel: LinkedIn
                    highlightedText: innovative approach to marketing
                    replies:
                      - id: cm_def456uvw
                        user:
                          id: 550e8400-e29b-41d4-a716-446655440001
                          firstName: John
                          lastName: Doe
                          email: john@example.com
                        message: >-
                          Should we rephrase this? @[Jane
                          Smith](550e8400-e29b-41d4-a716-446655440002)
                        createdAt: '2026-02-04T10:30:00.000Z'
                        reactions:
                          - emoji: 👍
                            users:
                              - id: 550e8400-e29b-41d4-a716-446655440002
                                firstName: Jane
                                lastName: Smith
                                email: jane@example.com
                    createdAt: '2026-02-04T10:30:00.000Z'
                    updatedAt: '2026-02-04T10:45:00.000Z'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    InlineComment:
      type: object
      description: A text-anchored inline comment thread
      properties:
        id:
          type: string
          description: Unique identifier for the inline comment thread
        resolved:
          type: boolean
          description: Whether the comment thread has been marked as resolved
        channel:
          type: string
          description: The channel this comment is on (LinkedIn, Twitter, etc.)
        highlightedText:
          type: string
          description: The text that was highlighted when the comment was created
        replies:
          type: array
          description: Array of replies in the thread
          items:
            $ref: '#/components/schemas/InlineCommentReply'
        createdAt:
          type: string
          format: date-time
          description: When the thread was created
        updatedAt:
          type: string
          format: date-time
          nullable: true
          description: When the thread was last updated
    InlineCommentReply:
      type: object
      description: A reply within an inline comment thread
      properties:
        id:
          type: string
          description: Unique identifier for the reply
        user:
          $ref: '#/components/schemas/CommentUser'
        message:
          type: string
          description: The reply text. Mentions use the format @[Display Name](userId)
        createdAt:
          type: string
          format: date-time
          description: When the reply was created
        reactions:
          type: array
          description: Array of emoji reactions on this reply
          items:
            $ref: '#/components/schemas/InlineCommentReaction'
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
    CommentUser:
      type: object
      description: User who created a comment
      properties:
        id:
          type: string
          format: uuid
        firstName:
          type: string
          nullable: true
        lastName:
          type: string
          nullable: true
        email:
          type: string
          format: email
    InlineCommentReaction:
      type: object
      description: An emoji reaction on an inline comment reply
      properties:
        emoji:
          type: string
          description: The emoji used for the reaction
        users:
          type: array
          description: Array of users who added this reaction
          items:
            $ref: '#/components/schemas/CommentUser'
  responses:
    Unauthorized:
      description: Unauthorized - Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            code: UNAUTHORIZED
            message: Invalid or unauthorized API key
    NotFound:
      description: Not Found - Resource does not exist
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            code: NOT_FOUND
            message: Post not found or does not belong to this workspace
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key authentication. Generate an API key from your workspace
        settings.

````