# Video Comment Replies

Returns a list of 20 YouTube video or live comment replies. To obtain the first replies page use `replies_cursor` from Video Comments endpoint.

Endpoint: GET /raw/youtube/video-comment-replies
Security: accessToken

## Query parameters:

  - `url` (string, required)
    YouTube video page url i.e. https://www.youtube.com/watch?v={videoId}

  - `after` (string, required)
    Use `cursor` from the last page to get the next page

## Response 200 fields (application/json):

  - `replies_list` (object, required)

  - `replies_list.comments` (array, required)

  - `replies_list.comments.comment_id` (string, required)

  - `replies_list.comments.author_channel_id` (string, required)

  - `replies_list.comments.author_name` (string, required)

  - `replies_list.comments.author_picture` (string, required)

  - `replies_list.comments.published_at` (string, required)

  - `replies_list.comments.author_is_channel_owner` (boolean, required)

  - `replies_list.comments.likes` (number, required)

  - `replies_list.comments.liked_by_creator` (boolean)

  - `replies_list.comments.text` (string, required)

  - `replies_list.comments.reply_count` (number)

  - `replies_list.comments.replies_cursor` (string)

  - `replies_list.cursor` (string, required)

  - `success` (boolean, required)

