SoundCloud Scraper avatar
SoundCloud Scraper
Try for free

3 days trial then $25.00/month - No credit card required now

View all Actors
SoundCloud Scraper

SoundCloud Scraper

epctex/soundcloud-scraper
Try for free

3 days trial then $25.00/month - No credit card required now

Retrieve information from SoundCloud without any restrictions or rate limits. Extremely fast data harvesting about tracks, comments, user profiles, albums, playlists, and more. Download URLs of tracks, monetization methods, number of likes, number of shares, and many more are ready for you.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        "https://soundcloud.com/sibel-dar-c/ekin-ekinci-gel-art-k",
12        "https://soundcloud.com/sibel-dar-c",
13        "https://soundcloud.com/swedish-hiphop-rap-fm/sets/pistoler-poesi-och-sex",
14        "https://soundcloud.com/search/sets?q=dnb",
15        "https://soundcloud.com/search/people?q=dnb",
16        "https://soundcloud.com/search/albums?q=dnb",
17        "https://soundcloud.com/search/sounds?q=dnb"
18    ],
19    "maxItems": 20,
20    "endPage": 1,
21    "proxy": {
22        "useApifyProxy": true,
23        "apifyProxyGroups": [
24            "RESIDENTIAL"
25        ]
26    }
27};
28
29(async () => {
30    // Run the Actor and wait for it to finish
31    const run = await client.actor("epctex/soundcloud-scraper").call(input);
32
33    // Fetch and print Actor results from the run's dataset (if any)
34    console.log('Results from dataset');
35    const { items } = await client.dataset(run.defaultDatasetId).listItems();
36    items.forEach((item) => {
37        console.dir(item);
38    });
39})();
Developer
Maintained by Community
Actor metrics
  • 7 monthly users
  • 98.1% runs succeeded
  • 0.1 days response time
  • Created in Dec 2021
  • Modified about 15 hours ago