SoundCloud Scraper
Spider read soundcloud.com in 1.1 s without a browser and returned 29 lines of clean markdown, including the section "See who's listening. Know what's landing".
Keep track of plays, fans, and listener locations across SoundCloud all in one place.### See who's listening. Know what's landing.Insights gives you a real-time look at how your music is performing — plays, likes, reposts, comments, and downloads, all in one place.With an Artist or Artist Pro plan, you get the full picture:Top Tracks shows you what's resonating so you know what to lean into.Top Fans surfaces the listeners who keep coming back on repeat - your first 10 dedicated fans, then 100, then the start of a real fanbaseAnd First Fans shows who was there from the jump, before anyone else hit play.You can also see exactly where in the world your fans are listening from, broken down by city and country - useful for planning tours, targeting promos, or just knowing where your music is landing.And if you're distributing through SoundCloud, the All Platforms tab pulls your SoundCloud, Spotify, and Apple Music stats into one view so you're not jumping between dashboards.Plays, likes, comments, reposts, and downloads — broken down by day, week, month, or year. You'll also see your top 5 tracks, top fans, first fans, and which websites and apps are driving plays. Artist Pro subscribers get deeper data including top listeners and location breakdowns by city and country.On desktop, click your profile avatar and select "Your Insights." On mobile, go to your Artist Home, Library, or SoundCloud Channel and tap "Your Insights." You can also see a quick summary on the right side of your Feed showing plays from the last 24 hours and 7 days.**Can I see Insights for individual tracks?**Yes. Each track page on desktop shows how many times it's been recommended and how many fans have listened more than once. This is only visible to you — other users can't see it. If you've opted into Amplify, the recommended plays section turns purple to show active promotion. The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on soundcloud.com.
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");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); 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(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What soundcloud.com costs to scrape.
The capture above cost $0.000067 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
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.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.