# Collect Replies For Youtube Support Thread

**Use case:** 

Export public YouTube comments, replies, authors, likes, timestamps, and video context for monitoring, support triage, or social listening. Use it for...

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  ],
  "videoIds": [],
  "maxCommentsPerVideo": 30,
  "sort": "top",
  "includeReplies": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "videoUrl": {
    "label": "Video URL",
    "format": "link"
  },
  "videoTitle": {
    "label": "Video title",
    "format": "text"
  },
  "commentId": {
    "label": "Comment ID",
    "format": "text"
  },
  "parentCommentId": {
    "label": "Parent comment ID",
    "format": "text"
  },
  "isReply": {
    "label": "Is reply",
    "format": "boolean"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "authorChannelUrl": {
    "label": "Author channel",
    "format": "link"
  },
  "authorThumbnailUrl": {
    "label": "Author thumbnail",
    "format": "image"
  },
  "text": {
    "label": "Comment text",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "publishedTimeText": {
    "label": "Published",
    "format": "text"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "sort": {
    "label": "Sort",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Comments Scraper](https://apify.com/fetch_cat/youtube-comments-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/youtube-comments-scraper) to learn more, explore other use cases, and run it yourself.