Skip to main content
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_KEY

Query parameters

ParameterTypeRequiredDescription
platformstringYesfacebook, instagram, or threads
accountIdstringYesIntegration ID from list_integrations
postIdstringYesPlatform post ID
limitintegerNoMax comments to return (1–100, default 25)
afterstringNoPagination 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.

On this page