# Spotify Track URL MP3 Extractor

**Use case:** 

Resolve a public Spotify track URL into metadata and a tagged MP3 with match score, source duration, file size, and download URL.

## Input

```json
{
  "trackUrls": [
    "https://open.spotify.com/track/4uLU6hMCjMI75M1A2tKUQC"
  ],
  "searchTerms": [],
  "maxTracks": 1,
  "bitrate": "192",
  "matchThreshold": 0.75
}
```

## Output

```json
{
  "title": {
    "label": "Track title",
    "format": "text"
  },
  "artist": {
    "label": "Artist",
    "format": "text"
  },
  "album": {
    "label": "Album",
    "format": "text"
  },
  "durationSeconds": {
    "label": "Spotify duration",
    "format": "number"
  },
  "spotifyUrl": {
    "label": "Spotify",
    "format": "link"
  },
  "matchedTitle": {
    "label": "Matched source title",
    "format": "text"
  },
  "matchedChannel": {
    "label": "Channel",
    "format": "text"
  },
  "matchScore": {
    "label": "Match score",
    "format": "number"
  },
  "sourceDurationSeconds": {
    "label": "Source duration",
    "format": "number"
  },
  "bitrateKbps": {
    "label": "Bitrate",
    "format": "number"
  },
  "fileSizeBytes": {
    "label": "File size",
    "format": "number"
  },
  "downloadUrl": {
    "label": "Download MP3",
    "format": "link"
  },
  "processedAt": {
    "label": "Processed",
    "format": "date"
  }
}
```

## About this Actor

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