Spotify Scraper

ENDPOINTS
GET/tracks/batch

Tracks Batch

Get details and play counts for up to 20 tracks in one call.

QUERY PARAMS

Comma-separated track IDs, URIs or links (max 20).

Example: 0VjIjW4GlUZAMYd2vXMi3b,7qiZfU4dY1lWllzX7mPBI3

{
  "count": 2,
  "results": [
    {
      "id": "0VjIjW4GlUZAMYd2vXMi3b",
      "name": "Blinding Lights",
      "link": "https://open.spotify.com/track/0VjIjW4GlUZAMYd2vXMi3b",
      "track_number": 9,
      "disc_number": null,
      "duration_ms": 200040,
      "duration_text": "3:20",
      "is_explicit": false,
      "is_playable": true,
      "has_video": true,
      "playcount": 5594126973,
      "artists": [
        {
          "id": "1Xyo4u8uXC1ZmMpatF05PJ",
          "name": "The Weeknd",
          "link": "https://open.spotify.com/artist/1Xyo4u8uXC1ZmMpatF05PJ"
        }
      ],
      "album": {
        "id": "4yP0hdKOZPNshxUOjY0cZj",
        "name": "After Hours",
        "link": "https://open.spotify.com/album/4yP0hdKOZPNshxUOjY0cZj",
        "release_date": "2020-03-20",
        "images": [
          {
            "link": "https://i.scdn.co/image/ab67616d0000b2738863bc11d2aa12b54f5aeb36",
            "width": 640,
            "height": 640
          },
          {
            "link": "https://i.scdn.co/image/ab67616d00001e028863bc11d2aa12b54f5aeb36",
            "width": 300,
            "height": 300
          },
          {
            "link": "https://i.scdn.co/image/ab67616d000048518863bc11d2aa12b54f5aeb36",
            "width": 64,
            "height": 64
          }
        ]
      }
    },
    {
      "id": "7qiZfU4dY1lWllzX7mPBI3",
      "name": "Shape of You",
      "link": "https://open.spotify.com/track/7qiZfU4dY1lWllzX7mPBI3",
      "track_number": 4,
      "disc_number": null,
      "duration_ms": 233712,
      "duration_text": "3:53",
      "is_explicit": false,
      "is_playable": true,
      "has_video": true,
      "playcount": 5101271284,
      "artists": [
        {
          "id": "6eUKZXaKkcviH0Ku9w2n3V",
          "name": "Ed Sheeran",
          "link": "https://open.spotify.com/artist/6eUKZXaKkcviH0Ku9w2n3V"
        }
      ],
      "album": {
        "id": "3T4tUhGYeRNVUGevb0wThu",
        "name": "÷ (Deluxe)",
        "link": "https://open.spotify.com/album/3T4tUhGYeRNVUGevb0wThu",
        "release_date": "2017-03-03",
        "images": [
          {
            "link": "https://i.scdn.co/image/ab67616d0000b273ba5db46f4b838ef6027e6f96",
            "width": 640,
            "height": 640
          },
          {
            "link": "https://i.scdn.co/image/ab67616d00001e02ba5db46f4b838ef6027e6f96",
            "width": 300,
            "height": 300
          },
          {
            "link": "https://i.scdn.co/image/ab67616d00004851ba5db46f4b838ef6027e6f96",
            "width": 64,
            "height": 64
          }
        ]
      }
    }
  ],
  "not_found": null
}