# Taylor Swift Spotify Artist Metadata

**Use case:** 

Extract public Spotify metadata for Taylor Swift including artist profile details, top tracks, images, Spotify URL, item type, track count, and scraped timestam

## Input

```json
{
  "startUrls": [
    "https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02"
  ],
  "maxItems": 1,
  "maxConcurrency": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "type": {
    "label": "Requested item type",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "subtitle": {
    "label": "Subtitle",
    "format": "string"
  },
  "releaseDate": {
    "label": "Release date",
    "format": "string"
  },
  "durationText": {
    "label": "Formatted duration",
    "format": "string"
  },
  "trackCount": {
    "label": "Returned track count",
    "format": "integer"
  },
  "imageUrl": {
    "label": "Primary image URL",
    "format": "string"
  },
  "url": {
    "label": "Spotify URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped timestamp",
    "format": "string"
  }
}
```

## About this Actor

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