# Spotify Artist Search Monitor

**Use case:** 

Search Spotify artists by keyword and extract artist names, URLs, images, monthly listeners, followers, world rank, genres, and biographies.

## Input

```json
{
  "mode": "search",
  "urls": [
    "https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02",
    "https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M"
  ],
  "searchTerms": [
    "arctic monkeys",
    "taylor swift"
  ],
  "searchType": "artists",
  "maxResults": 20
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "artists": {
    "label": "Artists",
    "format": "string"
  },
  "artist": {
    "label": "Artist",
    "format": "string"
  },
  "owner": {
    "label": "Owner",
    "format": "string"
  },
  "monthlyListeners": {
    "label": "Monthly Listeners",
    "format": "number"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "playCount": {
    "label": "Play Count",
    "format": "number"
  },
  "trackCount": {
    "label": "Track Count",
    "format": "number"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Spotify Scraper](https://apify.com/automation-lab/spotify-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/spotify-scraper) to learn more, explore other use cases, and run it yourself.