# Spotify saver with MP3 files

**Use case:** 

Run a saved Spotify saver task that can store MP3 files in Apify key-value storage and export saved-file metadata.

## Input

```json
{
  "trackUrls": [],
  "keywords": [
    "Camila Cabello Havana"
  ],
  "explicitContent": "all",
  "resolutionMode": "save_files",
  "maxTracksPerSearch": 3,
  "maxTracks": 3
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "trackName": {
    "label": "Track",
    "format": "string"
  },
  "artistNames": {
    "label": "Artists",
    "format": "array"
  },
  "albumName": {
    "label": "Album",
    "format": "string"
  },
  "durationMs": {
    "label": "Duration ms",
    "format": "number"
  },
  "explicit": {
    "label": "Explicit",
    "format": "boolean"
  },
  "isrc": {
    "label": "ISRC",
    "format": "string"
  },
  "spotifyUrl": {
    "label": "Spotify URL",
    "format": "string"
  },
  "media.audioPreviewUrl": {
    "label": "Preview URL",
    "format": "string"
  },
  "media.downloadUrl": {
    "label": "MP3 URL",
    "format": "string"
  },
  "savedFile.key": {
    "label": "Saved file key",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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