GET soundcloud.com HTTP 2001.1 s2.6 KB$0.000067 captured Aug 7, 2026
soundcloud.com, as data
One API turns any soundcloud.com page into markdown, structured JSON, its link graph or a screenshot, and crawls the whole site the same way. The panel shows the real response we captured.
- Render mode
- Plain HTTP, no browser needed
- Response
- HTTP 200 in 1.1 s
- Page size
- 2.6 KB of markdown, 29 lines
- Fields
- Track name, Artist, Play count, Likes and 4 more
- Captured
- Aug 7, 2026
Free balance on signup, no card. This soundcloud.com page cost $0.000067 to fetch.
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. What Spider does on soundcloud.com
Same key, five endpoints. The numbers under a cell were measured on this page.
Page to markdown
Clean text for RAG and LLM context, boilerplate removed. The lane that runs without a key.
1.1 s · $0.000067Page to JSON
Spider reads the page and names the fields. Pass your own schema when you need exact keys.
Rendered capture
Real Chromium, full-page PNG. The same call also returns the rendered HTML.
The call behind the panel
This request produced the response above. Paste it with your key and you get the same bytes.
curl -X POST https://api.spider.cloud/scrape \
-H "Authorization: Bearer $SPIDER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://soundcloud.com/getstarted/insights", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://soundcloud.com/getstarted/insights", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://soundcloud.com/getstarted/insights", {
return_format: "markdown",
});
console.log(page.content); What soundcloud.com costs
Multiplied from the measured 2.6 KB page. Estimates round to the cent.
1 GB of transfer costs $1, plus $0.001 per CPU minute, and failed requests cost $0. Crawling daily? The Unlimited plan is a flat monthly rate.
Point this at the rest of soundcloud.com.
The capture above took 1.1 s and cost $0.000067. The same call takes any URL on soundcloud.com.