List Comment Replies
youtube_list_comment_repliesFetch paginated replies to a YouTube comment thread by parent ID. Choose between markdown and JSON output.
Instructions
Retrieves a page of replies to a specific top-level comment thread.
Args
parentId(string, required) — ID of the parent comment thread (top-level comment ID).maxResults(1–50, default 25) — Number of replies per page.pageToken(string, optional) — Cursor from a previous response to fetch the next page.response_format("markdown" | "json", default "markdown") — Output format.
Returns
{
"replies": [
{
"id": "string",
"parentId": "string",
"authorDisplayName": "string",
"text": "string",
"likeCount": 0,
"publishedAt": "ISO-8601",
"updatedAt": "ISO-8601"
}
],
"nextPageToken": "string | null"
}Examples
Fetch replies for a comment thread:
{ "parentId": "UgxABC123_replies", "maxResults": 10 }
Errors
404 if the parent comment does not exist.
403 if the video's comments are disabled or quota is exceeded.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parentId | Yes | ID of the top-level comment thread whose replies to list. | |
| maxResults | No | Number of replies per page (1–50, default 25). | |
| pageToken | No | Pagination cursor from a previous response's nextPageToken. | |
| response_format | No | Output format: "markdown" (default) or "json". | markdown |