SoundCloud Scraper
Extract track data, artist profiles, playlists, and play counts from SoundCloud. Built on spider-browser .
- target
- soundcloud.com
- success rate
- 99.9%
- latency
- ~4ms
Extract data in minutes.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://soundcloud.com/charts/top");
await page.content(10000);
const data = await page.evaluate(`(() => {
const tracks = [];
document.querySelectorAll("article, [role='listitem'], li[class*='track']").forEach(el => {
const links = el.querySelectorAll("a[href*='/']");
const title = links[0]?.textContent?.trim();
const artist = links[1]?.textContent?.trim();
if (title) tracks.push({ title, artist });
});
return JSON.stringify({ total: tracks.length, tracks: tracks.slice(0, 20) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Fields you can pull.
Rich data extraction
Extract titles, view counts, and engagement metrics from soundcloud.com.
Dynamic content
Handle lazy-loaded comments, recommendations, and infinite scroll.
Channel-level scraping
Process entire channels and playlists with automatic pagination.
More Media scrapers.
YouTube Scraper
Extract video metadata, channel statistics, view counts, comments, playlist data, and trending content from YouTube. Full rendering for dynamic content and infinite scroll.
Twitch Scraper
Extract live stream data, channel info, viewer counts, and game categories from Twitch.
Spotify Scraper
Extract playlist data, track listings, artist info, and album metadata from Spotify.
Start scraping soundcloud.com.
Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.