# YouTube Music Playlist Scraper

**Use case:** 

Find YouTube Music playlists for a keyword. Get titles, creators, song counts, source IDs, thumbnails, and links.

## Input

```json
{
  "keywords": [
    "jazz playlists"
  ],
  "youtubeMusicUrls": [],
  "searchType": "playlists",
  "maxResultsPerQuery": 10
}
```

## Output

```json
{
  "contentType": {
    "label": "Content type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "matchedInput": {
    "label": "Matched input",
    "format": "string"
  },
  "sourcePosition": {
    "label": "Source position",
    "format": "integer"
  },
  "creators": {
    "label": "Creators",
    "format": "array"
  },
  "album": {
    "label": "Album",
    "format": "object"
  },
  "playlist": {
    "label": "Playlist",
    "format": "object"
  },
  "durationSeconds": {
    "label": "Duration seconds",
    "format": "integer"
  },
  "releaseDate": {
    "label": "Release date",
    "format": "string"
  },
  "metrics": {
    "label": "Metrics",
    "format": "object"
  },
  "thumbnails": {
    "label": "Thumbnails",
    "format": "array"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Music Scraper](https://apify.com/maximedupre/youtube-music-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/youtube-music-scraper) to learn more, explore other use cases, and run it yourself.