# Search Spotify Metadata

**Use case:** 

Search public Spotify pages and export clean artist, track, album, playlist, and search metadata without requiring a Spotify API key.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02"
    },
    {
      "url": "https://open.spotify.com/track/1dGr1c8CrMLDpV6mPbImSI"
    },
    {
      "url": "https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M"
    }
  ],
  "searchQueries": [
    "taylor swift"
  ],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "id": {
    "label": "Spotify ID",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "artistNames": {
    "label": "Artists",
    "format": "array"
  },
  "albumName": {
    "label": "Album",
    "format": "text"
  },
  "ownerName": {
    "label": "Owner",
    "format": "text"
  },
  "trackCount": {
    "label": "Tracks",
    "format": "number"
  },
  "monthlyListeners": {
    "label": "Monthly listeners",
    "format": "number"
  },
  "likes": {
    "label": "Likes / saves",
    "format": "number"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "durationMs": {
    "label": "Duration (ms)",
    "format": "number"
  },
  "releaseDate": {
    "label": "Release date",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "explicit": {
    "label": "Explicit",
    "format": "boolean"
  },
  "isrc": {
    "label": "ISRC",
    "format": "text"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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