# Analyze YouTube Influencer Audience for Partnership Potentia

**Use case:** 

Collect comments from target influencer videos to understand their audience demographics, interests, and engagement patterns. This data helps brands assess infl

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=qwertyUIOP",
    "https://www.youtube.com/watch?v=asdfghJKLMN",
    "https://www.youtube.com/watch?v=zxcvbnmQWER"
  ],
  "maxComments": 400,
  "includeReplies": true,
  "maxRepliesPerComment": 7,
  "sortBy": "newest"
}
```

## Output

```json
{
  "commentId": {
    "label": "Comment ID",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "publishedTimeText": {
    "label": "Published",
    "format": "text"
  },
  "isReply": {
    "label": "Is Reply",
    "format": "boolean"
  },
  "videoTitle": {
    "label": "Video",
    "format": "text"
  }
}
```

## About this Actor

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