Skip to main content
GET
/
inbox
/
comments
List commented posts
curl --request GET \
  --url https://api.social-api.ai/v1/inbox/comments \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "account_id": "acc_01HZ9X3Q4R5M6N7P8V2K0W1J",
      "comment_count": 15,
      "content": "Check out our new product!",
      "created_at": "2026-03-20T09:00:00Z",
      "id": "ip_01HZ9X3Q4R5M6N7P8V2K0W1J",
      "like_count": 142,
      "permalink": "https://www.instagram.com/p/ABC123/",
      "platform": "instagram",
      "platform_id": "17895695668004550",
      "thumbnail": "https://cdn.example.com/thumb.jpg",
      "updated_at": "2026-03-27T10:30:00Z",
      "user_id": "550e8400-e29b-41d4-a716-446655440000"
    }
  ],
  "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_...

Query Parameters

account_id
string

Filter by connected account ID

platform
string

Filter by platform (instagram, facebook, threads, tiktok, linkedin, google)

min_comments
integer

Only return posts with at least this many comments (default 0)

since
string

Only return posts commented after this timestamp (RFC3339)

sort_by
string

Sort field: date (default)

sort_order
string

Sort direction: desc (default) or asc

limit
integer

Max results per page (default 25)

cursor
string

Pagination cursor from previous response

Response

Paginated list of commented posts

data
object[]
pagination
object