Skip to main content
GET
/
inbox
/
comments
/
{postId}
List comments on a post
curl --request GET \
  --url https://api.social-api.ai/v1/inbox/comments/{postId} \
  --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>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.social-api.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

postId
string
required

Platform post ID

Query Parameters

account_id
string
required

Connected account ID that owns the post

limit
integer

Max results per page (default 25)

cursor
string

Pagination cursor from previous response

Response

Paginated list of comments with capabilities

data
object[]
pagination
object