Reply to a Facebook comment
1curl -X POST https://api.social-api.ai/v1/inbox/comments/<post-id> \
2 -H "Authorization: Bearer <your-api-key>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "parent_id": "<parent-comment-id>",
6 "text": "Thanks for the feedback! We appreciate it."
7 }' | jq
8
9# Response
10{
11 "id": "<comment-id>",
12 "platform": "facebook",
13 "text": "Thanks for the feedback! We appreciate it.",
14 "created_at": "2026-03-20T15:10:00Z"
15}
Post a reply to any comment on your Page using the unified inbox endpoint. SocialAPI.ai resolves the correct Page access token automatically.