/v1/album
Album with track list
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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":
…