Skip to main content
AI Studio  add-on for Spider.
soundcloud.com · HTTP 200

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".

Get your free API key
Free balance on signup No card. Failed requests cost $0.
Response soundcloud.com/getstarted/insights.md markdown · 29 lines
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.
Code · Fields · Cost · Run it keyless, no account

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.

soundcloud-scraper.ts
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();
ready to run · spider-browser, no selectors

Ready for volume? Get an API key →

Fields you can pull.

Track nameArtistPlay countLikesDurationGenreTagsWaveform

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
See the full pricing →

Run it keyless, no account

curl -X POST https://api.spider.cloud/scrape -H "Content-Type: application/json" -d '{"url": "https://soundcloud.com/getstarted/insights", "return_format": "markdown"}'

More Media scrapers.

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.