Comments
Child Comment
Description
This endpoint retrieves the child comments (replies) for a specific comment on an Instagram media post.
Endpoint
GET api/v1/instagram/v1/media/{{mediaId}}/comments/{{commentId}}/child_comments/
For pagination, pass either the max_id
or min_id
query param based on the returned cursor, if the response contains the next_min_child_cursor
field, pass it's value to the min_id
query param. If the response contains the next_max_child_cursor
field, pass it's value to the max_id
query param
Parameters
mediaId
Yes
Path Param
String | The unique identifier for the Instagram media (post) containing the comment.
commentId
Yes
Path Param
String | The unique identifier for the parent comment whose child comments are to be retrieved.
max_id
No
Query Param
String | used as pagination cursor -
Use the value of the next_max_child_cursor
field from the response as the value for pagination
min_id
No
Query Param
String | used as pagination cursor -
Use the value of the next_min_child_cursor
field from the response as the value for pagination
Comment Likers
Description
This endpoint retrieves a list of users who have liked a specific Instagram comment.
Endpoint
GET api/v1/instagram/v1/comment/{{commentId}}/likers/
Parameters
commentId
Yes
Path Param
String | The unique identifier for the parent comment whose child comments are to be retrieved.
Last updated