Spotify Scraper

ENDPOINTS
GET/tracks/credits

Track Credits

Get a track's songwriters, producers and performers with their roles.

QUERY PARAMS

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

Examples:

  • ID: 0VjIjW4GlUZAMYd2vXMi3b
  • URI: spotify:track:0VjIjW4GlUZAMYd2vXMi3b
  • URL: https://open.spotify.com/track/0VjIjW4GlUZAMYd2vXMi3b
{
  "track": {
    "id": "0VjIjW4GlUZAMYd2vXMi3b",
    "name": "Blinding Lights",
    "link": "https://open.spotify.com/track/0VjIjW4GlUZAMYd2vXMi3b"
  },
  "contributors": [
    {
      "name": "The Weeknd",
      "role": "Main Artist",
      "role_group": "Artist",
      "artist_id": "1Xyo4u8uXC1ZmMpatF05PJ",
      "link": "https://open.spotify.com/artist/1Xyo4u8uXC1ZmMpatF05PJ"
    },
    {
      "name": "Max Martin",
      "role": "Composer",
      "role_group": "Composition & Lyrics",
      "artist_id": "1rjeVTt9Ra1ldvN7SpeK0G",
      "link": "https://open.spotify.com/artist/1rjeVTt9Ra1ldvN7SpeK0G"
    },
    {
      "name": "Max Martin",
      "role": "Lyricist",
      "role_group": "Composition & Lyrics",
      "artist_id": "1rjeVTt9Ra1ldvN7SpeK0G",
      "link": "https://open.spotify.com/artist/1rjeVTt9Ra1ldvN7SpeK0G"
    },
    {
      "name": "Oscar Holter",
      "role": "Composer",
      "role_group": "Composition & Lyrics",
      "artist_id": "4lv9jAZPR9cdcJ7tIts7xk",
      "link": "https://open.spotify.com/artist/4lv9jAZPR9cdcJ7tIts7xk"
    },
    {
      "name": "Oscar Holter",
      "role": "Lyricist",
      "role_group": "Composition & Lyrics",
      "artist_id": "4lv9jAZPR9cdcJ7tIts7xk",
      "link": "https://open.spotify.com/artist/4lv9jAZPR9cdcJ7tIts7xk"
    },
    {
      "name": "Abel Tesfaye",
      "role": "Composer",
      "role_group": "Composition & Lyrics",
      "artist_id": "56pImxBsOQTCASzJNLNEKN",
      "link": "https://open.spotify.com/artist/56pImxBsOQTCASzJNLNEKN"
    },
    {
      "name": "Abel Tesfaye",
      "role": "Lyricist",
      "role_group": "Composition & Lyrics",
      "artist_id": "56pImxBsOQTCASzJNLNEKN",
      "link": "https://open.spotify.com/artist/56pImxBsOQTCASzJNLNEKN"
    },
    {
      "name": "Ahmad Balshe",
      "role": "Composer",
      "role_group": "Composition & Lyrics",
      "artist_id": "1NwqDu5VcS4E47i7z1Zkqk",
      "link": "https://open.spotify.com/artist/1NwqDu5VcS4E47i7z1Zkqk"
    },
    {
      "name": "Ahmad Balshe",
      "role": "Lyricist",
      "role_group": "Composition & Lyrics",
      "artist_id": "1NwqDu5VcS4E47i7z1Zkqk",
      "link": "https://open.spotify.com/artist/1NwqDu5VcS4E47i7z1Zkqk"
    },
    {
      "name": "Jason \"DaHeala\" Quenneville",
      "role": "Composer",
      "role_group": "Composition & Lyrics",
      "artist_id": "2U3FXTSXBJOC4ESbGNSH4p",
      "link": "https://open.spotify.com/artist/2U3FXTSXBJOC4ESbGNSH4p"
    }
  ],
  "sources": [
    "Republic Records"
  ]
}