Skip to main content
POST
/
accounts
/
{id}
/
mentions
/
reply
Reply to a mention
curl --request POST \
  --url https://api.social-api.ai/v1/accounts/{id}/mentions/reply \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "comment_id": "<string>",
  "media_id": "<string>",
  "text": "<string>"
}
'
{
  "comment_id": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Connected account ID

Body

application/json

Reply content

comment_id
string
media_id
string
text
string

Response

Reply posted with comment_id

comment_id
string
success
boolean