π§ Download Songs, Playlists & Albums via API β‘ Fast β’ π Direct Links β’ π Developer Friendly
Provided by BIZ FACTORY
Endpoint:
GET /spotify/get?url={spotify_track_url}
Example:
https://api.fabdl.com/spotify/get?url=https://open.spotify.com/track/6rqhFgbbKwnb9MLmUQDhG6
Response:
{
"status": true,
"result": {
"id": "6rqhFgbbKwnb9MLmUQDhG6",
"gid": "xxxxxxxx",
"name": "Song Title",
"artists": "Artist Name",
"duration_ms": 215000
}
}Endpoint:
GET /spotify/mp3-convert-task/{gid}/{id}
Example:
https://api.fabdl.com/spotify/mp3-convert-task/xxxxxxxx/6rqhFgbbKwnb9MLmUQDhG6
Response:
{
"status": true,
"result": {
"download_url": "/path/to/file.mp3"
}
}Final Download URL:
https://api.fabdl.com{download_url}
- Both endpoints require valid Spotify track URLs.
- If
download_urlis missing, the track may not be available for download. - Use the returned
gidandidfrom the first call for the second endpoint.
Provided by BIZ FACTORY