Skip to main content
GET
/
api
/
v1
/
albums
/
tracks
Album tracks
curl --request GET \
  --url https://spotify-api31.p.rapidapi.com/api/v1/albums/tracks \
  --header 'x-rapidapi-key: <api-key>'
{
  "data": [
    {
      "id": "5ftED3IYts5K7gChGOUuHG",
      "name": "20180512",
      "uri": "spotify:track:5ftED3IYts5K7gChGOUuHG",
      "duration": 247663,
      "artists": [
        {
          "name": "Luis Fonsi",
          "uri": "spotify:artist:4V8Sr092TqfHkfAA5fXXqG"
        }
      ],
      "contentRating": {
        "label": "NONE"
      },
      "playability": {
        "playable": true
      }
    }
  ],
  "message": "Success",
  "statusCode": 200,
  "pagination": {
    "total": 100,
    "hasMore": true,
    "continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
  }
}

Authorizations

x-rapidapi-key
string
header
required

API Key

Query Parameters

uri
string
required

Spotify album or prerelease URI to get the detail of

Example:

"spotify:album:70hX7IYqmUGV97OXs2v848"

offset
number
default:0

Offset for pagination

Required range: x >= 0
Example:

0

limit
number
default:300

Number of results to return

Required range: 1 <= x <= 300
Example:

300

Response

Success

data
object[]
required

Array of tracks in the album

message
string
Example:

"Success"

statusCode
number
Example:

200

pagination
object