Skip to main content
GET
/
api
/
v1
/
artists
/
singles
Get artist singles
curl --request GET \
  --url https://spotify-api31.p.rapidapi.com/api/v1/artists/singles \
  --header 'x-rapidapi-key: <api-key>'
{
  "message": "Success",
  "statusCode": 200,
  "pagination": {
    "total": 100,
    "hasMore": true,
    "continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
  },
  "data": {
    "totalCount": 61,
    "items": [
      {
        "releases": {
          "items": [
            {
              "id": "5I3jxZBcD0iSfTsjBHM1MD",
              "name": "Boom Boom Beats: Kids Mix",
              "uri": "spotify:album:5I3jxZBcD0iSfTsjBHM1MD",
              "type": "EP",
              "coverArts": [
                {
                  "url": "https://i.scdn.co/image/ab67616d00001e02197ab9d5df763d4e6df9818b",
                  "width": 300,
                  "height": 300
                }
              ]
            }
          ]
        }
      }
    ]
  }
}

Authorizations

x-rapidapi-key
string
header
required

API Key

Query Parameters

uri
string
required

Spotify artist URI to get artist singles

Pattern: ^spotify:artist:[a-zA-Z0-9]+$
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 singles information