Youtube Music Similar Playlist avatar
Youtube Music Similar Playlist

Pricing

$3.00 / 1,000 results

Go to Apify Store
Youtube Music Similar Playlist

Youtube Music Similar Playlist

Developed by

Maged

Maged

Maintained by Community

0.0 (0)

Pricing

$3.00 / 1,000 results

0

2

2

Last modified

24 days ago

YouTube Music Similar Playlist Actor

Overview

The YouTube Music Similar Playlist Actor is an Apify actor that fetches the "watch playlist" (related tracks) from YouTube Music for a given video ID. It is ideal for discovering tracks that are similar to or often played after a given song.

Features

  • Related Tracks: Fetches tracks related to a given video ID.
  • Output Formats: Data stored in Apify’s dataset, exportable as JSON or CSV, with a table view in Apify UI.
  • Cross-Language Access: Run via Apify’s REST API or SDKs (Python, Node.js, etc.) for integration with any language.

Input Configuration

The actor accepts a JSON input with the following field:

FieldTypeDescriptionRequiredDefault
videoIdStringYouTube video ID to get playlistYes-

Example Input:

{
"videoId": "dQw4w9WgXcQ"
}

Output Format

The actor outputs data to Apify’s dataset, viewable as a table in the Apify UI or exportable as JSON/CSV. Each record contains:

FieldTypeDescription
videoIdStringVideo ID
titleStringTrack title
lengthStringTrack length
thumbnailArrayThumbnails
artistsArrayArtists
viewsStringView count

Example Output:

{
"videoId": "dQw4w9WgXcQ",
"title": "Never Gonna Give You Up",
"length": "3:34",
"thumbnail": [
{"url": "https://i.ytimg.com/vi/dQw4w9WgXcQ/sddefault.jpg", "width": 400, "height": 225}
],
"artists": [
{"name": "Rick Astley", "id": "UCwZEU0wAwIyZb4x5G_KJp2w"}
],
"views": "18M"
}