Open the replies hanging off a single comment. The endpoint needs both the post ID and the comment ID, then returns the reply chain with each author, text, like count and timestamp, along with the reply IDs that link a message back to its parent. It finishes what the comments endpoint starts, so you can rebuild a full discussion rather than only its top level.
curl -X GET "https://api.primeapi.co/post-comment-replies?postId=7191880324966599942&commentId=7192268986179076865&count=10&cursor=0" \
-H "X-PrimeAPI-Key: YOUR_API_KEY"
import requests
url = "https://api.primeapi.co/post-comment-replies?postId=7191880324966599942&commentId=7192268986179076865&count=10&cursor=0"
headers = {"X-PrimeAPI-Key": "YOUR_API_KEY"}
response = requests.get(url, headers=headers)
print(response.json())
print("Credits left:", response.headers.get("X-PrimeAPI-Balance"))
{
"comments": [
{
"aweme_id": "7191880324966599942",
"cid": "7197413283216524059",
"collect_stat": 0,
"comment_language": "en",
"comment_post_item_ids": null,
"create_time": 1675778378,
"digg_count": 59,
"image_list": null,
"is_author_digged": false,
"is_comment_translatable": true,
"label_list": null,
"no_show": false,
"reply_comment": null,
"reply_id": "7192268986179076865",
"reply_to_reply_id": "0",
"share_info": {
"acl": {
"code": 1,
"extra": "{\"is_share_handler_failed\":\"1\"}"
},
"desc": "",
"title": "",
"url": ""
},
"status": 1,
"stick_position": 0,
"text": "This called me a hopeless romantic in 100 languages",
"text_extra": [],
"trans_btn_style": 0,
"user": {
"account_labels": null,
"ad_cover_url": null,
"advance_feature_item_order": null,
"advanced_feature_info": null,
"avatar_thumb": {
"uri": "tos-maliva-avt-0068/bda1d902653888c6d19169a9b2596b01",
"url_list": [
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/bda1d902653888c6d19169a9b2596b01~c5_100x100.jpg?lk3s=30310797&nonce=117&refresh_token=d7db2bc47a95a749949a5cfbb53e72d0&x-expires=1737190800&x-signature=ASsZnFcc%2BPIbHgqhZUvUF49sGAg%3D&shp=30310797&shcp=-",
"https://p77-sign-va.tiktokcdn.com/tos-maliva-avt-0068/bda1d902653888c6d19169a9b2596b01~c5_100x100.jpg?lk3s=30310797&nonce=78517&refresh_token=03ddbd54ede8f5b600120ea9e0e5b6fa&x-expires=1737190800&x-signature=i4eF0%2Fu49%2Be33o0y%2BVEu42nrtiU%3D&shp=30310797&shcp=-",
"https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/bda1d902653888c6d19169a9b2596b01~c5_100x100.jpeg?lk3s=30310797&nonce=33293&refresh_token=84c1b3bf332c8c8397e36a7149b82787&x-expires=1737190800&x-signature=sVffTJ%2FEs%2FhY0w1EwGgEWloggPk%3D&shp=30310797&shcp=-"
],
"url_prefix": null
},
"bold_fields": null,
"can_message_follow_status_list": null,
... (truncated)