# Spotify Album Tracklist Extractor

**Use case:** 

Scrape Spotify album tracklists, release dates, track numbers, preview URLs and album metadata into a dataset.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://open.spotify.com/album/5Z9iiGl2FcIfa3BMiv6OIw"
    }
  ],
  "maxItems": 25,
  "includeLinkedTracks": true,
  "requestDelayMs": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "resultType": {
    "label": "Result type"
  },
  "pageType": {
    "label": "Page type"
  },
  "name": {
    "label": "Name"
  },
  "artistName": {
    "label": "Artist"
  },
  "releaseDate": {
    "label": "Release date"
  },
  "durationSeconds": {
    "label": "Duration"
  },
  "url": {
    "label": "Spotify URL"
  },
  "albumUrl": {
    "label": "Album URL"
  },
  "previewUrl": {
    "label": "Preview"
  },
  "parentName": {
    "label": "Parent"
  },
  "position": {
    "label": "Position"
  },
  "monthlyListeners": {
    "label": "Monthly listeners"
  },
  "savesCount": {
    "label": "Saves"
  },
  "itemCount": {
    "label": "Items"
  },
  "imageUrl": {
    "label": "Image"
  },
  "sourceUrl": {
    "label": "Input URL"
  },
  "spotifyId": {
    "label": "Spotify ID"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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