Skip to main content
GET
/
inbox
/
comments
/
{postId}
/
{commentId}
/
replies
List replies to a comment
curl --request GET \
  --url https://api.social-api.ai/v1/inbox/comments/{postId}/{commentId}/replies \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "author_id": "17841405793187999",
      "author_name": "Jane Smith",
      "author_picture": "https://example.com/pic.jpg",
      "author_username": "janesmith",
      "capabilities": {
        "can_delete": true,
        "can_hide": true,
        "can_like": true,
        "can_private_reply": true,
        "can_reply": true
      },
      "created_at": "2026-03-27T10:30:00Z",
      "id": "ic_01HZ9X3Q4R5M6N7P8V2K0W1J",
      "inbox_post_id": "ip_01HZ9X3Q4R5M6N7P8V2K0W1J",
      "is_hidden": false,
      "is_liked": false,
      "is_owner": false,
      "like_count": 5,
      "parent_id": "<string>",
      "platform": "instagram",
      "platform_id": "17858893269577012",
      "reply_count": 2,
      "text": "Love this product!"
    }
  ],
  "pagination": {
    "has_more": true,
    "limit": 25,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

postId
string
required

Platform post ID

commentId
string
required

Platform comment ID to get replies for

Query Parameters

account_id
string
required

Connected account ID that owns the post

limit
integer

Max results per page (default 10)

cursor
string

Pagination cursor from previous response

Response

Paginated list of replies with capabilities

data
object[]
pagination
object