Comments
List Comments
Fetch comments and replies on a Facebook, Instagram, or Threads post.
Fetch comments (and first-level replies) on a post from a connected Facebook Page, Instagram Business account, or Threads account.
Supported platforms: facebook, instagram, threads
Note: Threads requires
threads_manage_replies. Reconnect an existing account to grant newly approved permissions.
Request
GET /v1/comments
x-access-key: YOUR_ACCESS_KEYQuery parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
platform | string | Yes | facebook, instagram, or threads |
accountId | string | Yes | Integration ID from list_integrations |
postId | string | Yes | Platform post ID |
limit | integer | No | Max comments to return (1–100, default 25) |
after | string | No | Pagination cursor from a previous response |
Response
{
"success": true,
"comments": [
{
"id": "123456789",
"text": "Great post!",
"author": { "id": "987654321", "name": "Jane Doe" },
"timestamp": "2026-07-14T10:00:00.000Z",
"likeCount": 3,
"hidden": false,
"replies": [
{
"id": "111222333",
"text": "Thanks!",
"author": { "id": "444555666", "name": "Your Page" },
"timestamp": "2026-07-14T10:05:00.000Z",
"likeCount": 1
}
]
}
],
"nextCursor": "cursor_abc123"
}Pass nextCursor as after in the next request to get the next page. null means no more pages.