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 more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://soundcloud.com/sibel-dar-c/ekin-ekinci-gel-art-k",
9    "https://soundcloud.com/sibel-dar-c",
10    "https://soundcloud.com/swedish-hiphop-rap-fm/sets/pistoler-poesi-och-sex",
11    "https://soundcloud.com/search/sets?q=dnb",
12    "https://soundcloud.com/search/people?q=dnb",
13    "https://soundcloud.com/search/albums?q=dnb",
14    "https://soundcloud.com/search/sounds?q=dnb"
15  ],
16  "maxItems": 20,
17  "endPage": 1,
18  "proxy": {
19    "useApifyProxy": true,
20    "apifyProxyGroups": [
21      "RESIDENTIAL"
22    ]
23  }
24}
25EOF
26
27# Run the Actor using an HTTP API
28# See the full API reference at https://docs.apify.com/api/v2
29curl "https://api.apify.com/v2/acts/epctex~soundcloud-scraper/runs?token=$API_TOKEN" \
30  -X POST \
31  -d @input.json \
32  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 6 monthly users
  • 3 stars
  • 100.0% runs succeeded
  • Created in Dec 2021
  • Modified about 23 hours ago