/v1/album
Album with track list
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/spotify-api/v1/album" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/spotify-api/v1/album", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/spotify-api/v1/album");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/spotify-api/v1/album",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"album": {
"id": "4aawyAB9vmqN3uQ7FjRGTy",
"uri": "spotify:album:4aawyAB9vmqN3uQ7FjRGTy",
"url": "https://open.spotify.com/album/4aawyAB9vmqN3uQ7FjRGTy",
"name": "Global Warming",
"type": "album",
"tracks": [
{
"id": "6OmhkSOpvYBokMKQxpIGx2",
"title": "Global Warming (feat. Sensato)",
"artists": [
"Pitbull",
"Sensato"
],
"explicit": true,
"playable": true,
"subtitle": "Pitbull, Sensato",
"has_video": false,
"duration_ms": 85400,
"audio_preview": "https://p.scdn.co/mp3-preview/81b57845f672fa5a0af749489e311ffb9fd552fe"
},
{
"id": "2iblMMIgSznA464mNov7A8",
"title": "Don't Stop the Party (feat. TJR)",
"artists": [
"Pitbull",
"TJR"
],
"explicit": false,
"playable": true,
"subtitle": "Pitbull, TJR",
"has_video": false,
"duration_ms": 206120,
"audio_preview": "https://p.scdn.co/mp3-preview/4791938e88ca063cb96a5fa8a7a2fad53d0c835e"
},
{
"id": "4yOn1TEcfsKHUJCL2h1r8I",
"title": "Feel This Moment (feat. Christina Aguilera)",
"artists": [
"Pitbull",
"Christina Aguilera"
],
"explicit": false,
"playable": true,
"subtitle": "Pitbull, Christina Aguilera",
"has_video": false,
"duration_ms": 229506,
"audio_preview": "https://p.scdn.co/mp3-preview/b962588e91271bb23b1ae0f7510824dc152a8466"
},
{
"id": "7fmpKF0rLGPnP7kcQ5ZMm7",
"title": "Back in Time - featured in \"Men In Black 3\"",
"artists": [
"Pitbull"
],
"explicit": false,
"playable": true,
"subtitle": "Pitbull",
"has_video": false,
"duration_ms": 207440,
"audio_preview": "https://p.scdn.co/mp3-preview/03b7d0b54b19ab95c621633f2761f8285d8f000b"
},
{
"id": "3jStb2imKd6oUoBT1zq5lp",
"title": "Hope We Meet Again (feat. Chris Brown)",
"artists": [
"Pitbull",
"Chris Brown"
],
"explicit":
…