Scrape Spotify tracks data by keywords. Extract comprehensive track information including artist details, album info, cover art, duration, and more. Perfect for music data analysis and playlist generation.
Each record in the output dataset contains comprehensive track information:
__typename
: Type of the recordalbumOfTrack
: Detailed album information including:
artists
: List of artists with their profilesassociations
: Related content informationcontentRating
: Content rating labelduration
: Track duration in millisecondsid
: Unique track identifiername
: Track nameplayability
: Track availability statusuri
: Spotify URIkeyword
: The search keyword used to find this trackkeywords
: Array of search terms to find tracksmaxItems
: Maximum number of tracks to scrapeA full explanation of an input example in JSON.
1{ 2 "keywords": ["punk"], 3 "maxItems": 100 4}
The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:
And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.
1[ 2 { 3 "__typename": "Track", 4 "albumOfTrack": { 5 "coverArt": { 6 "extractedColors": { 7 "colorDark": { 8 "hex": "#535353", 9 "isFallback": true 10 } 11 }, 12 "sources": [ 13 { 14 "height": 300, 15 "url": "https://i.scdn.co/image/ab67616d00001e026dfdabd8d791c3fc94baf463", 16 "width": 300 17 }, 18 { 19 "height": 64, 20 "url": "https://i.scdn.co/image/ab67616d000048516dfdabd8d791c3fc94baf463", 21 "width": 64 22 }, 23 { 24 "height": 640, 25 "url": "https://i.scdn.co/image/ab67616d0000b2736dfdabd8d791c3fc94baf463", 26 "width": 640 27 } 28 ] 29 }, 30 "id": "5L1RkN1nh5m18ZuXCktUbc", 31 "name": "PUNK TACTICS", 32 "uri": "spotify:album:5L1RkN1nh5m18ZuXCktUbc" 33 }, 34 "artists": { 35 "items": [ 36 { 37 "profile": { 38 "name": "Joey Valence & Brae" 39 }, 40 "uri": "spotify:artist:1q4618qKswelCGLoanFKQh" 41 } 42 ] 43 }, 44 "associations": { 45 "associatedVideos": { 46 "totalCount": 1 47 } 48 }, 49 "contentRating": { 50 "label": "NONE" 51 }, 52 "duration": { 53 "totalMilliseconds": 143609 54 }, 55 "id": "2jQ1P0aGT4WkNyJCeoQnb9", 56 "name": "PUNK TACTICS", 57 "playability": { 58 "playable": true, 59 "reason": "PLAYABLE" 60 }, 61 "uri": "spotify:track:2jQ1P0aGT4WkNyJCeoQnb9", 62 "keyword": "punk" 63 }, 64 { 65 "__typename": "Track", 66 "albumOfTrack": { 67 "coverArt": { 68 "extractedColors": { 69 "colorDark": { 70 "hex": "#701028", 71 "isFallback": false 72 } 73 }, 74 "sources": [ 75 { 76 "height": 300, 77 "url": "https://i.scdn.co/image/ab67616d00001e0270a92ddbe10010f1c2f95da1", 78 "width": 300 79 }, 80 { 81 "height": 64, 82 "url": "https://i.scdn.co/image/ab67616d0000485170a92ddbe10010f1c2f95da1", 83 "width": 64 84 }, 85 { 86 "height": 640, 87 "url": "https://i.scdn.co/image/ab67616d0000b27370a92ddbe10010f1c2f95da1", 88 "width": 640 89 } 90 ] 91 }, 92 "id": "1aYcfMrpGIuPNZhDWMJcnV", 93 "name": "Dutty Rock (20th Anniversary)", 94 "uri": "spotify:album:1aYcfMrpGIuPNZhDWMJcnV" 95 }, 96 "artists": { 97 "items": [ 98 { 99 "profile": { 100 "name": "Sean Paul" 101 }, 102 "uri": "spotify:artist:3Isy6kedDrgPYoTS1dazA9" 103 } 104 ] 105 }, 106 "associations": { 107 "associatedVideos": { 108 "totalCount": 0 109 } 110 }, 111 "contentRating": { 112 "label": "NONE" 113 }, 114 "duration": { 115 "totalMilliseconds": 215266 116 }, 117 "id": "2haxvmy6n8quJtJRuORGBh", 118 "name": "Punkie - Español Version", 119 "playability": { 120 "playable": true, 121 "reason": "PLAYABLE" 122 }, 123 "uri": "spotify:track:2haxvmy6n8quJtJRuORGBh", 124 "keyword": "punk" 125 }, 126 ... 127]
Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!