web_data_youtube_comments
Extract structured YouTube comments data using a video URL to analyze audience feedback and engagement without manual scraping.
Instructions
Quickly read structured youtube comments data. Requires a valid youtube video URL. This can be a cache lookup, so it can be more reliable than scraping
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| num_of_comments | No | 10 | |
| url | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "num_of_comments": {
      "default": "10",
      "type": "string"
    },
    "url": {
      "format": "uri",
      "type": "string"
    }
  },
  "required": [
    "url"
  ],
  "type": "object"
}