Spotify Search Scraper avatar

Spotify Search Scraper

Pricing

from $4.99 / 1,000 results

Go to Apify Store
Spotify Search Scraper

Spotify Search Scraper

Search Spotify by keyword and category, collecting results metadata with rich fields for analysis, discovery, and research.

Pricing

from $4.99 / 1,000 results

Rating

0.0

(0)

Developer

PowerAI

PowerAI

Maintained by Community

Actor stats

1

Bookmarked

3

Total users

2

Monthly active users

4 days ago

Last modified

Share

๐ŸŽง Spotify Playlist Search Scraper

Search Spotify playlists by keyword and collect playlist metadata for analysis, discovery, and research. Each scraped playlist record includes a scrapedAt timestamp so you can track when the data was retrieved.

โœจ What You Get

  • ๐ŸŽต Playlist results from your search keyword (q)
  • ๐Ÿงพ Rich playlist metadata (for example: uri, name, description)
  • ๐Ÿ–ผ๏ธ Optional image information for the playlist
  • ๐Ÿ‘ค Owner information
  • ๐Ÿง  Structured JSON output ready for downstream processing

๐ŸŽฏ Good For

  • Content discovery and recommendation research
  • Music/genre trend exploration
  • Competitive playlist benchmarking
  • Building searchable datasets for analytics
  • Curator workflows and playlist dataset enrichment

๐Ÿ“ Input

ParameterRequiredDescription
qYesSearch keyword (for example: pop, hip hop, workout).
maxResultsNoMaximum number of playlists to collect (default: 30).
glNoOptional region code to influence search results (for example: US).
typeNoSearch result category (allowed values: albums, artists, episodes, genres, playlists, podcasts, tracks, users). Defaults to playlists.

Input Example

{
"q": "pop",
"maxResults": 30,
"type": "playlists"
"gl": "US"
}

๐Ÿ“ฆ Output

The actor returns a dataset of playlist records. Each record is a JSON object containing playlist fields plus scrapedAt.

Output Example

[
{
"uri": "spotify:playlist:37i9dQZF1EQncLwOalG3K7",
"name": "Pop Mix",
"description": "<a href=spotify:playlist:37i9dQZF1EIZFhEj3Qdecv>The Chainsmokers</a>, ...",
"images": {
"items": [
{
"sources": [
{ "url": "https://pickasso.spotifycdn.com/image/...", "width": null, "height": null }
]
}
]
},
"owner": { "name": "Spotify" },
"scrapedAt": "2026-03-23T06:40:35.280Z"
}
]