# Scan Spotify Search Results for Topic Research

**Use case:** 

Run keyword searches across public Spotify catalog results to map artists, albums, tracks, playlists, shows, and episodes for a topic.

## Input

```json
{
  "spotifyUrls": [
    "https://open.spotify.com/artist/3TVXtAsR1Inumwj472S9r4",
    "https://open.spotify.com/album/4yP0hdKOZPNshxUOjY0cZj",
    "https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M",
    "https://open.spotify.com/show/2MAi0BvDc6GTFvKFPXnkCL"
  ],
  "searchQueries": [
    "arctic monkeys"
  ],
  "defaultType": "artist",
  "searchResultsPerType": 5,
  "maxResults": 25,
  "responseFormat": "concise",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "Spotify URL",
    "format": "string"
  },
  "monthlyListeners": {
    "label": "Monthly Listeners",
    "format": "integer"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "playcount": {
    "label": "Play Count",
    "format": "integer"
  },
  "publisher": {
    "label": "Publisher",
    "format": "string"
  },
  "coverArt": {
    "label": "Cover",
    "format": "string"
  },
  "dataSource": {
    "label": "Source",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Spotify Scraper — Artists, Tracks & Playlists](https://apify.com/khadinakbar/spotify-all-in-one-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/spotify-all-in-one-scraper) to learn more, explore other use cases, and run it yourself.