# Spotify Artists Scraper (`easyapi/spotify-artists-scraper`) Actor

Scrape Spotify artists data by keywords. Get detailed artist profiles including name, verification status, images, and URLs. Perfect for music industry analysis, artist research, and data collection.

- **URL**: https://apify.com/easyapi/spotify-artists-scraper.md
- **Developed by:** [EasyApi](https://apify.com/easyapi) (community)
- **Categories:** Other
- **Stats:** 164 total users, 5 monthly users, 100.0% runs succeeded, 8 bookmarks
- **User rating**: No ratings yet

## 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/actors/running/actors-in-store.md#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

## Spotify Artists Scraper 🎵

Scrape detailed information about artists from Spotify based on your search keywords. This actor helps you collect comprehensive data about music artists efficiently and reliably.

### 🎯 Use Cases

- Music industry research and analysis
- Artist discovery and verification
- Marketing and promotional campaigns
- Database enrichment
- Competitive analysis
- Music trend analysis

### ✨ Features

- Search multiple keywords
- Get verified artist profiles
- Collect high-quality artist images
- Extract artist URLs and Spotify URIs
- Customizable number of results

### 🔢 Output

The actor provides detailed information for each artist, including:

- Artist name
- Verification status
- Spotify URI
- Profile images in multiple resolutions
- Color scheme information
- Direct Spotify URL
- Original search keyword

### 💎 Input Parameters

- `keywords` (Array): List of keywords to search for artists
- `maxItems` (Number): Maximum number of artists to scrape per keyword

#### Input Example

A full explanation of an input example in JSON.

```
{
    "keywords": ["punk"],
    "maxItems": 50
}
```

#### 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.

```
[
	{
		"__typename": "Artist",
		"profile": {
			"name": "Punk Sailor",
			"verified": true
		},
		"uri": "spotify:artist:4r9UwmrPx85eon7CA4Oj4B",
		"visuals": {
			"avatarImage": {
				"extractedColors": {
					"colorDark": {
						"hex": "#535353",
						"isFallback": true
					}
				},
				"sources": [
					{
						"height": 640,
						"url": "https://i.scdn.co/image/ab6761610000e5eb22243eb7a7030b76e830c026",
						"width": 640
					},
					{
						"height": 160,
						"url": "https://i.scdn.co/image/ab6761610000f17822243eb7a7030b76e830c026",
						"width": 160
					},
					{
						"height": 320,
						"url": "https://i.scdn.co/image/ab6761610000517422243eb7a7030b76e830c026",
						"width": 320
					}
				]
			}
		},
		"artistUrl": "https://open.spotify.com/artist/4r9UwmrPx85eon7CA4Oj4B",
		"keyword": "punk"
	},
	{
		"__typename": "Artist",
		"profile": {
			"name": "Daft Punk",
			"verified": true
		},
		"uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi",
		"visuals": {
			"avatarImage": {
				"extractedColors": {
					"colorDark": {
						"hex": "#687098",
						"isFallback": false
					}
				},
				"sources": [
					{
						"height": 640,
						"url": "https://i.scdn.co/image/ab6761610000e5eba7bfd7835b5c1eee0c95fa6e",
						"width": 640
					},
					{
						"height": 160,
						"url": "https://i.scdn.co/image/ab6761610000f178a7bfd7835b5c1eee0c95fa6e",
						"width": 160
					},
					{
						"height": 320,
						"url": "https://i.scdn.co/image/ab67616100005174a7bfd7835b5c1eee0c95fa6e",
						"width": 320
					}
				]
			}
		},
		"artistUrl": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi",
		"keyword": "punk"
	},
    ...
]
```

# Actor input Schema

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

List of keywords to search for artists

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

Maximum number of artists to scrape per keyword

## Actor input object example

```json
{
  "keywords": [
    "rock"
  ],
  "maxItems": 50
}
```

# 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/spotify-artists-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/spotify-artists-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).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/spotify-artists-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,easyapi/spotify-artists-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/eIZVbNuNNMFmODefJ/builds/Zf2EXYq3PMsqXKs7V/openapi.json
