# Spotify Discography Play Counts – Every Track's Streams

**Use case:** 

Scrape stream counts for an artist's entire catalog — every album and single. One artist URL returns play counts for all their tracks.

## Input

```json
{
  "urls": [
    {
      "url": "https://open.spotify.com/artist/7Ln80lUS6He07XvHI8qqHH"
    }
  ],
  "followAlbums": true,
  "followSingles": true,
  "followPopularReleases": false,
  "scrapePreviewUrls": false
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "_type": {
    "label": "Type",
    "format": "string"
  },
  "_url": {
    "label": "Input URL",
    "format": "string"
  },
  "monthlyListeners": {
    "label": "Monthly Listeners",
    "format": "integer"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "worldRank": {
    "label": "World Rank",
    "format": "integer"
  },
  "streamCount": {
    "label": "Stream Count",
    "format": "integer"
  }
}
```

## About this Actor

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