---
title: "List post comments (multi-platform)"
method: GET
path: "/uploadposts/comments"
tags: ["Instagram Interactions"]
---

# List post comments (multi-platform)

`GET /uploadposts/comments`

List comments on one of your posts. Supported platforms: Instagram, Facebook, YouTube (account must be connected with the youtube.force-ssl scope) and LinkedIn (organization posts). TikTok is not supported. For YouTube, post_id is the video ID; for LinkedIn, post_id is the post URN (e.g. urn:li:ugcPost:123). Instagram comments are returned newest-first per Meta Graph API v3.2+.

## Query parameters

- `platform` 'instagram' | 'facebook' | 'youtube' | 'linkedin'
- `user` string, required
- `post_id` string
- `post_url` string
- `limit` integer
- `after` string

## Response `200`

Comments retrieved successfully.

- object
  - `success` boolean
  - `comments` object[]
    - `id` string — Comment ID.
    - `text` string
    - `timestamp` string, date-time
    - `user` object
      - `id` string — Commenter's IGSID.
      - `username` string
  - `pagination` object — Cursor pagination metadata.
    - `next_cursor` string, nullable — Opaque cursor to pass as `after` for the next page. Null on the last page.
    - `has_next` boolean — True if more pages are available.

## Other responses

- `400` — Missing parameters, invalid post identifier, or an unsupported platform (e.g. tiktok).
- `403` — The connected account lacks the required scope (e.g. YouTube not connected with youtube.force-ssl).
- `500` — Internal server error.

## Changes

- **2026-07-26** `b25e2a444745` — 5 info
  - the `query` request parameter `platform` became optional
  - added the new enum value `facebook` to the `query` request parameter `platform`
  - added the new enum value `linkedin` to the `query` request parameter `platform`
  - added the new enum value `youtube` to the `query` request parameter `platform`
  - …1 more

[Change history](https://skmtc.dev/upload-post/apis/upload-post-api/changes/uploadposts/comments/get.md)

---

[API](https://skmtc.dev/upload-post/apis/upload-post-api.md) · [All operations](https://skmtc.dev/upload-post/apis/upload-post-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/upload-post/upload-post-api/revisions/10bd964e4415/schema)
