curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/albums/detail \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"id": "3Gq2Dme9nesdgoqNNlcN8O",
"name": "Despacito Feat. Justin Bieber (Remix)",
"uri": "spotify:album:3Gq2Dme9nesdgoqNNlcN8O",
"artists": [
{
"id": "4V8Sr092TqfHkfAA5fXXqG",
"name": "Luis Fonsi",
"uri": "spotify:artist:4V8Sr092TqfHkfAA5fXXqG",
"avatar": [
{
"url": "https://i.scdn.co/image/ab6761610000e5ebc75a7a555898c9a59602b32b",
"width": 640,
"height": 640
}
]
}
],
"coverArt": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02a6a335d613d151c626895a83",
"width": 300,
"height": 300
}
],
"date": {
"isoString": "2017-04-17T00:00:00Z",
"precision": "DAY",
"year": 2017
},
"type": "SINGLE",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"label": "Republic/UMLE",
"copyright": [
{
"text": "© 2017 Universal Music Latin Entertainment, under exclusive license to Republic Records (RBMG/Def Jam Recordings)",
"type": "C"
}
],
"courtesyLine": "",
"totalTracks": 1,
"discs": [
{
"number": 1,
"totalTracks": 1
}
],
"sharingInfo": {
"shareId": "XbI8kOyGR4aZ1pLYh4QmJg",
"shareUrl": "https://open.spotify.com/album/3Gq2Dme9nesdgoqNNlcN8O?si=XbI8kOyGR4aZ1pLYh4QmJg"
},
"isPreRelease": false,
"saved": false,
"tracks": [
{
"id": "62lAwPVnYrYdRXeJyL5mhz",
"name": "Piep Piep Piep",
"uri": "spotify:track:62lAwPVnYrYdRXeJyL5mhz",
"duration": 229933,
"artists": [
{
"id": "6j8vGWE3wKAFEn0ngreusM",
"name": "The Butcher Sisters",
"uri": "spotify:artist:6j8vGWE3wKAFEn0ngreusM",
"avatar": [
{
"url": "https://i.scdn.co/image/ab6761610000e5ebe8ed702299a74acfb0216ed5",
"width": 640,
"height": 640
}
]
}
],
"contentRating": {
"label": "EXPLICIT"
},
"hasOriginalAudio": true,
"playability": {
"playable": false
}
}
],
"hasMoreTracks": false
}
}Get detailed information about a specific album
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/albums/detail \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"id": "3Gq2Dme9nesdgoqNNlcN8O",
"name": "Despacito Feat. Justin Bieber (Remix)",
"uri": "spotify:album:3Gq2Dme9nesdgoqNNlcN8O",
"artists": [
{
"id": "4V8Sr092TqfHkfAA5fXXqG",
"name": "Luis Fonsi",
"uri": "spotify:artist:4V8Sr092TqfHkfAA5fXXqG",
"avatar": [
{
"url": "https://i.scdn.co/image/ab6761610000e5ebc75a7a555898c9a59602b32b",
"width": 640,
"height": 640
}
]
}
],
"coverArt": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02a6a335d613d151c626895a83",
"width": 300,
"height": 300
}
],
"date": {
"isoString": "2017-04-17T00:00:00Z",
"precision": "DAY",
"year": 2017
},
"type": "SINGLE",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"label": "Republic/UMLE",
"copyright": [
{
"text": "© 2017 Universal Music Latin Entertainment, under exclusive license to Republic Records (RBMG/Def Jam Recordings)",
"type": "C"
}
],
"courtesyLine": "",
"totalTracks": 1,
"discs": [
{
"number": 1,
"totalTracks": 1
}
],
"sharingInfo": {
"shareId": "XbI8kOyGR4aZ1pLYh4QmJg",
"shareUrl": "https://open.spotify.com/album/3Gq2Dme9nesdgoqNNlcN8O?si=XbI8kOyGR4aZ1pLYh4QmJg"
},
"isPreRelease": false,
"saved": false,
"tracks": [
{
"id": "62lAwPVnYrYdRXeJyL5mhz",
"name": "Piep Piep Piep",
"uri": "spotify:track:62lAwPVnYrYdRXeJyL5mhz",
"duration": 229933,
"artists": [
{
"id": "6j8vGWE3wKAFEn0ngreusM",
"name": "The Butcher Sisters",
"uri": "spotify:artist:6j8vGWE3wKAFEn0ngreusM",
"avatar": [
{
"url": "https://i.scdn.co/image/ab6761610000e5ebe8ed702299a74acfb0216ed5",
"width": 640,
"height": 640
}
]
}
],
"contentRating": {
"label": "EXPLICIT"
},
"hasOriginalAudio": true,
"playability": {
"playable": false
}
}
],
"hasMoreTracks": false
}
}API Key
Spotify album or prerelease URI to get the detail of
"spotify:album:70hX7IYqmUGV97OXs2v848"
Was this page helpful?