Social Media
Instagram Comment Replies
List replies to an Instagram comment — reply id, text, author, and like count — with pagination, as JSON.
POST/api/v1/instagram/post/comments/replies
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonmedia_idstringrequiredThe post's media id.
Example: 3923727884124821350
comment_idstringrequiredThe parent comment id (from Post Comments).
Example: 18326891575251322
cursorstringPagination cursor from a previous response.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.instagram.comment_replies(media_id="3923727884124821350", comment_id="18326891575251322")
print(results)Response
"comments": [],
"items": [],
"count": 0,
"next_min_id": null,
"_backend": "igrapi"
},
"response_time": 9309,
"credits_used": 2,
"credits_remaining": 4724
}