Skip to main content
GET
/
api
/
v1
/
artists
/
albums
Get artist albums
curl --request GET \
  --url https://spotify-api31.p.rapidapi.com/api/v1/artists/albums \
  --header 'x-rapidapi-key: <api-key>'
{
  "message": "Success",
  "statusCode": 200,
  "pagination": {
    "total": 100,
    "hasMore": true,
    "continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
  },
  "data": {
    "totalCount": 16,
    "items": [
      {
        "releases": {
          "items": [
            {
              "id": "2jCgqL6qRRF8yuQhc21qVQ",
              "name": "Monkey Business (20th Anniversary Edition)",
              "uri": "spotify:album:2jCgqL6qRRF8yuQhc21qVQ",
              "type": "ALBUM",
              "coverArts": [
                {
                  "url": "https://i.scdn.co/image/ab67616d00001e02157dc50520610ef539250300",
                  "width": 300,
                  "height": 300
                }
              ],
              "date": {
                "isoString": "2025-06-06T00:00:00Z",
                "precision": "DAY",
                "year": 2025
              },
              "playability": {
                "playable": true,
                "reason": "PLAYABLE"
              },
              "sharingInfo": {
                "shareUrl": "https://open.spotify.com/album/2jCgqL6qRRF8yuQhc21qVQ?si=8pOb6lH2TD6CPLfO45SohA",
                "shareId": "8pOb6lH2TD6CPLfO45SohA"
              },
              "tracks": {
                "totalCount": 31
              }
            }
          ]
        }
      }
    ]
  }
}

Authorizations

x-rapidapi-key
string
header
required

API Key

Query Parameters

uri
string
required

Spotify artist URI to get artist albums

Example:

"spotify:artist:1yxSLGMDHlW21z4YXirZDS"

offset
number
default:0

Offset for pagination (default: 0)

Required range: x >= 0
Example:

0

limit
number
default:20

Number of results to return

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

20

order_by
enum<string>
default:DATE_DESC

Order by

Available options:
DATE_ASC,
DATE_DESC
Example:

"DATE_DESC"

Response

Success

message
string
Example:

"Success"

statusCode
number
Example:

200

pagination
object
data
object

Artist albums information