# Every video in a YouTube playlist, with views and dates

**Use case:** 

Paste a playlist link and get every video in it as one row each: title, views, likes, comments, length, publish date, tags, and the channel with its subscriber count. Read through Google's official API rather than page HTML, so nothing is blocked or broken by a redesign. A playlist costs no search quota at all; $0.001 per video. CSV, JSON or Excel.

## Input

```json
{
  "searchQueries": [
    "home espresso machine review",
    "best espresso grinder"
  ],
  "channelUrls": [
    "https://www.youtube.com/@mkbhd"
  ],
  "videoUrls": [
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  ],
  "playlistUrls": [
    "https://www.youtube.com/playlist?list=UU_x5XG1OV2P6uZZ5FSM9Ttw"
  ],
  "trendingRegions": [
    "US",
    "BR"
  ],
  "trendingCategory": "any",
  "maxResults": 50,
  "order": "relevance",
  "publishedAfter": "2026-06-01T00: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`).
