# Monitor new comments on a public YouTube video

**Use case:** 

Try Signal Foundry's bounded comment monitor on a public video, limited to 20 top-level comments. Later runs return newly observed comments; no new observations can mean no comment records. Change the video URL to your own public video. Unofficial and not affiliated with YouTube.

## Input

```json
{
  "video_urls": [
    "https://www.youtube.com/watch?v=jNQXAC9IVRw"
  ],
  "max_comments_per_video": 20
}
```

## Output

```json
{
  "comment_id": {
    "label": "Comment id",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "source_url": {
    "label": "Source url",
    "format": "string"
  },
  "published_at": {
    "label": "Published at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube New Comment Monitor and Filter](https://apify.com/signal-foundry/youtube-comment-monitor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/signal-foundry/youtube-comment-monitor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/signal-foundry/youtube-comment-monitor.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
