Spotify Scraper

ENDPOINTS
GET/artists/playlists

Artist Playlists

List the public playlists an artist curates on their own profile.

QUERY PARAMS

Spotify artist ID, URI or open.spotify.com artist link.

Examples:

  • ID: 06HL4z0CvFAxyc27GXpf02
  • URI: spotify:artist:06HL4z0CvFAxyc27GXpf02
  • URL: https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02
{
  "artist": {
    "id": "06HL4z0CvFAxyc27GXpf02",
    "name": "Taylor Swift",
    "link": "https://open.spotify.com/artist/06HL4z0CvFAxyc27GXpf02"
  },
  "total_count": 4,
  "results": [
    {
      "type": "playlist",
      "id": "65uAjFTt4N8sEJeonhNOBL",
      "name": "And, baby, that’s show business for you ❤️‍🔥",
      "link": "https://open.spotify.com/playlist/65uAjFTt4N8sEJeonhNOBL",
      "description": null,
      "format": null,
      "followers": null,
      "owner": {
        "id": null,
        "name": "Taylor Swift",
        "link": null
      },
      "updated_at": null,
      "images": [
        {
          "link": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000d72cdcef9bbc0ba7be550664fe13",
          "width": null,
          "height": null
        }
      ]
    },
    {
      "type": "playlist",
      "id": "4GtQVhGjAwcHFz82UKy3Ca",
      "name": "Taylor Swift Complete Collection",
      "link": "https://open.spotify.com/playlist/4GtQVhGjAwcHFz82UKy3Ca",
      "description": "Everything Taylor Swift Right Here",
      "format": null,
      "followers": null,
      "owner": {
        "id": null,
        "name": "Taylor Swift",
        "link": null
      },
      "updated_at": null,
      "images": [
        {
          "link": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000d72c50c3581c282b1b2871248e85",
          "width": null,
          "height": null
        }
      ]
    },
    {
      "type": "playlist",
      "id": "1Ew1IbrHjmNedkANLw1jdr",
      "name": "Live From Paris",
      "link": "https://open.spotify.com/playlist/1Ew1IbrHjmNedkANLw1jdr",
      "description": "Songs From Lover Performed Live In Paris",
      "format": null,
      "followers": null,
      "owner": {
        "id": null,
        "name": "Taylor Swift",
        "link": null
      },
      "updated_at": null,
      "images": [
        {
          "link": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c8810d6b470de5a439b491000",
          "width": null,
          "height": null
        }
      ]
    },
    {
      "type": "playlist",
      "id": "074AoVXFnnlKmSpz28uqe0",
      "name": "rep Tour and Friends",
      "link": "https://open.spotify.com/playlist/074AoVXFnnlKmSpz28uqe0",
      "description": "The complete setlist from the Taylor Swift reputation Stadium Tour including special guests",
      "format": null,
      "followers": null,
      "owner": {
        "id": null,
        "name": "Taylor Swift",
        "link": null
      },
      "updated_at": null,
      "images": [
        {
          "link": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000d72cd17e192d4a08b8d87b6baa18",
          "width": null,
          "height": null
        }
      ]
    }
  ]
}