# Extract Today's Top Hits Spotify Playlist Metadata

**Use case:** 

Enrich Spotify's public Today's Top Hits playlist URL with owner, artwork, track count, and nested public track records for source-specific analysis.

## Input

```json
{
  "queries": [
    "indie workout"
  ],
  "playlistUrls": [
    "https://open.spotify.com/playlist/37i9dQZF1DXcBWIGoYBM5M"
  ],
  "includeTracks": true,
  "maxItems": 1
}
```

## Output

```json
{
  "name": {
    "label": "Playlist",
    "format": "string"
  },
  "url": {
    "label": "Spotify URL",
    "format": "string"
  },
  "owner": {
    "label": "Owner",
    "format": "string"
  },
  "trackCount": {
    "label": "Tracks",
    "format": "integer"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "imageUrl": {
    "label": "Cover",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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