Skip to main content
POST
/
accounts
/
{id}
/
interactions
/
{iid}
/
reply
Reply to a comment or review
curl --request POST \
  --url https://api.social-api.ai/v1/accounts/{id}/interactions/{iid}/reply \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data @- <<EOF
{
  "private": false,
  "text": "Thanks for your feedback! We're glad you enjoyed it."
}
EOF
{
  "created_at": "2026-02-15T14:35:00Z",
  "id": "socapi_cmt_cmVwbHk6MTIzNDU2Nzg5"
}

Authorizations

Authorization
string
header
required

Prefix your API key with "Bearer ". Example: Authorization: Bearer soc_live_...

Path Parameters

id
string
required

Connected account ID

iid
string
required

Interaction ID (socapi_cmt_... or socapi_rev_...)

Body

application/json

Reply payload

private
boolean

Private sends the reply as a private/direct message when supported by the platform. Ignored for review replies.

Example:

false

text
string

Text is the reply content. Required.

Example:

"Thanks for your feedback! We're glad you enjoyed it."

Response

The created reply

created_at
string
Example:

"2026-02-15T14:35:00Z"

id
string
Example:

"socapi_cmt_cmVwbHk6MTIzNDU2Nzg5"