Skip to main content gottem  — one API for every scraper.
Media
Verified

SoundCloud Scraper

Extract track data, artist profiles, playlists, and play counts from SoundCloud. Built on spider-browser .

Get started Docs
target
soundcloud.com
success rate
99.9%
latency
~4ms
Quick start

Extract data in minutes.

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");
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 to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Track nameArtistPlay countLikesDurationGenreTagsWaveform
Metadata

Rich data extraction

Extract titles, view counts, and engagement metrics from soundcloud.com.

Rendering

Dynamic content

Handle lazy-loaded comments, recommendations, and infinite scroll.

Scale

Channel-level scraping

Process entire channels and playlists with automatic pagination.

Related

More Media scrapers.

Start

Start scraping soundcloud.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.