Scraping Soundcloud Emails

Evnsmith

Registered Member
Joined
Jun 4, 2015
Messages
67
Reaction score
24
anyone know any good ways to scrape SoundCloud E-mails from soundcloud profiles (ones that are shown publicly) I cant seem to find anything new on how to do this.
 
anyone know any good ways to scrape SoundCloud E-mails from soundcloud profiles (ones that are shown publicly) I cant seem to find anything new on how to do this.
The only downside to this you'll have to filter out all European emails as it's against GDPR regulations. Maybe ask in hire a freelancer and get a custom program made
 
I've never seen a bot like this before. It may be more convenient for a freelance software developer to write a bot and get emails them. It's not a long process. Once the way to find profiles is determined, it is sufficient to get the text of the email field and save it.
 
You don't need a soundcloud specific bot for this., Just a tool that pulls the page, then runs a regex to extract emails from the page. That assumes you have already a list of profiles.

If not, then you can scrape them from google with a site:soundcloud.com query or you would need a soundcloud bot to get the profile urls
 
Last edited:
If they list the email on the page like the one you mentioned, the data is right in the page response. Easy to do yourself.

upload_2019-10-15_12-18-32.png
 
If they list the email on the page like the one you mentioned, the data is right in the page response. Easy to do yourself.

View attachment 122156

Some search result pages will include the artist bio, so you can get the emails from the results page without the need to pull each profile page one by one. If you modify the search request, you get more results than you do on the soundcloud site, so you can scrape huge numbers for emails in less requests
 
Bump. Need this. Might create this.
Email scraper is easy, is just a regex. If you have the page URLs, then is straight forward and shouldn't be an issue for you (going off your username).

The issue becomes if you need to scrape soundcloud URLs via the soundcloud search pages. Again not super complex, but an added extra complexity. But if you have a SERPs scraper and that is finding enough results for you, then you are good to go.
 
Scrapping logic is simple but that doesn't mean its easy to scrap just like that , Cause big companies will rate limit it can happen on 10th or 5th request. If you have multiple accounts + rotating proxies then its smooth.

Good luck :)
 
Scrapping logic is simple but that doesn't mean its easy to scrap just like that , Cause big companies will rate limit it can happen on 10th or 5th request. If you have multiple accounts + rotating proxies then its smooth.

Good luck :)

Soundcloud isn't difficult to scrape. No real rate limit issues either. No need for rotating proxies. If you're pulling the millionth search page request ID, doesn't matter if it's a new IP or not, they going to know what you're doing.

Only thing would be, Soundcloud used to then removed, then sporadically reapplied a 8000 result limit. Not sure if they do now, I don't think so, but haven't personally tested and confirmed for a while
 
Back
Top