Comments
Reply to a Comment
Post a reply to a comment on Facebook, Instagram, or Threads.
Post a reply to an existing comment. For Threads, pass the thread ID as commentId.
Request
POST /v1/comments
x-access-key: YOUR_ACCESS_KEY
Content-Type: application/json{
"platform": "instagram",
"accountId": "INTEGRATION_ID",
"commentId": "COMMENT_ID",
"text": "Thanks for the kind words!"
}Body parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
platform | string | Yes | facebook, instagram, or threads |
accountId | string | Yes | Integration ID from list_integrations |
commentId | string | Yes | Platform comment ID to reply to (thread ID for Threads) |
text | string | Yes | Reply text |
Response
{
"success": true,
"commentId": "NEW_COMMENT_ID"
}