获取评论的子评论列表/Get comment replies

Instagramapi

About

获取评论的子评论列表/Get comment replies

Documentation

获取评论的子评论列表/Get comment replies

[中文]

用途:

  • 获取指定评论下的子评论(二级评论/回复),支持分页

参数:

  • media_id: 帖子ID(媒体ID)
  • comment_id: 父评论ID(从fetch_post_comments_v2返回的评论pk字段获取)
  • min_id: 分页游标,首次请求不传,从上一次响应的page_info.next_min_id字段获取

返回:

  • child_comments: 子评论列表,每个评论包含:
    • pk: 评论ID
    • text: 评论内容
    • created_at/created_at_utc: 评论时间戳
    • user: 评论者信息(pk, username, full_name, is_verified, profile_pic_url等)
    • comment_like_count: 评论点赞数
    • parent_comment_id: 父评论ID
    • has_translation: 是否有翻译
  • child_comment_count: 子评论总数
  • has_more_tail_child_comments: 是否有更多子评论
  • next_min_child_cursor: 下一页游标
  • page_info: 分页信息汇总

价格:

  • 0.001 USD/请求

[English]

Purpose:

  • Get child comments (replies) under a specific comment with pagination

Parameters:

  • media_id: Post ID (Media ID)
  • comment_id: Parent comment ID (get from pk field in fetch_post_comments_v2 response)
  • min_id: Pagination cursor, omit for first request, get from previous response's page_info.next_min_id

Return:

  • child_comments: Child comment list, each comment contains:
    • pk: Comment ID
    • text: Comment content
    • created_at/created_at_utc: Comment timestamp
    • user: Commenter info (pk, username, full_name, is_verified, profile_pic_url, etc.)
    • comment_like_count: Comment like count
    • parent_comment_id: Parent comment ID
    • has_translation: Has translation
  • child_comment_count: Total child comment count
  • has_more_tail_child_comments: Has more child comments
  • next_min_child_cursor: Next page cursor
  • page_info: Pagination info summary

Price:

  • 0.001 USD/request

[示例/Example]

media_id = "3766120364183949816" comment_id = "17871667485468098" min_id = ""

Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

Try 获取评论的子评论列表/Get comment replies

Test this model in the Sandbase Playground with your own prompts.

Open in Playground

Related Models