Comments API

Retrieve, reply, moderate comments.

Edit this page·Last updated: July 13, 2026

Comments API

Manage comments on your published posts from a unified API.

List comments on a post

{
  "data": [
    {
      "id": "cmt_xxx",
      "platform": "instagram",
      "author": { "id": "ig_user_xxx", "name": "Alice", "avatarUrl": "..." },
      "text": "Great photo!",
      "createdAt": "2026-07-13T10:00:00Z",
      "likes": 4,
      "hidden": false
    }
  ]
}

Reply

{
  "postId": "post_xxx",
  "platform": "instagram",
  "text": "Thanks Alice!",
  "parentCommentId": "cmt_xxx"  // optional, to reply to a comment
}

Edit your own reply

{ "text": "Corrected text" }

Delete

Hide / Unhide

Like / Unlike

Private reply (DM)

Send a private reply to a public comment (Instagram, Facebook):

{ "text": "Thanks for your interest, I'll send you more info via DM." }

Moderation

Set a moderation status:

{ "status": "spam" }  // pending | approved | spam | hidden

List commented posts

Returns all posts that received at least one comment during the period.

Was this page helpful?