# Export Spotify Album Metadata

**Use case:** 

Export public Spotify album metadata, release details, label, track totals, markets, cover images, and clean dataset fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://open.spotify.com/album/6DEjYFkNZh67HP7R9PSZvv"
    }
  ],
  "spotifyUris": [],
  "searchQueries": [],
  "searchTypes": [
    "track",
    "artist",
    "album",
    "playlist"
  ],
  "maxSearchResults": 10,
  "market": "US",
  "maxItems": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "type": {
    "label": "Entity type",
    "format": "string"
  },
  "id": {
    "label": "Spotify ID",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "artistNames": {
    "label": "Artists",
    "format": "array"
  },
  "albumName": {
    "label": "Album",
    "format": "string"
  },
  "ownerName": {
    "label": "Owner",
    "format": "string"
  },
  "publisherName": {
    "label": "Publisher",
    "format": "string"
  },
  "monthlyListeners": {
    "label": "Monthly listeners",
    "format": "integer"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "trackCount": {
    "label": "Item count",
    "format": "integer"
  },
  "durationMs": {
    "label": "Duration",
    "format": "integer"
  },
  "releaseDate": {
    "label": "Release date",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image",
    "format": "string"
  },
  "url": {
    "label": "Spotify URL",
    "format": "string"
  },
  "source": {
    "label": "Data source",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

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