Spotify Scraper
Pricing
from $0.03 / 1,000 result extracteds
Spotify Scraper
Extract public Spotify artist, track, album, playlist, and search metadata without an API key. Export IDs, names, images, release dates, durations, monthly listeners, and saves when visible.
Pricing
from $0.03 / 1,000 result extracteds
Rating
0.0
(0)
Developer
Hanna Nosova
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
Extract public Spotify artists, albums, tracks, playlists, and search-page metadata from Spotify URLs without using the official Spotify API.
What does Spotify Scraper do?
Spotify Scraper turns public Spotify pages into a structured dataset.
It accepts artist, album, track, playlist, and search URLs, plus optional search queries.
The actor saves normalized metadata such as names, descriptions, Spotify IDs, image URLs, artists, albums, playlist owners, track counts, monthly listeners, likes or saves when visible, release dates, and duration for tracks.
Use it when you need repeatable Spotify research data in CSV, JSON, Excel, XML, or API form.
Who is it for?
- π§ Music marketers monitoring public artist and playlist presence.
- π Labels and managers tracking catalog metadata and playlist context.
- π Playlist researchers collecting public playlist snapshots.
- π§βπ€ Creator agencies building artist discovery workflows.
- π§ͺ Data analysts comparing public Spotify metadata across many URLs.
- π€ Automation builders feeding Spotify data into dashboards and alerts.
Why use this actor?
- β Scrape public Spotify pages without an API key.
- β Mix artists, albums, tracks, playlists, and search pages in one run.
- β Export clean rows instead of copying data manually.
- β Limit results for predictable cost.
- β Use optional Apify Proxy settings when needed.
- β Schedule recurring monitoring on Apify.
- β Connect results to webhooks, Zapier, Make, Google Sheets, or BI tools.
Common use cases
- Build a public artist watchlist.
- Collect Spotify track metadata for campaign reports.
- Monitor public playlist titles, owners, saves, and item counts.
- Create catalog enrichment tables for internal tools.
- Compare album release dates and track counts.
- Feed dashboards with public Spotify URLs and images.
- Archive public metadata snapshots over time.
Supported Spotify URLs
- Artist pages such as
https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02. - Track pages such as
https://open.spotify.com/track/1dGr1c8CrMLDpV6mPbImSI. - Album pages such as
https://open.spotify.com/album/1Mo4aZ8pdj6L1jx8zSwJnt. - Playlist pages such as
https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M. - Search pages such as
https://open.spotify.com/search/taylor%20swift. - Search queries entered directly in the input.
What data can you extract from Spotify?
| Field | Description |
|---|---|
type | Spotify entity type: artist, album, track, playlist, search, or unknown. |
id | Spotify ID parsed from the URL. |
url | Canonical public Spotify URL. |
name | Public entity name or page title. |
description | Public Spotify description text. |
artistNames | Artist names when visible in public metadata. |
albumName | Album name for tracks when visible. |
ownerName | Playlist owner name when visible. |
trackCount | Album or playlist item count when visible. |
monthlyListeners | Artist monthly listeners when visible. |
likes | Playlist saves or likes when visible. |
followers | Reserved for follower counts when visible. |
durationMs | Track duration in milliseconds when available. |
releaseDate | Track or album release date when available. |
imageUrl | Public cover or profile image URL. |
explicit | Whether explicit labeling is visible. |
isrc | Reserved for ISRC when public metadata exposes it. |
searchQuery | Original search query for query-generated URLs. |
sourceUrl | Input URL used for the request. |
scrapedAt | ISO timestamp of extraction. |
How much does it cost to scrape Spotify metadata?
Spotify Scraper uses pay-per-event pricing.
You pay a $0.005 start fee for each run and then a tiered per-record fee for each saved Spotify metadata row.
The formula-derived BRONZE per-record price is $0.000047832. Other tiers are FREE $0.000055007, SILVER $0.000037309, GOLD $0.000028699, PLATINUM $0.000019133, and DIAMOND $0.000013393 per record.
The input prefill is intentionally small so your first run is inexpensive.
For larger monitoring jobs, set maxItems to the number of records you actually need.
How to use Spotify Scraper
- Open the actor on Apify.
- Paste Spotify URLs into Spotify URLs.
- Optionally add terms to Search queries.
- Set Maximum records.
- Leave proxy disabled unless your environment needs it.
- Click Start.
- Download results from the Dataset tab.
Input example
{"startUrls": [{ "url": "https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02" },{ "url": "https://open.spotify.com/track/1dGr1c8CrMLDpV6mPbImSI" },{ "url": "https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M" }],"searchQueries": ["taylor swift"],"maxItems": 10,"proxyConfiguration": { "useApifyProxy": false }}
Output example
{"type": "track","id": "1dGr1c8CrMLDpV6mPbImSI","url": "https://open.spotify.com/track/1dGr1c8CrMLDpV6mPbImSI","name": "Lover","description": "Taylor Swift Β· Lover Β· Song Β· 2019","artistNames": ["Taylor Swift"],"albumName": "Lover","durationMs": 221000,"releaseDate": "2019-08-23","imageUrl": "https://i.scdn.co/image/...","scrapedAt": "2026-06-21T00:00:00.000Z"}
Tips for best results
- π― Prefer direct Spotify URLs when you know the exact artist, track, album, or playlist.
- π Use search queries for lightweight discovery or recurring search-page snapshots.
- π’ Keep
maxItemsclose to the number of URLs you provide. - π§ͺ Test a small batch before scheduling a large recurring run.
- π§Ή Deduplicate your URL list before running repeated monitoring jobs.
- π Use proxies only when you see network-level blocking.
Scheduling Spotify monitoring
You can schedule the actor to run daily, weekly, or monthly.
Recurring runs are useful for public artist watchlists, playlist monitoring, release reports, and catalog QA.
Each run creates a fresh timestamped dataset so you can compare changes over time.
Integrations
- Send new dataset items to Google Sheets.
- Trigger webhooks when a scheduled run finishes.
- Connect Apify datasets to Make or Zapier.
- Pull results into a BI warehouse with the Apify API.
- Use dataset exports in CSV, JSON, Excel, XML, RSS, or HTML.
API usage with Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('fetch_cat/spotify-scraper').call({startUrls: [{ url: 'https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02' }],maxItems: 5});console.log(run.defaultDatasetId);
API usage with Python
from apify_client import ApifyClientclient = ApifyClient('YOUR_APIFY_TOKEN')run = client.actor('fetch_cat/spotify-scraper').call(run_input={'startUrls': [{'url': 'https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M'}],'maxItems': 5,})print(run['defaultDatasetId'])
API usage with cURL
curl -X POST 'https://api.apify.com/v2/acts/fetch_cat~spotify-scraper/runs?token=YOUR_APIFY_TOKEN' \-H 'Content-Type: application/json' \-d '{"startUrls":[{"url":"https://open.spotify.com/track/1dGr1c8CrMLDpV6mPbImSI"}],"maxItems":5}'
MCP integration for Spotify workflows
Use Spotify Scraper through Apify MCP when you want Claude or another MCP client to launch runs and inspect datasets.
MCP URL:
https://mcp.apify.com/?tools=fetch_cat/spotify-scraper
Claude Code example:
$claude mcp add apify-spotify https://mcp.apify.com/?tools=fetch_cat/spotify-scraper
Claude Desktop example:
{"mcpServers": {"apify-spotify": {"url": "https://mcp.apify.com/?tools=fetch_cat/spotify-scraper"}}}
Example prompts for Spotify Scraper MCP usage:
- "Use the
fetch_cat/spotify-scraperMCP tool to scrape these Spotify artist URLs and summarize their public monthly listener counts." - "Run Spotify Scraper through MCP for this playlist URL, wait for the Apify run to finish, and show the dataset export link."
- "Use MCP to compare metadata from these Spotify album URLs and return release dates, cover images, and track counts."
Data freshness
Spotify pages can change at any time.
Every run fetches the current public page content and includes scrapedAt so you can track when a value was collected.
For repeatable monitoring, schedule the actor and compare datasets by URL and timestamp.
Limits and caveats
- The actor only extracts public data visible without logging in.
- Private libraries, user-only playlists, and account data are not supported.
- Some fields are available only for certain entity types.
- Spotify may change page formatting, which can affect field availability.
- Search-query rows represent public search pages, not private personalized results.
Legality and ethical use
This actor is designed for public Spotify metadata.
Do not use it to collect private account data, bypass access controls, or violate Spotify terms.
You are responsible for ensuring your use case complies with applicable laws, platform terms, and privacy requirements.
Troubleshooting
Why is a field empty?
Some values are not visible on every public Spotify page. For example, track duration is usually available on tracks, while playlist saves are available on playlists.
Why did my URL return no item?
Check that the URL is public and starts with https://open.spotify.com/. Private or removed content may not expose public metadata.
Should I enable proxies?
Start with proxies disabled. If your run receives network errors or blocking from your environment, enable Apify Proxy and retry a small batch.
FAQ
Can I scrape Spotify without an API key?
Yes. This actor works with public Spotify web pages and does not require a Spotify API key.
Can it scrape play counts?
This MVP focuses on public metadata visible without login. Play counts are not guaranteed on all public pages.
Can it scrape playlists?
Yes. Public playlist pages are supported and can return owner, item count, image, and saves when visible.
Can I export the data?
Yes. Apify datasets can be exported as JSON, CSV, Excel, XML, HTML, and RSS.
Related actors
- https://apify.com/fetch_cat/youtube-channel-videos-scraper
- https://apify.com/fetch_cat/tiktok-profile-scraper
- https://apify.com/fetch_cat/reddit-scraper
- https://apify.com/fetch_cat/google-news-scraper
Support
If you find a public Spotify page that should work but does not, open an issue with the input URL and run ID.
Small, reproducible examples help us improve extraction quickly.