# Scrape Political Debate YouTube Comments

**Use case:** 

Extract up to 1,000 comments from a political debate video. Analyze sentiments and audience reactions with structured CSV, JSON, or Excel data.

## Input

```json
{
  "videos": [
    "https://www.youtube.com/watch?v=bvim4rsNHkQ"
  ],
  "sortBy": "newest",
  "includeReplies": false,
  "language": "en",
  "maxCommentsPerVideo": 1000,
  "maxResults": 0
}
```

## Output

```json
{
  "author": {
    "label": "Author",
    "format": "string"
  },
  "text": {
    "label": "Comment",
    "format": "string"
  },
  "likeCount": {
    "label": "Likes",
    "format": "integer"
  },
  "replyCount": {
    "label": "Replies",
    "format": "integer"
  },
  "publishedTime": {
    "label": "Published",
    "format": "string"
  },
  "isReply": {
    "label": "Is reply",
    "format": "boolean"
  },
  "videoTitle": {
    "label": "Video title",
    "format": "string"
  },
  "videoId": {
    "label": "Video ID",
    "format": "string"
  }
}
```

## About this Actor

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