instagram/v3/comment-replies
Get Instagram comment's child comments (replies) list Support pagination to fetch all replies Parent comment's comment_id can be obtained from get_post_comments API
Input
Idle
Example output — click Run to generate your own
API README
Get comment replies
Purpose:
- Get Instagram comment's child comments (replies) list
- Support pagination to fetch all replies
- Parent comment's comment_id can be obtained from get_post_comments API Parameters:
- media_id: Post media ID (numeric ID, required), can be obtained via
/shortcode_to_media_idendpoint - comment_id: Parent comment ID (required, get
pkfield from get_post_comments response) - min_id: Pagination cursor, omit for first request, get from previous response
data.next_min_child_cursorReturn: data.child_comments: Child comments listuser: Commenter infotext: Comment textcreated_at: Comment timestampcomment_like_count: Comment likes countpk: Comment ID
data.next_min_child_cursor: Next page cursor (use as min_id in next request)data.has_more_tail_child_comments: Whether has more child commentsdata.num_tail_child_comments: Remaining child comments count Pagination usage:
- First request: Pass
media_idandcomment_idparameters - Get
data.next_min_child_cursorfrom response - Next request: Pass
next_min_child_cursoras-is tomin_idparameter (no pre-processing needed, the API handles unescaping automatically) - Repeat steps 2-3 until
data.has_more_tail_child_commentsis false
Note:
min_idmay be an escaped JSON string (e.g.{"key":"val"}), just pass it as-is, the API handles unescaping internally Price:- 0.008 USD/request
media_id = "3829530490739515971" comment_id = "18065937092249736"
Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

