Spotify Music MP3 Downloader avatar
Spotify Music MP3 Downloader

Pricing

$9.99/month + usage

Go to Store
Spotify Music MP3 Downloader

Spotify Music MP3 Downloader

Developed by

EasyApi

EasyApi

Maintained by Community

Easily download your favorite tracks in high quality. With batch downloading capabilities and comprehensive data retrieval, you'll enhance your music library effortlessly! 🎵

4.0 (2)

Pricing

$9.99/month + usage

1

Total users

72

Monthly users

11

Runs succeeded

>99%

Last modified

5 months ago

🎵 Spotify Music MP3 Downloader

Effortlessly download your favorite tracks with our Spotify Music MP3 Downloader! This Apify actor allows you to input multiple Spotify track links and retrieve high-quality MP3 files for your listening pleasure.

🌟 Key Features

  • Batch Downloading: Input multiple Spotify track links to download songs in bulk.
  • High-Quality MP3: Get access to high-quality MP3 files of your favorite tracks.

🛠️ Data Fields Returned

The downloader retrieves a comprehensive set of fields for each track, including:

  • url: Spotify URL for the track.
  • result:
    • url: Unique track identifier.
    • title: Title of the track.
    • thumbnail: URL to the album art or thumbnail image.
    • duration: Length of the track (if available).
    • medias: An array of media objects containing:
      • url: Direct link to the MP3 stream.
      • quality: Quality of the audio (e.g., "audio").
      • extension: File extension (e.g., "mp3").
      • type: Type of media (e.g., "audio").
    • type: Type of content (e.g., "single").
    • error: Indicates if there was an error during retrieval (boolean).

🚀 Why Choose Our Downloader?

  • Convenient and Fast: Quickly download multiple tracks without hassle.
  • User-Friendly Interface: Designed to be intuitive, making it easy for anyone to use.
  • Quality Assurance: Ensure you get high-quality audio files for your music library.

Input

A full explanation of an input example in JSON.

1{
2  "links": [
3      "https://open.spotify.com/track/7Mu0u7u2e0eOiAvMfEr2A7",
4      "https://open.spotify.com/track/5G2f63n7IPVPPjfNIGih7Q"
5  ]
6}

Output sample

The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

1[
2  {
3    "url": "https://open.spotify.com/track/7Mu0u7u2e0eOiAvMfEr2A7",
4    "result": {
5      "url": "https://open.spotify.com/track/7Mu0u7u2e0eOiAvMfEr2A7",
6      "title": "Japoni (Feat. Camin, Moncho Chavea, Jthyago & Samueliyo Baby)",
7      "thumbnail": "https://i.scdn.co/image/ab67616d0000b2732b856322329a6edaff940f42",
8      "duration": "",
9      "medias": [
10        {
11          "url": "https://cdn2.meow.gs/api/stream?id=zx1hqofHwlPsaAsb7XlMA&exp=1727057947359&sig=FDgE0ZSj8aSb2qa9Md6ULnqqyOvLfKoLoNenjEbSroI&sec=p46gzD-8V9YIqdggj1rul1Jje3jrBitvPYk98G3RDxg&iv=C2o2dKm2kP_rouyhfI7F_w",
12          "quality": "audio",
13          "extension": "mp3",
14          "type": "audio"
15        }
16      ],
17      "type": "single",
18      "error": false
19    }
20  },
21  {
22    "url": "https://open.spotify.com/track/5G2f63n7IPVPPjfNIGih7Q",
23    "result": {
24      "url": "https://open.spotify.com/track/5G2f63n7IPVPPjfNIGih7Q",
25      "title": "Taste",
26      "thumbnail": "https://i.scdn.co/image/ab67616d0000b273fd8d7a8d96871e791cb1f626",
27      "duration": "",
28      "medias": [
29        {
30          "url": "https://cdn4.meow.gs/api/stream?id=0dSpLL-akvBUf0O5fX4kK&exp=1727057950139&sig=obdaYoR6-DrXPBnB_lqvvhUA4ndT0R3EHjuVa3uiy5Q&sec=jC0jWWCoiwH-o9GLhCII5gfjv5YFptBQc3brusqXhHA&iv=to3XkIHX0MJzRLnMO9nBYA",
31          "quality": "audio",
32          "extension": "mp3",
33          "type": "audio"
34        }
35      ],
36      "type": "single",
37      "error": false
38    }
39  }
40]