Reply to a Google Business review (preview)
1# Coming soon - preview of the planned API
2curl -X POST https://api.social-api.ai/v1/inbox/reviews/<review-id>/reply \
3 -H "Authorization: Bearer <your-api-key>" \
4 -H "Content-Type: application/json" \
5 -d '{
6 "text": "Thank you for the kind review! We look forward to seeing you again."
7 }' | jq
8
9# Expected response
10{
11 "id": "<review-id>",
12 "platform": "google",
13 "reply": {
14 "text": "Thank you for the kind review! We look forward to seeing you again.",
15 "created_at": "2026-05-12T16:45:00Z"
16 }
17}
This is a preview of what review replies on Google Business will look like. The same unified endpoint you already use for every other platform.