# Finance YouTube Comment Question Extractor

**Use case:** 

Extract top finance-related questions from YouTube comments. Get insights from video discussions without extensive data collection.

## Input

```json
{
  "videos": [
    "https://www.youtube.com/watch?v=p7HKvqRI_Bo",
    "https://www.youtube.com/watch?v=5nEtkS4NGKQ"
  ],
  "sortBy": "top",
  "includeReplies": false,
  "language": "en",
  "maxCommentsPerVideo": 500,
  "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.