Resources
Comments
Comment threads. Fetch a post's comments under Posts; drill into a single comment's replies here.
List replies
GET/v1/{platform}/comments/{id}/repliesPage through the replies to a single comment.
FieldInTypeDescription
platformrequiredpathenumPlatform slug.idrequiredpathstringThe parent comment ID.limitdefault 20queryintegerItems per page, 1–50.cursorquerystringPagination cursor.Request
curl "https://api.socialiq.dev/v1/tiktok/comments/7351111111111111111/replies?limit=3" \ -H "Authorization: Bearer sc_live_..."
Response
[ .JSON ]
{ "request_id": "sc_66778899001122334455", "data": { "items": [ { "id": "reply_1", "text": "agreed", "author": { "handle": "dev_22" }, "likes": 4 } ] }, "page": { "next_cursor": null, "has_more": false }}