Skip to main content
GET
/
posts
/
{postId}
/
inline-comments
List inline comments on a post
curl --request GET \
  --url https://app.tryordinal.com/api/v1/posts/{postId}/inline-comments \
  --header 'Authorization: Bearer <token>'
{
  "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"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication. Generate an API key from your workspace settings.

Path Parameters

postId
string<uuid>
required

Post ID (UUID)

Query Parameters

channel
enum<string>

Filter by channel

Available options:
LinkedIn,
Twitter,
Instagram,
Facebook,
Threads,
TikTok,
Discord,
Slack,
Webflow,
YouTubeShorts
resolved
boolean

Filter by resolution status

Response

List of inline comments

inlineComments
object[]