# Soundcloud People Search Scraper 🎵 (`easyapi/soundcloud-people-search-scraper`) Actor

Effortlessly scrape Soundcloud user profiles with customizable search and stealth browsing! 🎶

- **URL**: https://apify.com/easyapi/soundcloud-people-search-scraper.md
- **Developed by:** [EasyApi](https://apify.com/easyapi) (community)
- **Categories:** Social media, Integrations
- **Stats:** 36 total users, 0 monthly users, 100.0% runs succeeded, 2 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $2.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Soundcloud People Search Scraper 🎵

Effortlessly scrape Soundcloud user profiles based on your specified keywords! This actor leverages Puppeteer with stealth capabilities to navigate Soundcloud's search results, collecting user data efficiently and effectively. Whether you're conducting market research, gathering data for analysis, or simply exploring Soundcloud's vast user base, this tool is designed to meet your needs.

### Features ✨

- **Stealth Browsing**: Utilizes Puppeteer Extra with stealth plugins to mimic human-like browsing behavior, reducing the risk of being blocked.
- **Customizable Search**: Input your desired keywords and set the maximum number of profiles to scrape.
- **Data Interception**: Intercepts and processes API responses to gather user data directly from Soundcloud.
- **Randomized Delays**: Implements random delays and scrolling to simulate natural user interactions.

### Usage 🚀

1. **Input your keywords**: Provide a list of keywords to search for Soundcloud users.
2. **Set your limits**: Define the maximum number of profiles you wish to scrape.
3. **Run the actor**: Sit back and let the actor do the work!

### Output 📊

The actor outputs a structured dataset of Soundcloud user profiles, ready for your analysis or integration into other applications.

### Get Started

Simply deploy this actor on Apify, input your parameters, and start scraping Soundcloud user profiles today! 🎧

#### Input Example

A full explanation of an input example in JSON.

```
{
    "keywords": ["rain"],
    "maxItems": 30
}
```

#### Output sample

The results will be wrapped into a dataset which you can always find in the **Storage** tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

```
[
	{
		"avatar_url": "https://i1.sndcdn.com/avatars-zw9t81jJB4EGM7ZL-yNLWjA-large.jpg",
		"city": "Toronto",
		"comments_count": 0,
		"country_code": "CA",
		"created_at": "2012-11-24T01:13:36Z",
		"creator_subscriptions": [
			{
				"product": {
					"id": "creator-pro-unlimited"
				}
			}
		],
		"creator_subscription": {
			"product": {
				"id": "creator-pro-unlimited"
			}
		},
		"description": "FARGO FRIDAYS are back\n\nI LIKE out now: https://createmusic.fm/tlilke\n\nALONE AT PROM 🔥🍾😈☂️👇🏾👇🏾\nhttps://createmusic.fm/aloneatprom\n\nTory Lanez is Ashton Rain.",
		"followers_count": 1002617,
		"followings_count": 1,
		"first_name": "Tory",
		"full_name": "Tory Lanez",
		"groups_count": 0,
		"id": 28970722,
		"kind": "user",
		"last_modified": "2022-04-22T23:30:28Z",
		"last_name": "Lanez",
		"likes_count": 0,
		"playlist_likes_count": 1,
		"permalink": "torylanez",
		"permalink_url": "https://soundcloud.com/torylanez",
		"playlist_count": 34,
		"reposts_count": null,
		"track_count": 488,
		"uri": "https://api.soundcloud.com/users/28970722",
		"urn": "soundcloud:users:28970722",
		"username": "Tory Lanez",
		"verified": true,
		"visuals": {
			"urn": "soundcloud:users:28970722",
			"enabled": true,
			"visuals": [
				{
					"urn": "soundcloud:visuals:163817196",
					"entry_time": 0,
					"visual_url": "https://i1.sndcdn.com/visuals-000028970722-iVNWLD-original.jpg"
				}
			],
			"tracking": null
		},
		"badges": {
			"pro": false,
			"creator_mid_tier": false,
			"pro_unlimited": true,
			"verified": true
		},
		"station_urn": "soundcloud:system-playlists:artist-stations:28970722",
		"station_permalink": "artist-stations:28970722"
	},
    ...
]
```

# Actor input Schema

## `keywords` (type: `array`):

List of keywords to search for on Soundcloud

## `maxItems` (type: `integer`):

Maximum number of peoples to collect per keyword

## Actor input object example

```json
{
  "keywords": [
    "rain"
  ],
  "maxItems": 20
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("easyapi/soundcloud-people-search-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("easyapi/soundcloud-people-search-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call easyapi/soundcloud-people-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=easyapi/soundcloud-people-search-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/0NdjYKu8dfDfLfiRX/builds/26rzBdZfzAMxsHYo8/openapi.json
