# Scrape artists by keyword on Spotify

**Use case:** 

Extract artist listings by keyword from Spotify in the US market. Structured catalog data with names and profiles. Pay per result.

## Input

```json
{
  "searchQuery": "jazz",
  "entityTypes": [
    "artist"
  ],
  "startUrls": [],
  "spotifyIds": [],
  "maxResults": 10,
  "market": "US",
  "includeTracklist": false,
  "expandArtistAlbums": false,
  "includeArtistStats": false,
  "filterTypes": [],
  "explicitFilter": "all",
  "genres": [],
  "releasedAfter": "",
  "releasedBefore": "",
  "includeMedia": true,
  "clientId": "",
  "useProxy": false
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "artistName": {
    "label": "Artist",
    "format": "text"
  },
  "popularity": {
    "label": "Popularity",
    "format": "number"
  },
  "releaseDate": {
    "label": "Released",
    "format": "text"
  },
  "spotifyUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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