Skip to main content
GET
/
social
/
comments
List comments
curl --request GET \
  --url https://api.smartlyq.com/v1/social/comments \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "posts": [
      {
        "id": 456,
        "post_id": 456,
        "remote_post_id": "123_987",
        "content": "Our new launch!",
        "permalink": "https://facebook.com/123_987",
        "platform": "facebook",
        "social_account_id": 789,
        "account_name": "My Business Page",
        "comment_count": 2,
        "comments": [
          {
            "id": 1,
            "content": "Love this!",
            "author_name": "Jane",
            "author_avatar": null,
            "like_count": 3,
            "commented_at": "2026-03-01 11:00:00",
            "is_own": 0,
            "remote_comment_id": "c_1",
            "platform": "facebook",
            "children": []
          }
        ]
      }
    ]
  },
  "pagination": {
    "page": 1,
    "per_page": 20,
    "total": 1
  },
  "meta": {
    "request_id": "req_abc123",
    "timestamp": "2026-03-01T16:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

API key from Developer dashboard (Bearer token).

Query Parameters

platform
string
social_account_id
integer
page
integer
per_page
integer

Response

Success

success
enum<boolean>
Available options:
true
data
object
pagination
object
meta
object