获取帖子评论/Get post comments

YouTubeapi

About

获取帖子评论/Get post comments

Documentation

获取帖子评论/Get post comments

[中文]

用途:

  • 获取YouTube帖子(社区帖子)的评论列表
  • 支持分页获取更多评论

参数详解:

参数(至少提供一个):

post_id (string)

  • 作用: 帖子ID,首次请求时必填
  • 获取方式: 从帖子URL中提取,例如 https://www.youtube.com/post/UgkxiCSRfD6g7SPlWGPDa3vbP7aIsytXRkvy
  • 示例: "UgkxiCSRfD6g7SPlWGPDa3vbP7aIsytXRkvy"

continuation_token (string)

  • 作用: 分页token
  • 获取方式:
    • get_post_detail 返回的 comments_continuation_token 字段获取(首次请求)
    • 或从上一次评论请求的响应中获取 continuation_token(分页请求)

可选参数:

language_code (string, 可选) - 语言代码,默认 "zh-CN"

country_code (string, 可选) - 国家代码,默认 "US"

need_format (bool, 可选) - 是否格式化数据,默认 true

返回数据 (need_format=true):

  • comments: 评论列表
    • comment_id: 评论ID
    • content: 评论内容文本
    • published_time: 发布时间
    • like_count: 点赞数
    • like_count_a11y: 点赞数无障碍文本
    • reply_count: 回复数
    • reply_count_text: 回复数文本
    • reply_continuation_token: 回复的continuation token(用于获取二级评论)
    • author: 作者信息
      • channel_id: 作者频道ID
      • display_name: 显示名称
      • channel_url: 频道URL
      • avatar_url: 头像URL
      • is_verified: 是否认证
      • is_creator: 是否为创作者
  • continuation_token: 下一页评论的分页token

使用流程:

  1. 首次请求:传入 post_id(或从 get_post_detail 获取 comments_continuation_token 作为 continuation_token)
  2. 获取响应中的 continuation_token
  3. 下次请求:传入 continuation_token 获取更多评论
  4. 每条评论如有回复,可用 reply_continuation_token 调用 get_post_comment_replies

价格:

  • $0.001 USD / 请求

[English]

Purpose:

  • Get YouTube post (community post) comments
  • Supports pagination for more comments

Parameters:

Required (at least one):

post_id (string) - Post ID, required for first request

continuation_token (string) - Pagination token (from get_post_detail's comments_continuation_token or previous response)

Optional:

language_code (string, optional) - Language code, default "zh-CN"

country_code (string, optional) - Country code, default "US"

need_format (bool, optional) - Whether to format data, default true

Returns (need_format=true):

  • comments: Comments list
    • comment_id, content, published_time, like_count, reply_count
    • reply_continuation_token: Token for fetching replies
    • author: Author info (channel_id, display_name, avatar_url, etc.)
  • continuation_token: Next page token

Usage Flow:

  1. First request: Pass post_id (or use comments_continuation_token from get_post_detail)
  2. Get continuation_token from response
  3. Next request: Pass continuation_token for more comments
  4. Use reply_continuation_token to get replies via get_post_comment_replies

Price:

  • $0.001 USD / request

[示例/Example]

获取帖子评论: post_id = "UgkxiCSRfD6g7SPlWGPDa3vbP7aIsytXRkvy"

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

Try 获取帖子评论/Get post comments

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

Open in Playground

Related Models