# Track new YouTube videos on a topic (last 30 days)

**Use case:** 

See what is being published on a subject right now rather than what ranked years ago. Set a date cut-off and sort by newest, and you get this month's videos with their view counts — the fastest way to spot a trend forming or watch a competitor's output. Re-run it on a schedule to keep a running feed.

## Input

```json
{
  "searchQueries": [
    "AI agents tutorial"
  ],
  "channelUrls": [
    "https://www.youtube.com/@mkbhd"
  ],
  "videoUrls": [
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  ],
  "playlistUrls": [
    "https://www.youtube.com/playlist?list=PLFgquLnL59alCl_2TQvOiD5Vgm1hCaGSI"
  ],
  "trendingRegions": [
    "US",
    "BR"
  ],
  "trendingCategory": "any",
  "maxResults": 50,
  "order": "date",
  "publishedAfter": "2026-08-20T00:00:00Z",
  "regionCode": "US",
  "relevanceLanguage": "en",
  "videoDuration": "any",
  "liveStreams": "",
  "excludeShorts": false,
  "commentsPerVideo": 0,
  "commentOrder": "top",
  "includeChannelDetails": true
}
```

## Output

```json
{
  "title": {
    "label": "Video",
    "format": "text"
  },
  "channelName": {
    "label": "Creator",
    "format": "text"
  },
  "numberOfSubscribers": {
    "label": "Subscribers",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "date": {
    "label": "Published",
    "format": "date"
  },
  "duration": {
    "label": "Length",
    "format": "text"
  },
  "url": {
    "label": "Watch",
    "format": "link"
  },
  "channelUrl": {
    "label": "Channel",
    "format": "link"
  },
  "fromQuery": {
    "label": "Found by",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Lexonia Search: Videos, Trending, Playlists for YouTube 视频搜索](https://apify.com/lexonia/youtube-search-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/lexonia/youtube-search-api.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/lexonia/youtube-search-api.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`).
