# Spotify Tracks, Artists, and Albums Metadata Extractor

**Use case:** 

Extract detailed metadata from Spotify tracks and albums, including audio features and artist information, all in one comprehensive output.

## Input

```json
{
  "tracks": [
    "https://open.spotify.com/track/0DiWol3AO6WpXZgp0goxAV",
    "49X0LAl6faAusYq02PRAY6",
    "Music Sounds Better With You"
  ],
  "tracksIncludeArtists": true,
  "tracksIncludeAlbum": true,
  "tracksIncludeAudioFeatures": true,
  "tracksIncludeAvailableMarkets": false,
  "artists": [
    "https://open.spotify.com/artist/0L8ExT028jH3ddEcZwqJJ5",
    "4Z8W4fKeB5YxbusRsdQVPb",
    "System Of A Down"
  ],
  "artistsIncludeTopTracks": false,
  "artistsIncludeAlbums": false,
  "artistsIncludeAvailableMarkets": false,
  "albums": [
    "https://open.spotify.com/album/2ANVost0y2y52ema1E9xAZ",
    "25WE9xmZIYadg5lhdgscTJ",
    "The Dark Side Of The Moon"
  ],
  "albumsIncludeTracks": true,
  "albumsIncludeArtists": true,
  "albumsIncludeAvailableMarkets": false,
  "searchKeywordLimit": 3,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "image": {
    "label": "Image",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "result": {
    "label": "Result",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "mode": {
    "label": "Mode",
    "format": "string"
  },
  "target": {
    "label": "Target",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "success": {
    "label": "Success",
    "format": "boolean"
  }
}
```

## About this Actor

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