# Spotify Music Intelligence Workflow

**Use case:** 

Scrape Spotify artists, albums, tracks, and playlists by URL for monthly listeners, followers, play counts, track data, and rankings.

## Input

```json
{
  "mode": "urls",
  "urls": [
    "https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02",
    "https://open.spotify.com/album/151w1FgRZfnKZA9FEcg9Z3",
    "https://open.spotify.com/track/1dGr1c8CrMLDpV6mPbImSI",
    "https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M"
  ],
  "searchTerms": [
    "arctic monkeys"
  ],
  "searchType": "tracks",
  "maxResults": 50
}
```

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