Youtube Music Search avatar
Youtube Music Search

Pricing

$3.00 / 1,000 results

Go to Store
Youtube Music Search

Youtube Music Search

Developed by

Maged

Maged

Maintained by Community

5.0 (1)

Pricing

$3.00 / 1,000 results

0

Total users

1

Monthly users

1

Runs succeeded

>99%

Last modified

2 days ago

YouTube Music Search Actor

Input Configuration

The actor accepts a JSON input with the following fields:

FieldTypeDescriptionRequiredDefault
queryStringSearch query for YouTube MusicYes-
filterStringType of result (songs, videos, albums, etc.)No-
scopeStringOptional scope for the searchNo-

Example Input:

{
"query": "Imagine Dragons",
"filter": "albums"
}

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
categoryStringResult category
resultTypeStringResult type
titleStringTitle
typeStringType
playlistIdStringPlaylist ID
durationStringDuration
yearStringYear
artistsArrayArtists
browseIdStringBrowse ID
isExplicitBooleanExplicit flag
thumbnailsArrayThumbnails
urlStringYouTube Music URL

URL Construction:

  • For albums/playlists: https://music.youtube.com/playlist?list={playlistId}
  • For videos/songs: https://music.youtube.com/watch?v={videoId}
  • For artists: https://music.youtube.com/channel/{browseId}
  • For other browseable items: https://music.youtube.com/browse/{browseId}

Example Output:

{
"category": "Albums",
"resultType": "album",
"title": "Imagine",
"type": "Album",
"playlistId": "OLAK5uy_mAbKBs8eHi1hV2HP99v9brseD68FbPxZE",
"duration": null,
"year": "1971",
"artists": [
{"name": "John Lennon", "id": "UCcSL2nYSJp_IgdzH0xBBdcg"}
],
"browseId": "MPREb_gDaohH1B2Wz",
"isExplicit": false,
"thumbnails": [
{"url": "https://lh3.googleusercontent.com/3NgQRedyr9sdsiEUyaJ9k2hTl5eTotzV5-6ABSiSGY9SFuHNJnWFcG9wiI-6sKQwCgXNlwp89VqZKR4C=w60-h60-l90-rj", "width": 60, "height": 60}
],
"url": "https://music.youtube.com/playlist?list=OLAK5uy_mAbKBs8eHi1hV2HP99v9brseD68FbPxZE"
}