What You'll Learn
- • Setting up your development environment
- • Installing the required HTTP client
- • Authenticating with the ScrapeCreators API
- • Making requests to Spotify
- • Handling responses and errors
- • Best practices for production use
Tutorial · Spotify
⚡️ Node.js Step-by-stepExtract artist data from Spotify. Real code, real responses, real production patterns — paste it into your project and ship.
Learn how to scrape Spotify artists using Node.js. This comprehensive guide will walk you through the entire process, from setup to implementation.
First, you'll need a ScrapeCreators API key to authenticate your requests.
Sign up at app.scrapecreators.com to get your free API key with 100 requests.
Make sure you have the following installed:
Axios is a promise-based HTTP client for Node.js
npm install axiosNow let's make a request to the Spotify API using Node.js. Replace YOUR_API_KEY with your actual API key.
import axios from 'axios';
const API_KEY = 'YOUR_API_KEY';
async function scrape() {
try {
const response = await axios.get(`https://api.scrapecreators.com/v1/spotify/artist?id=0cGUm45nv7Z6M6qdXYQGTX&url=https://open.spotify.com/artist/0cGUm45nv7Z6M6qdXYQGTX`, {
headers: {
'x-api-key': API_KEY,
'Content-Type': 'application/json'
}
});
console.log('Response:', response.data);
return response.data;
} catch (error) {
console.error('Error:', error.response?.data || error.message);
}
}
// Usage
scrape();This endpoint accepts the following parameters:
idOptional(string)Spotify artist id. If you'd prefer to use the URL instead, you can use the url parameter instead.
Example: 0cGUm45nv7Z6M6qdXYQGTX
urlOptional(string)Spotify artist URL. If you'd prefer to use the id instead, you can use the id parameter instead.
Example: https://open.spotify.com/artist/0cGUm45nv7Z6M6qdXYQGTX
Execute your script to test the API connection. You should see a JSON response with Spotify artists data.
✅ Success: You should receive a structured JSON response containing the requested data.
Here's an example of the JSON response you'll receive:
{
"success": true,
"credits_remaining": 49996588524,
"__typename": "Artist",
"discography": {
"albums": [
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d4ffe3d4cddee37b9fd6ffcd",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d4ffe3d4cddee37b9fd6ffcd",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d4ffe3d4cddee37b9fd6ffcd",
"width": 640
}
]
},
"date": {
"day": 24,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "2xkYTmqjear3lSGydIn7wh",
"label": "TSNMI / Atlantic",
"name": "Kehlani",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "U8dlM5bqR9-6k0v2R2AZXA",
"shareUrl": "https://open.spotify.com/album/2xkYTmqjear3lSGydIn7wh?si=U8dlM5bqR9-6k0v2R2AZXA"
},
"tracks": {
"totalCount": 17
},
"type": "ALBUM",
"uri": "spotify:album:2xkYTmqjear3lSGydIn7wh"
},
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02487cf85e240954e14e6a18b9",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851487cf85e240954e14e6a18b9",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273487cf85e240954e14e6a18b9",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "5IAfvzdgSu25KAnerb6YsJ",
"label": "TSNMI / Atlantic",
"name": "Kehlani (Uncut Edition)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "SOnRf_LhT3W-7VJ-nrmU3g",
"shareUrl": "https://open.spotify.com/album/5IAfvzdgSu25KAnerb6YsJ?si=SOnRf_LhT3W-7VJ-nrmU3g"
},
"tracks": {
"totalCount": 27
},
"type": "ALBUM",
"uri": "spotify:album:5IAfvzdgSu25KAnerb6YsJ"
},
{
"copyright": [
{
"text": "TSNMI / Atlantic, © 2024 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "TSNMI / Atlantic, ℗ 2024 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e028b47a06f31b5b694c4759fc3",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048518b47a06f31b5b694c4759fc3",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2738b47a06f31b5b694c4759fc3",
"width": 640
}
]
},
"date": {
"day": 28,
"month": 8,
"precision": "DAY",
"year": 2024
},
"id": "6BtMJG0J0QnXIiGRCMgkxA",
"label": "TSNMI / Atlantic",
"name": "While We Wait 2",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "AVBy4qM6SUewxbsQ9jvgXQ",
"shareUrl": "https://open.spotify.com/album/6BtMJG0J0QnXIiGRCMgkxA?si=AVBy4qM6SUewxbsQ9jvgXQ"
},
"tracks": {
"totalCount": 14
},
"type": "ALBUM",
"uri": "spotify:album:6BtMJG0J0QnXIiGRCMgkxA"
},
{
"copyright": [
{
"text": "TSNMI/Atlantic, © 2024 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "TSNMI/Atlantic, ℗ 2024 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e020346bdd9ed84ff9fd226e8b4",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048510346bdd9ed84ff9fd226e8b4",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2730346bdd9ed84ff9fd226e8b4",
"width": 640
}
]
},
"date": {
"day": 21,
"month": 6,
"precision": "DAY",
"year": 2024
},
"id": "6GF5uzX2s0GsS4eGlM4h3m",
"label": "TSNMI / Atlantic",
"name": "CRASH",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "qgylVaLmQrCiYudRlsuN5g",
"shareUrl": "https://open.spotify.com/album/6GF5uzX2s0GsS4eGlM4h3m?si=qgylVaLmQrCiYudRlsuN5g"
},
"tracks": {
"totalCount": 13
},
"type": "ALBUM",
"uri": "spotify:album:6GF5uzX2s0GsS4eGlM4h3m"
},
{
"copyright": [
{
"text": "TSNMI/Atlantic, © 2022 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "TSNMI/Atlantic, ℗ 2022 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02cd318840ba8784421377b5a0",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851cd318840ba8784421377b5a0",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273cd318840ba8784421377b5a0",
"width": 640
}
]
},
"date": {
"day": 29,
"month": 4,
"precision": "DAY",
"year": 2022
},
"id": "2WfV3cpI2BUuIxMISh9nqF",
"label": "TSNMI / Atlantic",
"name": "blue water road",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "nNPSfnCTSWCVH5bGILn2gg",
"shareUrl": "https://open.spotify.com/album/2WfV3cpI2BUuIxMISh9nqF?si=nNPSfnCTSWCVH5bGILn2gg"
},
"tracks": {
"totalCount": 13
},
"type": "ALBUM",
"uri": "spotify:album:2WfV3cpI2BUuIxMISh9nqF"
},
{
"copyright": [
{
"text": "© 2020 TSNMI / Atlantic Recording Corporation",
"type": "C"
},
{
"text": "℗ 2020 TSNMI / Atlantic Recording Corporation",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ae10ed5541f3fd9fd339b711",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851ae10ed5541f3fd9fd339b711",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273ae10ed5541f3fd9fd339b711",
"width": 640
}
]
},
"date": {
"day": 8,
"month": 5,
"precision": "DAY",
"year": 2020
},
"id": "6ROLwnmW9pOioLned0DaP3",
"label": "TSNMI / Atlantic",
"name": "It Was Good Until It Wasn't",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "62TnIl58QLO_eyo4CXyomA",
"shareUrl": "https://open.spotify.com/album/6ROLwnmW9pOioLned0DaP3?si=62TnIl58QLO_eyo4CXyomA"
},
"tracks": {
"totalCount": 15
},
"type": "ALBUM",
"uri": "spotify:album:6ROLwnmW9pOioLned0DaP3"
},
{
"copyright": [
{
"text": "© 2019 TSNMI / Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",
"type": "C"
},
{
"text": "℗ 2019 TSNMI / Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02f882c60f16e308b5e51fbccf",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851f882c60f16e308b5e51fbccf",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273f882c60f16e308b5e51fbccf",
"width": 640
}
]
},
"date": {
"day": 22,
"month": 2,
"precision": "DAY",
"year": 2019
},
"id": "73ZvpuYhKDr2FW4vlPsTpW",
"label": "TSNMI / Atlantic",
"name": "While We Wait",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "0YUYxyuBR-qhawqB91Lc2w",
"shareUrl": "https://open.spotify.com/album/73ZvpuYhKDr2FW4vlPsTpW?si=0YUYxyuBR-qhawqB91Lc2w"
},
"tracks": {
"totalCount": 9
},
"type": "ALBUM",
"uri": "spotify:album:73ZvpuYhKDr2FW4vlPsTpW"
},
{
"copyright": [
{
"text": "© 2017 TSNMI / Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",
"type": "C"
},
{
"text": "℗ 2017 TSNMI / Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0278394761781d70751fc8d931",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485178394761781d70751fc8d931",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27378394761781d70751fc8d931",
"width": 640
}
]
},
"date": {
"day": 27,
"month": 1,
"precision": "DAY",
"year": 2017
},
"id": "32jei6omhyLZDCg8Ijvoym",
"label": "TSNMI / Atlantic",
"name": "SweetSexySavage (Deluxe)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "jgODWYSnS6Ghvg3YnZDldg",
"shareUrl": "https://open.spotify.com/album/32jei6omhyLZDCg8Ijvoym?si=jgODWYSnS6Ghvg3YnZDldg"
},
"tracks": {
"totalCount": 19
},
"type": "ALBUM",
"uri": "spotify:album:32jei6omhyLZDCg8Ijvoym"
},
{
"copyright": [
{
"text": "2015",
"type": "C"
},
{
"text": "2015",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0210e3ed6f6ee10390058f681a",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485110e3ed6f6ee10390058f681a",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27310e3ed6f6ee10390058f681a",
"width": 640
}
]
},
"date": {
"day": 28,
"month": 4,
"precision": "DAY",
"year": 2015
},
"id": "3JFEZqTae3svhW8226cnNL",
"label": "P2015",
"name": "You Should Be Here",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "0j2rAnl2Q_yE5Ec4pgPmDw",
"shareUrl": "https://open.spotify.com/album/3JFEZqTae3svhW8226cnNL?si=0j2rAnl2Q_yE5Ec4pgPmDw"
},
"tracks": {
"totalCount": 14
},
"type": "ALBUM",
"uri": "spotify:album:3JFEZqTae3svhW8226cnNL"
},
{
"copyright": [
{
"text": "TSNMI/Atlantic, © 2021 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "TSNMI/Atlantic, ℗ 2021 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d86aeb6beeac5c0bbc25691e",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d86aeb6beeac5c0bbc25691e",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d86aeb6beeac5c0bbc25691e",
"width": 640
}
]
},
"date": {
"day": 26,
"month": 8,
"precision": "DAY",
"year": 2014
},
"id": "0Z4zmV6ITJ6PUjCmAsHxdE",
"label": "TSNMI / Atlantic",
"name": "Cloud 19",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "AUnhnLFcTkSSsuCErxuf0w",
"shareUrl": "https://open.spotify.com/album/0Z4zmV6ITJ6PUjCmAsHxdE?si=AUnhnLFcTkSSsuCErxuf0w"
},
"tracks": {
"totalCount": 7
},
"type": "ALBUM",
"uri": "spotify:album:0Z4zmV6ITJ6PUjCmAsHxdE"
}
],
"compilations": [],
"latest": {
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d4ffe3d4cddee37b9fd6ffcd",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d4ffe3d4cddee37b9fd6ffcd",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d4ffe3d4cddee37b9fd6ffcd",
"width": 640
}
]
},
"date": {
"day": 24,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "2xkYTmqjear3lSGydIn7wh",
"label": "TSNMI / Atlantic",
"name": "Kehlani",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "T_Af2soBSuGDSt2oVHDtKg",
"shareUrl": "https://open.spotify.com/album/2xkYTmqjear3lSGydIn7wh?si=T_Af2soBSuGDSt2oVHDtKg"
},
"tracks": {
"totalCount": 17
},
"type": "ALBUM",
"uri": "spotify:album:2xkYTmqjear3lSGydIn7wh"
},
"popularReleasesAlbums": [
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d4ffe3d4cddee37b9fd6ffcd",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d4ffe3d4cddee37b9fd6ffcd",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d4ffe3d4cddee37b9fd6ffcd",
"width": 640
}
]
},
"date": {
"day": 24,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "2xkYTmqjear3lSGydIn7wh",
"label": "TSNMI / Atlantic",
"name": "Kehlani",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "9oSy6lB1SlqNi7vkqsNWeQ",
"shareUrl": "https://open.spotify.com/album/2xkYTmqjear3lSGydIn7wh?si=9oSy6lB1SlqNi7vkqsNWeQ"
},
"tracks": {
"totalCount": 17
},
"type": "ALBUM",
"uri": "spotify:album:2xkYTmqjear3lSGydIn7wh"
},
{
"copyright": [
{
"text": "© 2020 TSNMI / Atlantic Recording Corporation",
"type": "C"
},
{
"text": "℗ 2020 TSNMI / Atlantic Recording Corporation",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ae10ed5541f3fd9fd339b711",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851ae10ed5541f3fd9fd339b711",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273ae10ed5541f3fd9fd339b711",
"width": 640
}
]
},
"date": {
"day": 8,
"month": 5,
"precision": "DAY",
"year": 2020
},
"id": "6ROLwnmW9pOioLned0DaP3",
"label": "TSNMI / Atlantic",
"name": "It Was Good Until It Wasn't",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "N1eCGtmDRlKSdfldHvjWBg",
"shareUrl": "https://open.spotify.com/album/6ROLwnmW9pOioLned0DaP3?si=N1eCGtmDRlKSdfldHvjWBg"
},
"tracks": {
"totalCount": 15
},
"type": "ALBUM",
"uri": "spotify:album:6ROLwnmW9pOioLned0DaP3"
},
{
"copyright": [
{
"text": "© 2019 TSNMI / Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",
"type": "C"
},
{
"text": "℗ 2019 TSNMI / Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02f882c60f16e308b5e51fbccf",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851f882c60f16e308b5e51fbccf",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273f882c60f16e308b5e51fbccf",
"width": 640
}
]
},
"date": {
"day": 22,
"month": 2,
"precision": "DAY",
"year": 2019
},
"id": "73ZvpuYhKDr2FW4vlPsTpW",
"label": "TSNMI / Atlantic",
"name": "While We Wait",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "n7iAwL5TSg-mjIRQkBAI0Q",
"shareUrl": "https://open.spotify.com/album/73ZvpuYhKDr2FW4vlPsTpW?si=n7iAwL5TSg-mjIRQkBAI0Q"
},
"tracks": {
"totalCount": 9
},
"type": "ALBUM",
"uri": "spotify:album:73ZvpuYhKDr2FW4vlPsTpW"
},
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02487cf85e240954e14e6a18b9",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851487cf85e240954e14e6a18b9",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273487cf85e240954e14e6a18b9",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "5IAfvzdgSu25KAnerb6YsJ",
"label": "TSNMI / Atlantic",
"name": "Kehlani (Uncut Edition)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "9SuYUaE-SJSGL6bWMWmdVQ",
"shareUrl": "https://open.spotify.com/album/5IAfvzdgSu25KAnerb6YsJ?si=9SuYUaE-SJSGL6bWMWmdVQ"
},
"tracks": {
"totalCount": 27
},
"type": "ALBUM",
"uri": "spotify:album:5IAfvzdgSu25KAnerb6YsJ"
},
{
"copyright": [
{
"text": "TSNMI/Atlantic, © 2022 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "TSNMI/Atlantic, ℗ 2022 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02cd318840ba8784421377b5a0",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851cd318840ba8784421377b5a0",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273cd318840ba8784421377b5a0",
"width": 640
}
]
},
"date": {
"day": 29,
"month": 4,
"precision": "DAY",
"year": 2022
},
"id": "2WfV3cpI2BUuIxMISh9nqF",
"label": "TSNMI / Atlantic",
"name": "blue water road",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "IW9C10MfRSS_FhUb0-tTyQ",
"shareUrl": "https://open.spotify.com/album/2WfV3cpI2BUuIxMISh9nqF?si=IW9C10MfRSS_FhUb0-tTyQ"
},
"tracks": {
"totalCount": 13
},
"type": "ALBUM",
"uri": "spotify:album:2WfV3cpI2BUuIxMISh9nqF"
},
{
"copyright": [
{
"text": "© 2025 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2025 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0259ac898bca5c93f5f21bf7b5",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485159ac898bca5c93f5f21bf7b5",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27359ac898bca5c93f5f21bf7b5",
"width": 640
}
]
},
"date": {
"day": 22,
"month": 12,
"precision": "DAY",
"year": 2025
},
"id": "7a3yNq3BIyDEYPguafVKDf",
"label": "TSNMI / Atlantic",
"name": "Folded - A COLORS SHOW",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "P7BzVhNFSJOvZAo3WLgziw",
"shareUrl": "https://open.spotify.com/album/7a3yNq3BIyDEYPguafVKDf?si=P7BzVhNFSJOvZAo3WLgziw"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:7a3yNq3BIyDEYPguafVKDf"
},
{
"copyright": [
{
"text": "© 2025 HUGEL, under exclusive license to Universal Music GmbH",
"type": "C"
},
{
"text": "℗ 2025 HUGEL, under exclusive license to Universal Music GmbH",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e028a11d115df8366eff0d0f126",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048518a11d115df8366eff0d0f126",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2738a11d115df8366eff0d0f126",
"width": 640
}
]
},
"date": {
"day": 2,
"month": 5,
"precision": "DAY",
"year": 2025
},
"id": "6CjFvd1Oj0cljGm226jCvH",
"label": "Intercord",
"name": "Think Of Me",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "1Pwsy7DTT469zF1MeB_bsA",
"shareUrl": "https://open.spotify.com/album/6CjFvd1Oj0cljGm226jCvH?si=1Pwsy7DTT469zF1MeB_bsA"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:6CjFvd1Oj0cljGm226jCvH"
},
{
"copyright": [
{
"text": "© 2024 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2024 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0211931c4d211ac9a27b6747e0",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485111931c4d211ac9a27b6747e0",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27311931c4d211ac9a27b6747e0",
"width": 640
}
]
},
"date": {
"day": 4,
"month": 4,
"precision": "DAY",
"year": 2024
},
"id": "062urW4KS66GPlEHIueefz",
"label": "Atlantic Records",
"name": "After Hours",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "tdNgXDelQUSDIPkdw3IArw",
"shareUrl": "https://open.spotify.com/album/062urW4KS66GPlEHIueefz?si=tdNgXDelQUSDIPkdw3IArw"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:062urW4KS66GPlEHIueefz"
},
{
"copyright": [
{
"text": "© 2017 TSNMI / Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",
"type": "C"
},
{
"text": "℗ 2017 TSNMI / Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0278394761781d70751fc8d931",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485178394761781d70751fc8d931",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27378394761781d70751fc8d931",
"width": 640
}
]
},
"date": {
"day": 27,
"month": 1,
"precision": "DAY",
"year": 2017
},
"id": "32jei6omhyLZDCg8Ijvoym",
"label": "TSNMI / Atlantic",
"name": "SweetSexySavage (Deluxe)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "F8AFvQkzTzq-9OvWEJWp8w",
"shareUrl": "https://open.spotify.com/album/32jei6omhyLZDCg8Ijvoym?si=F8AFvQkzTzq-9OvWEJWp8w"
},
"tracks": {
"totalCount": 19
},
"type": "ALBUM",
"uri": "spotify:album:32jei6omhyLZDCg8Ijvoym"
},
{
"copyright": [
{
"text": "© 2025 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2025 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02e1de233e335f2c8d8d1d4299",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851e1de233e335f2c8d8d1d4299",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273e1de233e335f2c8d8d1d4299",
"width": 640
}
]
},
"date": {
"day": 7,
"month": 11,
"precision": "DAY",
"year": 2025
},
"id": "4FdvzXXXWgv3YxkUuW2307",
"label": "TSNMI / Atlantic",
"name": "Out The Window",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "tsAYFvRVRIKLF_GdeG36Tw",
"shareUrl": "https://open.spotify.com/album/4FdvzXXXWgv3YxkUuW2307?si=tsAYFvRVRIKLF_GdeG36Tw"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:4FdvzXXXWgv3YxkUuW2307"
}
],
"singles": [
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02b12f0dbd960ab2e252b64a95",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851b12f0dbd960ab2e252b64a95",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273b12f0dbd960ab2e252b64a95",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "4OIEqxUAhJ3fxEVqf5L9GB",
"label": "TSNMI / Atlantic",
"name": "Sweet Nuthins (feat. Leon Thomas)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "PpIIKS6USVmF7q85N6prqw",
"shareUrl": "https://open.spotify.com/album/4OIEqxUAhJ3fxEVqf5L9GB?si=PpIIKS6USVmF7q85N6prqw"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:4OIEqxUAhJ3fxEVqf5L9GB"
},
{
"copyright": [
{
"text": "© 2025 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2025 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02e141aeb817014aa694b26d37",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851e141aeb817014aa694b26d37",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273e141aeb817014aa694b26d37",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "0OvlUHck9j75lQlCMuihBA",
"label": "TSNMI / Atlantic",
"name": "Shoulda Never (feat. USHER)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "Ss0W2bEbTbetFx_KXBwFSQ",
"shareUrl": "https://open.spotify.com/album/0OvlUHck9j75lQlCMuihBA?si=Ss0W2bEbTbetFx_KXBwFSQ"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:0OvlUHck9j75lQlCMuihBA"
},
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0287713080274236a0f1e4b30c",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485187713080274236a0f1e4b30c",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27387713080274236a0f1e4b30c",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "4xGIbSnqkqLeYKvMCSX8QG",
"label": "TSNMI / Atlantic",
"name": "Pocket (feat. Cardi B)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "2cxGUPmMSaCe68n6cm6dTg",
"shareUrl": "https://open.spotify.com/album/4xGIbSnqkqLeYKvMCSX8QG?si=2cxGUPmMSaCe68n6cm6dTg"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:4xGIbSnqkqLeYKvMCSX8QG"
},
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02029190c4de0256b493b933cc",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851029190c4de0256b493b933cc",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273029190c4de0256b493b933cc",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "7KiE06K1XOFkiyZLGuFaQV",
"label": "TSNMI / Atlantic",
"name": "No Such Thing (feat. Clipse)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "hm9KrCSbRruLXDy5Ks2MGw",
"shareUrl": "https://open.spotify.com/album/7KiE06K1XOFkiyZLGuFaQV?si=hm9KrCSbRruLXDy5Ks2MGw"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:7KiE06K1XOFkiyZLGuFaQV"
},
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0217d0677ce58675002ceba866",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485117d0677ce58675002ceba866",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27317d0677ce58675002ceba866",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "6KX8HwnLauq6zMyiSd2Z8m",
"label": "TSNMI / Atlantic",
"name": "Lights On (feat. Big Sean)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "0hHhf0GNREKuR_1BjZtv3g",
"shareUrl": "https://open.spotify.com/album/6KX8HwnLauq6zMyiSd2Z8m?si=0hHhf0GNREKuR_1BjZtv3g"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:6KX8HwnLauq6zMyiSd2Z8m"
},
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e027bc9c2d7e09f577ee6301a22",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048517bc9c2d7e09f577ee6301a22",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2737bc9c2d7e09f577ee6301a22",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "5Rp34zZ3GYa6zALFJYxapH",
"label": "TSNMI / Atlantic",
"name": "I Need You (feat. Brandy)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "xMUrAqAcQP-nNkxqXXkjaQ",
"shareUrl": "https://open.spotify.com/album/5Rp34zZ3GYa6zALFJYxapH?si=xMUrAqAcQP-nNkxqXXkjaQ"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:5Rp34zZ3GYa6zALFJYxapH"
},
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e027cac3975cb963c6579a07370",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048517cac3975cb963c6579a07370",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2737cac3975cb963c6579a07370",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "396mEYcPHwOlbizdf9Jlhv",
"label": "TSNMI / Atlantic",
"name": "Call Me Back (feat. T-Pain & Lil Jon)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "Ym6q_BWdTOOcuLKFkFma2w",
"shareUrl": "https://open.spotify.com/album/396mEYcPHwOlbizdf9Jlhv?si=Ym6q_BWdTOOcuLKFkFma2w"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:396mEYcPHwOlbizdf9Jlhv"
},
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e028a2bc577e479255396db12a1",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048518a2bc577e479255396db12a1",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2738a2bc577e479255396db12a1",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "3uRyegM0lXJwIR14dhkdNa",
"label": "TSNMI / Atlantic",
"name": "Anotha Luva (feat. Lil Wayne)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "IY8J8VtFTFSZBiBiiqiLfw",
"shareUrl": "https://open.spotify.com/album/3uRyegM0lXJwIR14dhkdNa?si=IY8J8VtFTFSZBiBiiqiLfw"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:3uRyegM0lXJwIR14dhkdNa"
},
{
"copyright": [
{
"text": "© 2026 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2026 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e028b7e552f354fff5d90bb55dd",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048518b7e552f354fff5d90bb55dd",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2738b7e552f354fff5d90bb55dd",
"width": 640
}
]
},
"date": {
"day": 10,
"month": 4,
"precision": "DAY",
"year": 2026
},
"id": "3yb1H4Mf6annZTGWpmAoCW",
"label": "TSNMI / Atlantic",
"name": "Back and Forth (feat. Missy Elliott)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "Io3kmN2AQXC3nRsDhwVvNQ",
"shareUrl": "https://open.spotify.com/album/3yb1H4Mf6annZTGWpmAoCW?si=Io3kmN2AQXC3nRsDhwVvNQ"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:3yb1H4Mf6annZTGWpmAoCW"
},
{
"copyright": [
{
"text": "© 2025 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "℗ 2025 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0207691d4d5bea3dd5b9b6338e",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485107691d4d5bea3dd5b9b6338e",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27307691d4d5bea3dd5b9b6338e",
"width": 640
}
]
},
"date": {
"day": 7,
"month": 1,
"precision": "DAY",
"year": 2026
},
"id": "64AUAPx8kVRTuBO16NDUWN",
"label": "TSNMI / Atlantic",
"name": "Folded (Live) - Spotify Live Room",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "BqzT8MpERrKa9kUm9F24_w",
"shareUrl": "https://open.spotify.com/album/64AUAPx8kVRTuBO16NDUWN?si=BqzT8MpERrKa9kUm9F24_w"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:64AUAPx8kVRTuBO16NDUWN"
}
],
"topTracks": [
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02d9233d03f5434d9dd46c9fd6"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851d9233d03f5434d9dd46c9fd6"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273d9233d03f5434d9dd46c9fd6"
}
]
},
"uri": "spotify:album:5KS0QmxwUmSPsolg9VaSAU"
},
"artists": [
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 237928
},
"id": "6sTlzpJaFGkFQ4BNccmbW9",
"name": "Folded",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 493498588,
"uri": "spotify:track:6sTlzpJaFGkFQ4BNccmbW9",
"popularity": 79
},
"uid": "a838730591ee5251ecfd"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e0278394761781d70751fc8d931"
},
{
"url": "https://i.scdn.co/image/ab67616d0000485178394761781d70751fc8d931"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b27378394761781d70751fc8d931"
}
]
},
"uri": "spotify:album:32jei6omhyLZDCg8Ijvoym"
},
"artists": [
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "EXPLICIT"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 177773
},
"id": "5cw9s2zGrbny2M2p3WRmGm",
"name": "Gangsta",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 645279868,
"uri": "spotify:track:5cw9s2zGrbny2M2p3WRmGm",
"popularity": 66
},
"uid": "ca889a1880a569cee3a9"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02133dc7b29a0209a3c12eaa2b"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851133dc7b29a0209a3c12eaa2b"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273133dc7b29a0209a3c12eaa2b"
}
]
},
"uri": "spotify:album:2MRNLEYm9SB0HBrJEU8L32"
},
"artists": [
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 202414
},
"id": "4ChomJf8z16E6Zw4EoioYY",
"name": "After Hours",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 251938928,
"uri": "spotify:track:4ChomJf8z16E6Zw4EoioYY",
"popularity": 76
},
"uid": "82c3e6be760b1e749010"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02f882c60f16e308b5e51fbccf"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851f882c60f16e308b5e51fbccf"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273f882c60f16e308b5e51fbccf"
}
]
},
"uri": "spotify:album:73ZvpuYhKDr2FW4vlPsTpW"
},
"artists": [
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
},
{
"profile": {
"name": "Ty Dolla $ign"
},
"uri": "spotify:artist:7c0XG5cIJTrrAgEC3ULPiq"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "EXPLICIT"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 201787
},
"id": "6ZRuF2n1CQxyxxAAWsKJOy",
"name": "Nights Like This (feat. Ty Dolla $ign)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 744714260,
"uri": "spotify:track:6ZRuF2n1CQxyxxAAWsKJOy",
"popularity": 77
},
"uid": "4be2ca257f381d908566"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02487cf85e240954e14e6a18b9"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851487cf85e240954e14e6a18b9"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273487cf85e240954e14e6a18b9"
}
]
},
"uri": "spotify:album:5IAfvzdgSu25KAnerb6YsJ"
},
"artists": [
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
},
{
"profile": {
"name": "USHER"
},
"uri": "spotify:artist:23zg3TcAtWQy7J6upgbUnj"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 0
}
},
"contentRating": {
"label": "EXPLICIT"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 186112
},
"id": "3NBBUedTNWVACWLVR5HCwf",
"name": "Shoulda Never (feat. USHER)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 11869923,
"uri": "spotify:track:3NBBUedTNWVACWLVR5HCwf",
"popularity": 65
},
"uid": "fb2427cc81ea1e663f8d"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02fcc36f9c0515e6e7faa2030b"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851fcc36f9c0515e6e7faa2030b"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273fcc36f9c0515e6e7faa2030b"
}
]
},
"uri": "spotify:album:5PO2cqkBjAUOSHdxSDJOL4"
},
"artists": [
{
"profile": {
"name": "G-Eazy"
},
"uri": "spotify:artist:02kJSzxNuaWGqwubyUba0Z"
},
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 0
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 225525
},
"id": "1Eck97uRMlprKOOJN9oO1E",
"name": "Good Life (with G-Eazy & Kehlani)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 475010959,
"uri": "spotify:track:1Eck97uRMlprKOOJN9oO1E",
"popularity": 62
},
"uid": "427784a3dc8b6dde39d8"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02487cf85e240954e14e6a18b9"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851487cf85e240954e14e6a18b9"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273487cf85e240954e14e6a18b9"
}
]
},
"uri": "spotify:album:5IAfvzdgSu25KAnerb6YsJ"
},
"artists": [
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "EXPLICIT"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 256615
},
"id": "1WJjatHZ4HRU7U1MUUsJmF",
"name": "Out The Window",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 39797080,
"uri": "spotify:track:1WJjatHZ4HRU7U1MUUsJmF",
"popularity": 60
},
"uid": "e14c572e5ebe05ed9697"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02487cf85e240954e14e6a18b9"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851487cf85e240954e14e6a18b9"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273487cf85e240954e14e6a18b9"
}
]
},
"uri": "spotify:album:5IAfvzdgSu25KAnerb6YsJ"
},
"artists": [
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
},
{
"profile": {
"name": "Lil Wayne"
},
"uri": "spotify:artist:55Aa2cqylxrFIXC767Z865"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 0
}
},
"contentRating": {
"label": "EXPLICIT"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 241927
},
"id": "5LuC5blFEx19VaKVDDOPRZ",
"name": "Anotha Luva (feat. Lil Wayne)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 6839659,
"uri": "spotify:track:5LuC5blFEx19VaKVDDOPRZ",
"popularity": 60
},
"uid": "f6576a5e5ae4005728c5"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02897f73256b9128a9d70eaf66"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851897f73256b9128a9d70eaf66"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273897f73256b9128a9d70eaf66"
}
]
},
"uri": "spotify:album:0mZIUXje90JtHxPNzWsJNR"
},
"artists": [
{
"profile": {
"name": "Charlie Puth"
},
"uri": "spotify:artist:6VuMaDnrHyPL1p4EHjYLi7"
},
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 180493
},
"id": "1lsBTdE6MGsKeZCD6llNu7",
"name": "Done for Me (feat. Kehlani)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 360108475,
"uri": "spotify:track:1lsBTdE6MGsKeZCD6llNu7",
"popularity": 73
},
"uid": "93ebd13ec1e509bbb28c"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e0240804dba7b99de3125438c71"
},
{
"url": "https://i.scdn.co/image/ab67616d0000485140804dba7b99de3125438c71"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b27340804dba7b99de3125438c71"
}
]
},
"uri": "spotify:album:5qUp79PAejWMSXh0l04Zy9"
},
"artists": [
{
"profile": {
"name": "GIVĒON"
},
"uri": "spotify:artist:4fxd5Ee7UefO4CUXgwJ7IP"
},
{
"profile": {
"name": "Kehlani"
},
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 0
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 183990
},
"id": "1IOzlMpIx4oLxo88nNbd1u",
"name": "SAVE SOME FOR ME (feat. Kehlani)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": 3859731,
"uri": "spotify:track:1IOzlMpIx4oLxo88nNbd1u",
"popularity": 73
},
"uid": "24c72170859f7a5753d9"
}
]
},
"goods": {
"concerts": [
{
"__typename": "ConcertV2",
"festival": false,
"location": {
"city": "Las Vegas",
"name": "LIV Nightclub Las Vegas"
},
"startDateIsoString": "2026-06-19T22:30-07:00",
"title": "Kehlani",
"uri": "spotify:concert:4Qygm81hJ84WfQdINSGPp2"
},
{
"__typename": "ConcertV2",
"festival": false,
"location": {
"city": "Montréal",
"name": "Parc Jean-Drapeau"
},
"startDateIsoString": "2026-07-31T13:00-04:00",
"title": "Kehlani",
"uri": "spotify:concert:4B2ESAWRCoA4lm6K7PcLIa"
},
{
"__typename": "ConcertV2",
"festival": true,
"location": {
"city": "Montreal",
"name": "Parc Jean Drapeau"
},
"startDateIsoString": "2026-07-31T14:00-04:00",
"title": "Osheaga 2026 - Vendredi",
"uri": "spotify:concert:785JAFrXBuMY5HuOhYozM0"
},
{
"__typename": "ConcertV2",
"festival": false,
"location": {
"city": "Minneapolis",
"name": "Armory"
},
"startDateIsoString": "2026-08-06T18:30-05:00",
"title": "Kehlani, Durand Bernarr, Isaia Huron, TheARTI$t",
"uri": "spotify:concert:3neCrLuiMzWu25lsVyQTgy"
},
{
"__typename": "ConcertV2",
"festival": false,
"location": {
"city": "Milwaukee",
"name": "Landmark Credit Union Live"
},
"startDateIsoString": "2026-08-07T18:30-05:00",
"title": "Kehlani, Isaia Huron, TheARTI$t",
"uri": "spotify:concert:53JSzgs4xD8cTVuOaIRfuG"
},
{
"__typename": "ConcertV2",
"festival": false,
"location": {
"city": "Chicago",
"name": "Huntington Bank Pavilion at Northerly Island"
},
"startDateIsoString": "2026-08-09T18:30-05:00",
"title": "Kehlani, Durand Bernarr, Isaia Huron, TheARTI$t",
"uri": "spotify:concert:27C7TkMTRDuRfNU1i3NjTr"
},
{
"__typename": "ConcertV2",
"festival": false,
"location": {
"city": "Indianapolis",
"name": "Everwise Amphitheater at White River State Park"
},
"startDateIsoString": "2026-08-10T18:30-04:00",
"title": "Kehlani, Durand Bernarr, Isaia Huron, TheARTI$t",
"uri": "spotify:concert:4AKaocwvHl5MTT7MUubz0R"
},
{
"__typename": "ConcertV2",
"festival": false,
"location": {
"city": "Sterling Heights",
"name": "Michigan Lottery Amphitheatre at Freedom Hill"
},
"startDateIsoString": "2026-08-13T18:30-04:00",
"title": "Kehlani, Durand Bernarr, Isaia Huron, TheARTI$t",
"uri": "spotify:concert:4s6VAa48PMtbmW8cAheKan"
},
{
"__typename": "ConcertV2",
"festival": false,
"location": {
"city": "Cuyahoga Falls",
"name": "Blossom Music Center"
},
"startDateIsoString": "2026-08-14T18:30-04:00",
"title": "Kehlani, Durand Bernarr, Isaia Huron, TheARTI$t",
"uri": "spotify:concert:6DTcRcBopK63kiZ044QycV"
},
{
"__typename": "ConcertV2",
"festival": false,
"location": {
"city": "Toronto",
"name": "RBC Amphitheatre"
},
"startDateIsoString": "2026-08-16T18:30-04:00",
"title": "Kehlani, Durand Bernarr, Isaia Huron, TheARTI$t",
"uri": "spotify:concert:2bWi0NXO3SMqNzrMjFN0Wt"
}
],
"merch": []
},
"headerImage": {
"__typename": "ImageV2",
"sources": [
{
"maxHeight": 640,
"maxWidth": 1494,
"url": "https://image-cdn-fa.spotifycdn.com/image/ab676186000001945388724675d387b1c00995c0"
},
{
"maxHeight": 1080,
"maxWidth": 1920,
"url": "https://i2o.scdn.co/image/ab676186000016675388724675d387b1c00995c0"
},
{
"maxHeight": 1080,
"maxWidth": 1920,
"url": "https://i2o.scdn.co/image/ab676186000016675388724675d387b1c00995c0"
},
{
"maxHeight": 641,
"maxWidth": 1495,
"url": "https://image-cdn-fa.spotifycdn.com/image/ab67618600009d805388724675d387b1c00995c0"
},
{
"maxHeight": 1140,
"maxWidth": 2660,
"url": "https://image-cdn-fa.spotifycdn.com/image/ab6761860000eab15388724675d387b1c00995c0"
}
]
},
"id": "0cGUm45nv7Z6M6qdXYQGTX",
"onPlatformReputationTrait": {
"verification": {
"isRegistered": true,
"isVerified": true
}
},
"preRelease": null,
"profile": {
"biography": {
"text": "Without sugarcoating or softening a word, the Bay Area-born two-time GRAMMY® Award-nominated multiplatinum songstress will drop a hard truth in one breath and flip a middle finger in the next. Either way, she finds a way to consistently relate without filter. Kehlani’s 2015 breakout mixtape You Should Be Here received a GRAMMY® nod in the category of “Best Urban Contemporary Album.” She contributed to the soundtracks for Suicide Squad and The Fate of the Furious and guested on Cardi B’s “Ring,” Kyle’s “PLAYINWITME,” and Justin Bieber’s “Get Me,” to name a few. By 2020, she picked up three gold solo singles—"You Should Be Here,” “Honey,” and “Distraction,” for which she received her second GRAMMY® nomination for Best R&B performance. In addition, four platinum singles—“Gangsta,” “The Way” [feat. Chance the Rapper], “CRZY,” and “Nights Like This” [feat. Ty Dolla $ign] and streams in the billions. Not to mention, Billboard Women In Music honored her with the “Rule Breaker Award”. In the aftermath of 2019’s chart-topping While We Wait mixtape, everything changed. She became a mom. As such, parenthood left an indelible imprint on her second full-length, It Was Good Until It Wasn’t. The album is described by Kehlani as her most mature body of work, featuring songs based on her own real experiences including “Toxic” and “Everybody Business.” In the end, you’ll know exactly what’s on Kehlani’s mind, heart, and soul.",
"type": "AUTOBIOGRAPHY"
},
"externalLinks": [
{
"name": "FACEBOOK",
"url": "https://facebook.com/Kehlanimusic"
},
{
"name": "INSTAGRAM",
"url": "https://instagram.com/kehlani"
},
{
"name": "TWITTER",
"url": "https://twitter.com/kehlani"
},
{
"name": "WIKIPEDIA",
"url": "https://en.wikipedia.org/wiki/Kehlani"
}
],
"name": "Kehlani",
"pinnedItem": {
"backgroundImageV2": {
"__typename": "ImageV2",
"sources": [
{
"url": "https://image-cdn-fa.spotifycdn.com/image/ab6761700000591033fb379e5ab59969bd6dfd0b"
}
]
},
"comment": "New Kehlani album is out now! ",
"itemV2": {
"__typename": "AlbumResponseWrapper",
"data": {
"__typename": "Album",
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d4ffe3d4cddee37b9fd6ffcd",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d4ffe3d4cddee37b9fd6ffcd",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d4ffe3d4cddee37b9fd6ffcd",
"width": 640
}
]
},
"name": "Kehlani",
"preReleaseEndDateTime": {
"isoString": "2026-04-24T04:00:00Z"
},
"type": "ALBUM",
"uri": "spotify:album:2xkYTmqjear3lSGydIn7wh"
}
},
"subtitle": "Album • New Release",
"thumbnailImage": {
"sources": [
{
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67616d000075a0d4ffe3d4cddee37b9fd6ffcd"
},
{
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67616d000090d5d4ffe3d4cddee37b9fd6ffcd"
},
{
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67616d0000ab87d4ffe3d4cddee37b9fd6ffcd"
}
]
},
"title": "Kehlani",
"type": "ALBUM",
"uri": "spotify:album:2xkYTmqjear3lSGydIn7wh"
},
"playlistsV2": [
{
"__typename": "Playlist",
"description": "Kehlani the album, out now 🫀! Tap the ⨁ to be the first to hear new Kehlani songs as soon as they're released.",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c4ab1888352d5c1333ee7acfb",
"width": null
}
]
}
],
"name": "Kehlani - Kehlani",
"ownerV2": {
"__typename": "User",
"name": "Topsify Radio"
},
"uri": "spotify:playlist:5dQQwjCOKTSK69NFkwnqeT"
},
{
"__typename": "Playlist",
"description": "SETLIST TBA: Get ready for Kehlani's 2026 World Tour with her recent setlist and new album ! 🎵Updated after every show 🎵Kehlani Tour Setlist 2026",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c56f9a13022e719e07524a185",
"width": null
}
]
}
],
"name": "Kehlani Setlist - World Tour 2026",
"ownerV2": {
"__typename": "User",
"name": "The Setlist"
},
"uri": "spotify:playlist:3FYR5UFpWRR2penXukZKU7"
},
{
"__typename": "Playlist",
"description": "blue water road out now !!",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8439a8cc1415c4ab0d91094632",
"width": null
}
]
}
],
"name": "Kehlani - blue water road",
"ownerV2": {
"__typename": "User",
"name": "Kehlani"
},
"uri": "spotify:playlist:4hRlti8R6tNcnjoOrCpu1b"
}
]
},
"relatedContent": {
"appearsOn": [
{
"artists": [
{
"profile": {
"name": "Post Malone"
},
"uri": "spotify:artist:246dkjvS1zLTtiykXe5h60"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0255404f712deb84d0650a4b41",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485155404f712deb84d0650a4b41",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27355404f712deb84d0650a4b41",
"width": 640
}
]
},
"date": {
"year": 2016
},
"id": "5s0rmjP8XOPhP6HhqOhuyC",
"name": "Stoney (Deluxe)",
"sharingInfo": {
"shareId": "Akg8JnIwT8aiRr33zjf_kQ",
"shareUrl": "https://open.spotify.com/album/5s0rmjP8XOPhP6HhqOhuyC?si=Akg8JnIwT8aiRr33zjf_kQ"
},
"type": "ALBUM",
"uri": "spotify:album:5s0rmjP8XOPhP6HhqOhuyC"
},
{
"artists": [
{
"profile": {
"name": "Post Malone"
},
"uri": "spotify:artist:246dkjvS1zLTtiykXe5h60"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02894a761abf954838a84c8db9",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851894a761abf954838a84c8db9",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273894a761abf954838a84c8db9",
"width": 640
}
]
},
"date": {
"year": 2016
},
"id": "2TbtBmA00IP0P1GpUqIaXS",
"name": "Stoney (Deluxe)",
"sharingInfo": {
"shareId": "43o19-zWSrGFVDHyId_JoQ",
"shareUrl": "https://open.spotify.com/album/2TbtBmA00IP0P1GpUqIaXS?si=43o19-zWSrGFVDHyId_JoQ"
},
"type": "ALBUM",
"uri": "spotify:album:2TbtBmA00IP0P1GpUqIaXS"
},
{
"artists": [
{
"profile": {
"name": "Charlie Puth"
},
"uri": "spotify:artist:6VuMaDnrHyPL1p4EHjYLi7"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02897f73256b9128a9d70eaf66",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851897f73256b9128a9d70eaf66",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273897f73256b9128a9d70eaf66",
"width": 640
}
]
},
"date": {
"year": 2018
},
"id": "0mZIUXje90JtHxPNzWsJNR",
"name": "Voicenotes",
"sharingInfo": {
"shareId": "0svP6Vs_Rjq5DbBuL0vmrA",
"shareUrl": "https://open.spotify.com/album/0mZIUXje90JtHxPNzWsJNR?si=0svP6Vs_Rjq5DbBuL0vmrA"
},
"type": "ALBUM",
"uri": "spotify:album:0mZIUXje90JtHxPNzWsJNR"
},
{
"artists": [
{
"profile": {
"name": "Cardi B"
},
"uri": "spotify:artist:4kYSro6naA4h99UJvo89HB"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02a0caffda54afd0a65995bbab",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851a0caffda54afd0a65995bbab",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273a0caffda54afd0a65995bbab",
"width": 640
}
]
},
"date": {
"year": 2018
},
"id": "4KdtEKjY3Gi0mKiSdy96ML",
"name": "Invasion of Privacy",
"sharingInfo": {
"shareId": "0mskNuliRG29W7qrdjmVXQ",
"shareUrl": "https://open.spotify.com/album/4KdtEKjY3Gi0mKiSdy96ML?si=0mskNuliRG29W7qrdjmVXQ"
},
"type": "ALBUM",
"uri": "spotify:album:4KdtEKjY3Gi0mKiSdy96ML"
},
{
"artists": [
{
"profile": {
"name": "Cardi B"
},
"uri": "spotify:artist:4kYSro6naA4h99UJvo89HB"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02aa451cc44a4ac5ffb88ee848",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851aa451cc44a4ac5ffb88ee848",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273aa451cc44a4ac5ffb88ee848",
"width": 640
}
]
},
"date": {
"year": 2018
},
"id": "4sDAyYEMhD2YyREWKxj3aD",
"name": "Invasion of Privacy",
"sharingInfo": {
"shareId": "JAclH3C6QpqmR7FfIZtF_g",
"shareUrl": "https://open.spotify.com/album/4sDAyYEMhD2YyREWKxj3aD?si=JAclH3C6QpqmR7FfIZtF_g"
},
"type": "ALBUM",
"uri": "spotify:album:4sDAyYEMhD2YyREWKxj3aD"
},
{
"artists": [
{
"profile": {
"name": "Zara Larsson"
},
"uri": "spotify:artist:1Xylc3o4UrD53lo9CvFvVg"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d20dd1327b269aa6af1fab69",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d20dd1327b269aa6af1fab69",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d20dd1327b269aa6af1fab69",
"width": 640
}
]
},
"date": {
"year": 2026
},
"id": "4WMcRlbt7NvpKrrqO8ykQf",
"name": "Midnight Sun: Girls Trip",
"sharingInfo": {
"shareId": "1THWStdHS_yo41C00CsCXw",
"shareUrl": "https://open.spotify.com/album/4WMcRlbt7NvpKrrqO8ykQf?si=1THWStdHS_yo41C00CsCXw"
},
"type": "ALBUM",
"uri": "spotify:album:4WMcRlbt7NvpKrrqO8ykQf"
},
{
"artists": [
{
"profile": {
"name": "Zara Larsson"
},
"uri": "spotify:artist:1Xylc3o4UrD53lo9CvFvVg"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02a31ab0f3ab14e04bae830d40",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851a31ab0f3ab14e04bae830d40",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273a31ab0f3ab14e04bae830d40",
"width": 640
}
]
},
"date": {
"year": 2026
},
"id": "3SJU0Tncb0yXItHnxRWzY6",
"name": "Midnight Sun: Girls Trip",
"sharingInfo": {
"shareId": "hcs0WXiFSCO2W4ruL_VoWw",
"shareUrl": "https://open.spotify.com/album/3SJU0Tncb0yXItHnxRWzY6?si=hcs0WXiFSCO2W4ruL_VoWw"
},
"type": "ALBUM",
"uri": "spotify:album:3SJU0Tncb0yXItHnxRWzY6"
},
{
"artists": [
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e027fe4a82a08c4f0decbeddbc6",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048517fe4a82a08c4f0decbeddbc6",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2737fe4a82a08c4f0decbeddbc6",
"width": 640
}
]
},
"date": {
"year": 2020
},
"id": "63iWSELt9V1kV6RSMxN7Ii",
"name": "Changes",
"sharingInfo": {
"shareId": "l9pNvigTSnuY9Yp7oRcBHw",
"shareUrl": "https://open.spotify.com/album/63iWSELt9V1kV6RSMxN7Ii?si=l9pNvigTSnuY9Yp7oRcBHw"
},
"type": "ALBUM",
"uri": "spotify:album:63iWSELt9V1kV6RSMxN7Ii"
},
{
"artists": [
{
"profile": {
"name": "GIVĒON"
},
"uri": "spotify:artist:4fxd5Ee7UefO4CUXgwJ7IP"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0240804dba7b99de3125438c71",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485140804dba7b99de3125438c71",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27340804dba7b99de3125438c71",
"width": 640
}
]
},
"date": {
"year": 2026
},
"id": "5qUp79PAejWMSXh0l04Zy9",
"name": "BELOVED: ACT II",
"sharingInfo": {
"shareId": "1Hf120zlQgm0llum4EkP5w",
"shareUrl": "https://open.spotify.com/album/5qUp79PAejWMSXh0l04Zy9?si=1Hf120zlQgm0llum4EkP5w"
},
"type": "ALBUM",
"uri": "spotify:album:5qUp79PAejWMSXh0l04Zy9"
},
{
"artists": [
{
"profile": {
"name": "Calvin Harris"
},
"uri": "spotify:artist:7CajNmpbOovFoOoasH2HaY"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e024d3fa5ce7ba599f4fd7803ef",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048514d3fa5ce7ba599f4fd7803ef",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2734d3fa5ce7ba599f4fd7803ef",
"width": 640
}
]
},
"date": {
"year": 2017
},
"id": "2HaqChIDc5go3qxVunBDK0",
"name": "Funk Wav Bounces Vol.1",
"sharingInfo": {
"shareId": "nNJ_5kVsTC2l3hc_m7uw6g",
"shareUrl": "https://open.spotify.com/album/2HaqChIDc5go3qxVunBDK0?si=nNJ_5kVsTC2l3hc_m7uw6g"
},
"type": "ALBUM",
"uri": "spotify:album:2HaqChIDc5go3qxVunBDK0"
},
{
"artists": [
{
"profile": {
"name": "ZAYN"
},
"uri": "spotify:artist:5ZsFI1h6hIdQRw2ti0hz81"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02b4c42ba7470503094d5a1c5a",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851b4c42ba7470503094d5a1c5a",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273b4c42ba7470503094d5a1c5a",
"width": 640
}
]
},
"date": {
"year": 2016
},
"id": "5amj9zNeZ3B2EdpBgXrOZ0",
"name": "Mind Of Mine (Deluxe Edition)",
"sharingInfo": {
"shareId": "LYHK9_-hQRSJuv94WLC8vQ",
"shareUrl": "https://open.spotify.com/album/5amj9zNeZ3B2EdpBgXrOZ0?si=LYHK9_-hQRSJuv94WLC8vQ"
},
"type": "ALBUM",
"uri": "spotify:album:5amj9zNeZ3B2EdpBgXrOZ0"
},
{
"artists": [
{
"profile": {
"name": "G-Eazy"
},
"uri": "spotify:artist:02kJSzxNuaWGqwubyUba0Z"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02046527a9c176f7c2916f3530",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851046527a9c176f7c2916f3530",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273046527a9c176f7c2916f3530",
"width": 640
}
]
},
"date": {
"year": 2017
},
"id": "1VAc77UvK5wj8ZSWCo3V2b",
"name": "The Beautiful & Damned",
"sharingInfo": {
"shareId": "RlzqShGEQpGXu37BDBXGxw",
"shareUrl": "https://open.spotify.com/album/1VAc77UvK5wj8ZSWCo3V2b?si=RlzqShGEQpGXu37BDBXGxw"
},
"type": "ALBUM",
"uri": "spotify:album:1VAc77UvK5wj8ZSWCo3V2b"
},
{
"artists": [
{
"profile": {
"name": "G-Eazy"
},
"uri": "spotify:artist:02kJSzxNuaWGqwubyUba0Z"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ccffe569ec8303d13c23c7c4",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851ccffe569ec8303d13c23c7c4",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273ccffe569ec8303d13c23c7c4",
"width": 640
}
]
},
"date": {
"year": 2017
},
"id": "6Q9oWSLNgNd5WStqiPopBO",
"name": "The Beautiful & Damned",
"sharingInfo": {
"shareId": "m9h06YWPShih7nOUi010OQ",
"shareUrl": "https://open.spotify.com/album/6Q9oWSLNgNd5WStqiPopBO?si=m9h06YWPShih7nOUi010OQ"
},
"type": "ALBUM",
"uri": "spotify:album:6Q9oWSLNgNd5WStqiPopBO"
},
{
"artists": [
{
"profile": {
"name": "G-Eazy"
},
"uri": "spotify:artist:02kJSzxNuaWGqwubyUba0Z"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02bf34660a2cc3f4d83966b1e7",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851bf34660a2cc3f4d83966b1e7",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273bf34660a2cc3f4d83966b1e7",
"width": 640
}
]
},
"date": {
"year": 2015
},
"id": "09Q3WwGYsQe5ognkvVkmCu",
"name": "When It's Dark Out",
"sharingInfo": {
"shareId": "AxKLthCSR4WNt5L9KiG_1g",
"shareUrl": "https://open.spotify.com/album/09Q3WwGYsQe5ognkvVkmCu?si=AxKLthCSR4WNt5L9KiG_1g"
},
"type": "ALBUM",
"uri": "spotify:album:09Q3WwGYsQe5ognkvVkmCu"
},
{
"artists": [
{
"profile": {
"name": "Cardi B"
},
"uri": "spotify:artist:4kYSro6naA4h99UJvo89HB"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02967b09b0309b97afc0b6ee1d",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851967b09b0309b97afc0b6ee1d",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273967b09b0309b97afc0b6ee1d",
"width": 640
}
]
},
"date": {
"year": 2025
},
"id": "0qJL6xmheW2HD1H0SWCxRh",
"name": "AM I THE DRAMA? (Ultimate Edition)",
"sharingInfo": {
"shareId": "AEhWJneZT0SweFNMgjYg5g",
"shareUrl": "https://open.spotify.com/album/0qJL6xmheW2HD1H0SWCxRh?si=AEhWJneZT0SweFNMgjYg5g"
},
"type": "ALBUM",
"uri": "spotify:album:0qJL6xmheW2HD1H0SWCxRh"
},
{
"artists": [
{
"profile": {
"name": "Cardi B"
},
"uri": "spotify:artist:4kYSro6naA4h99UJvo89HB"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02762cb4007f96ee44852f263e",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851762cb4007f96ee44852f263e",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273762cb4007f96ee44852f263e",
"width": 640
}
]
},
"date": {
"year": 2025
},
"id": "68qkDEJOnNepRvHL1SkVDi",
"name": "AM I THE DRAMA? (Beat Edition)",
"sharingInfo": {
"shareId": "ExBO5xQDSzKjiwULOrR2Ug",
"shareUrl": "https://open.spotify.com/album/68qkDEJOnNepRvHL1SkVDi?si=ExBO5xQDSzKjiwULOrR2Ug"
},
"type": "ALBUM",
"uri": "spotify:album:68qkDEJOnNepRvHL1SkVDi"
},
{
"artists": [
{
"profile": {
"name": "Cardi B"
},
"uri": "spotify:artist:4kYSro6naA4h99UJvo89HB"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02bfa7453e9fd971876f356966",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851bfa7453e9fd971876f356966",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273bfa7453e9fd971876f356966",
"width": 640
}
]
},
"date": {
"year": 2025
},
"id": "6jJet5d0EvJNNzw5aHLqb4",
"name": "AM I THE DRAMA? (Beat Edition)",
"sharingInfo": {
"shareId": "KoyuLFDESsuIaa8wANUntw",
"shareUrl": "https://open.spotify.com/album/6jJet5d0EvJNNzw5aHLqb4?si=KoyuLFDESsuIaa8wANUntw"
},
"type": "ALBUM",
"uri": "spotify:album:6jJet5d0EvJNNzw5aHLqb4"
},
{
"artists": [
{
"profile": {
"name": "Cardi B"
},
"uri": "spotify:artist:4kYSro6naA4h99UJvo89HB"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e024449c12628ef639dd6500c4a",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048514449c12628ef639dd6500c4a",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2734449c12628ef639dd6500c4a",
"width": 640
}
]
},
"date": {
"year": 2025
},
"id": "1LsNb6mVitbLZCxnRsbCDJ",
"name": "AM I THE DRAMA?",
"sharingInfo": {
"shareId": "acO0xafVTs2xkvhVceYiyA",
"shareUrl": "https://open.spotify.com/album/1LsNb6mVitbLZCxnRsbCDJ?si=acO0xafVTs2xkvhVceYiyA"
},
"type": "ALBUM",
"uri": "spotify:album:1LsNb6mVitbLZCxnRsbCDJ"
},
{
"artists": [
{
"profile": {
"name": "Cardi B"
},
"uri": "spotify:artist:4kYSro6naA4h99UJvo89HB"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0200be986943b146f0aaf83359",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485100be986943b146f0aaf83359",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27300be986943b146f0aaf83359",
"width": 640
}
]
},
"date": {
"year": 2025
},
"id": "3Jgxxgs9WbgRrvTaY9YFN8",
"name": "AM I THE DRAMA?",
"sharingInfo": {
"shareId": "T7pMI7e7QgCyJK5KvxS2mg",
"shareUrl": "https://open.spotify.com/album/3Jgxxgs9WbgRrvTaY9YFN8?si=T7pMI7e7QgCyJK5KvxS2mg"
},
"type": "ALBUM",
"uri": "spotify:album:3Jgxxgs9WbgRrvTaY9YFN8"
},
{
"artists": [
{
"profile": {
"name": "Various Artists"
},
"uri": "spotify:artist:0LyfQWJT6nXafLPZqxe9Of"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02cb4ec52c48a6b071ed2ab6bc",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851cb4ec52c48a6b071ed2ab6bc",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273cb4ec52c48a6b071ed2ab6bc",
"width": 640
}
]
},
"date": {
"year": 2016
},
"id": "5rOHrnrRomvSJhQLGVtfJ8",
"name": "Suicide Squad: The Album",
"sharingInfo": {
"shareId": "Dcv4CNsGQZ6qnCK9Gm7wiQ",
"shareUrl": "https://open.spotify.com/album/5rOHrnrRomvSJhQLGVtfJ8?si=Dcv4CNsGQZ6qnCK9Gm7wiQ"
},
"type": "COMPILATION",
"uri": "spotify:album:5rOHrnrRomvSJhQLGVtfJ8"
},
{
"artists": [
{
"profile": {
"name": "kwn"
},
"uri": "spotify:artist:2KnhnL8zuqLhIhGk601fsb"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0292c81988695e83c2dd87a6b3",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485192c81988695e83c2dd87a6b3",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27392c81988695e83c2dd87a6b3",
"width": 640
}
]
},
"date": {
"year": 2025
},
"id": "60cNc5CdvVCTEF5A6FRhFN",
"name": "with all due respect",
"sharingInfo": {
"shareId": "92H8lZDyRbecufzhj9el7w",
"shareUrl": "https://open.spotify.com/album/60cNc5CdvVCTEF5A6FRhFN?si=92H8lZDyRbecufzhj9el7w"
},
"type": "ALBUM",
"uri": "spotify:album:60cNc5CdvVCTEF5A6FRhFN"
},
{
"artists": [
{
"profile": {
"name": "Burna Boy"
},
"uri": "spotify:artist:3wcj11K77LjEY1PkEazffa"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d98e997eaad5f503b9e1f2f2",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d98e997eaad5f503b9e1f2f2",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d98e997eaad5f503b9e1f2f2",
"width": 640
}
]
},
"date": {
"year": 2022
},
"id": "6kgDkAupBVRSqbJPUaTJwQ",
"name": "Love, Damini",
"sharingInfo": {
"shareId": "hnj34VhARvSH7v42g9LPaA",
"shareUrl": "https://open.spotify.com/album/6kgDkAupBVRSqbJPUaTJwQ?si=hnj34VhARvSH7v42g9LPaA"
},
"type": "ALBUM",
"uri": "spotify:album:6kgDkAupBVRSqbJPUaTJwQ"
},
{
"artists": [
{
"profile": {
"name": "Burna Boy"
},
"uri": "spotify:artist:3wcj11K77LjEY1PkEazffa"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0221315ced0015f33e514be031",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485121315ced0015f33e514be031",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27321315ced0015f33e514be031",
"width": 640
}
]
},
"date": {
"year": 2022
},
"id": "53s3xfNBbh5Z0Xv9IXjvi4",
"name": "Love, Damini",
"sharingInfo": {
"shareId": "cKMG3kblTtG--oJcC-o-5Q",
"shareUrl": "https://open.spotify.com/album/53s3xfNBbh5Z0Xv9IXjvi4?si=cKMG3kblTtG--oJcC-o-5Q"
},
"type": "ALBUM",
"uri": "spotify:album:53s3xfNBbh5Z0Xv9IXjvi4"
},
{
"artists": [
{
"profile": {
"name": "Eminem"
},
"uri": "spotify:artist:7dGJo4pcD2V6oG8kP0tJRR"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02dee6b58d35215322626b5701",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851dee6b58d35215322626b5701",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273dee6b58d35215322626b5701",
"width": 640
}
]
},
"date": {
"year": 2017
},
"id": "0U6ldwLBEMkwgfQRY4V6D2",
"name": "Revival",
"sharingInfo": {
"shareId": "Zl7c6mJDR3q5c_cKA18q3Q",
"shareUrl": "https://open.spotify.com/album/0U6ldwLBEMkwgfQRY4V6D2?si=Zl7c6mJDR3q5c_cKA18q3Q"
},
"type": "ALBUM",
"uri": "spotify:album:0U6ldwLBEMkwgfQRY4V6D2"
},
{
"artists": [
{
"profile": {
"name": "Eminem"
},
"uri": "spotify:artist:7dGJo4pcD2V6oG8kP0tJRR"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0216c053fa6e639a75ae4d62f4",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485116c053fa6e639a75ae4d62f4",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27316c053fa6e639a75ae4d62f4",
"width": 640
}
]
},
"date": {
"year": 2017
},
"id": "7cwcyW39NGUAiukHc1MOFD",
"name": "Revival",
"sharingInfo": {
"shareId": "4guZHhiCTZWWbCIXoihbeA",
"shareUrl": "https://open.spotify.com/album/7cwcyW39NGUAiukHc1MOFD?si=4guZHhiCTZWWbCIXoihbeA"
},
"type": "ALBUM",
"uri": "spotify:album:7cwcyW39NGUAiukHc1MOFD"
},
{
"artists": [
{
"profile": {
"name": "Eminem"
},
"uri": "spotify:artist:7dGJo4pcD2V6oG8kP0tJRR"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02009dc7b4e062efa9614bb9b4",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851009dc7b4e062efa9614bb9b4",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273009dc7b4e062efa9614bb9b4",
"width": 640
}
]
},
"date": {
"year": 2017
},
"id": "02BQFiWcFYKb5iJIKVpPap",
"name": "Revival",
"sharingInfo": {
"shareId": "m2sCMkQ5RN61LRLvCTWK-Q",
"shareUrl": "https://open.spotify.com/album/02BQFiWcFYKb5iJIKVpPap?si=m2sCMkQ5RN61LRLvCTWK-Q"
},
"type": "ALBUM",
"uri": "spotify:album:02BQFiWcFYKb5iJIKVpPap"
},
{
"artists": [
{
"profile": {
"name": "Eminem"
},
"uri": "spotify:artist:7dGJo4pcD2V6oG8kP0tJRR"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d868999ff695d4c59b715bcc",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d868999ff695d4c59b715bcc",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d868999ff695d4c59b715bcc",
"width": 640
}
]
},
"date": {
"year": 2017
},
"id": "2mzSjECCtpaHI9GEt5lbkP",
"name": "Revival",
"sharingInfo": {
"shareId": "keLWMsalTWy5Y-seNJXLGQ",
"shareUrl": "https://open.spotify.com/album/2mzSjECCtpaHI9GEt5lbkP?si=keLWMsalTWy5Y-seNJXLGQ"
},
"type": "ALBUM",
"uri": "spotify:album:2mzSjECCtpaHI9GEt5lbkP"
},
{
"artists": [
{
"profile": {
"name": "YoungBoy Never Broke Again"
},
"uri": "spotify:artist:7wlFDEWiM5OoIAt8RSli8b"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ff5fcadfab14ea1675a40dc8",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851ff5fcadfab14ea1675a40dc8",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273ff5fcadfab14ea1675a40dc8",
"width": 640
}
]
},
"date": {
"year": 2022
},
"id": "1ZCsPUZ7j9dTqjhU2I36tw",
"name": "The Last Slimeto",
"sharingInfo": {
"shareId": "sCvdXOV9SO6l_Xor1_8hYg",
"shareUrl": "https://open.spotify.com/album/1ZCsPUZ7j9dTqjhU2I36tw?si=sCvdXOV9SO6l_Xor1_8hYg"
},
"type": "ALBUM",
"uri": "spotify:album:1ZCsPUZ7j9dTqjhU2I36tw"
},
{
"artists": [
{
"profile": {
"name": "YoungBoy Never Broke Again"
},
"uri": "spotify:artist:7wlFDEWiM5OoIAt8RSli8b"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02f3b81b06fef378a199f3fb63",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851f3b81b06fef378a199f3fb63",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273f3b81b06fef378a199f3fb63",
"width": 640
}
]
},
"date": {
"year": 2022
},
"id": "1JTRJtlrBA3cODrwPVgZHM",
"name": "The Last Slimeto",
"sharingInfo": {
"shareId": "YBTc47hoScOpGJRFYawHxg",
"shareUrl": "https://open.spotify.com/album/1JTRJtlrBA3cODrwPVgZHM?si=YBTc47hoScOpGJRFYawHxg"
},
"type": "ALBUM",
"uri": "spotify:album:1JTRJtlrBA3cODrwPVgZHM"
},
{
"artists": [
{
"profile": {
"name": "YK Osiris"
},
"uri": "spotify:artist:7meyrw7Or5DwteYxDJrkCM"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e020c0b9bba977d63617c4957e3",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048510c0b9bba977d63617c4957e3",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2730c0b9bba977d63617c4957e3",
"width": 640
}
]
},
"date": {
"year": 2019
},
"id": "52iN0AN48yBH5pF6C65ZmI",
"name": "The Golden Child",
"sharingInfo": {
"shareId": "KLkyujrQRva8Pneji470yA",
"shareUrl": "https://open.spotify.com/album/52iN0AN48yBH5pF6C65ZmI?si=KLkyujrQRva8Pneji470yA"
},
"type": "ALBUM",
"uri": "spotify:album:52iN0AN48yBH5pF6C65ZmI"
},
{
"artists": [
{
"profile": {
"name": "YK Osiris"
},
"uri": "spotify:artist:7meyrw7Or5DwteYxDJrkCM"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e021f84ad965e19bd4fc83cce08",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048511f84ad965e19bd4fc83cce08",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2731f84ad965e19bd4fc83cce08",
"width": 640
}
]
},
"date": {
"year": 2019
},
"id": "2YbugwMMdpxLocEHbA6Vps",
"name": "The Golden Child",
"sharingInfo": {
"shareId": "dbaMouqbSi-r90wW8LUZwA",
"shareUrl": "https://open.spotify.com/album/2YbugwMMdpxLocEHbA6Vps?si=dbaMouqbSi-r90wW8LUZwA"
},
"type": "ALBUM",
"uri": "spotify:album:2YbugwMMdpxLocEHbA6Vps"
},
{
"artists": [
{
"profile": {
"name": "Pink Sweat$"
},
"uri": "spotify:artist:1W7FNibLa0O0b572tB2w7t"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02f5ff54479607d276eaad3e61",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851f5ff54479607d276eaad3e61",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273f5ff54479607d276eaad3e61",
"width": 640
}
]
},
"date": {
"year": 2021
},
"id": "21iLTKX2O7LTHijlyXsbG1",
"name": "PINK PLANET",
"sharingInfo": {
"shareId": "B031OsfxQ_ixwvxxpmloww",
"shareUrl": "https://open.spotify.com/album/21iLTKX2O7LTHijlyXsbG1?si=B031OsfxQ_ixwvxxpmloww"
},
"type": "ALBUM",
"uri": "spotify:album:21iLTKX2O7LTHijlyXsbG1"
}
],
"discoveredOnV2": [
{
"__typename": "GenericError"
},
{
"__typename": "GenericError"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "The hottest 50. Cover: Ariana Grande",
"id": "37i9dQZF1DXcBWIGoYBM5M",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f000000028c9dc68bd893f9232ac4ec29",
"width": null
}
]
}
],
"name": "Today’s Top Hits",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M"
},
{
"__typename": "GenericError"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "This is Kehlani. The essential tracks, all in one playlist.",
"id": "37i9dQZF1DZ06evO039Pyg",
"images": [
{
"sources": [
{
"height": null,
"url": "https://pickasso.spotifycdn.com/image/ab67c0de0000deef/dt/v1/img/thisisv3/0cGUm45nv7Z6M6qdXYQGTX/en",
"width": null
}
]
}
],
"name": "This Is Kehlani",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DZ06evO039Pyg"
},
{
"__typename": "GenericError"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "Where R&B lives. Cover: Kehlani",
"id": "37i9dQZF1DX4SBhb3fqCJd",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f000000024ffa4f23798dc7bd8a3e4d3c",
"width": null
}
]
}
],
"name": "RNB X",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DX4SBhb3fqCJd"
},
{
"__typename": "Playlist",
"description": "best RNB songs of 2026 most popular trending today chill rnb music viral top 100 hottest pop rap mix latest neo soul sexy adult contemporary",
"id": "3We3LenpVndqS3rUCP0MeY",
"images": [
{
"sources": [
{
"height": 640,
"url": "https://mosaic.scdn.co/640/ab67616d00001e02985ee0c2df0f785e5f3e2178ab67616d00001e02ce5bc87f637b46ad01831fc4ab67616d00001e02d65c4773bc5061fd27facc5bab67616d00001e02dca9a648e27c1e8d6dedf31c",
"width": 640
},
{
"height": 300,
"url": "https://mosaic.scdn.co/300/ab67616d00001e02985ee0c2df0f785e5f3e2178ab67616d00001e02ce5bc87f637b46ad01831fc4ab67616d00001e02d65c4773bc5061fd27facc5bab67616d00001e02dca9a648e27c1e8d6dedf31c",
"width": 300
},
{
"height": 60,
"url": "https://mosaic.scdn.co/60/ab67616d00001e02985ee0c2df0f785e5f3e2178ab67616d00001e02ce5bc87f637b46ad01831fc4ab67616d00001e02d65c4773bc5061fd27facc5bab67616d00001e02dca9a648e27c1e8d6dedf31c",
"width": 60
}
]
}
],
"name": "R&B 2026 🔥 New R&B Hits / Top RnB Songs",
"ownerV2": {
"__typename": "User",
"name": "Fox"
},
"uri": "spotify:playlist:3We3LenpVndqS3rUCP0MeY"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "Best tracks from the world of OPM and pop. Cover: Ariana Grande",
"id": "37i9dQZF1DXcZQSjptOQtk",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002288030756152f2795a24a205",
"width": null
}
]
}
],
"name": "Hot Hits Philippines",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXcZQSjptOQtk"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "Current favorites and exciting new music. Cover: Zara Larsson",
"id": "37i9dQZF1DXcRXFNfZr7Tp",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f000000022f7fc6a2bc9d8cca05b4f359",
"width": null
}
]
}
],
"name": "just hits",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXcRXFNfZr7Tp"
},
{
"__typename": "Playlist",
"description": "Best songs from Wish.",
"id": "77iBXD3TD0pGEHxOD1lkEH",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da846e33a5b4d218c83eabde6efe",
"width": null
}
]
}
],
"name": "WISH 107.5 PLAYLIST 2026",
"ownerV2": {
"__typename": "User",
"name": "Lancelot Dulac"
},
"uri": "spotify:playlist:77iBXD3TD0pGEHxOD1lkEH"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "The UK's biggest playlist. Cover: F3miii",
"id": "37i9dQZF1DWY4lFlS4Pnso",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002ae9a9b96f0416f514ba92ed2",
"width": null
}
]
}
],
"name": "Hot Hits UK",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DWY4lFlS4Pnso"
},
{
"__typename": "Playlist",
"description": "HITS 2026 🔥 All of today's top chart hits and hot new releases from around the world. Hit ♡ to hear the biggest new songs first! Cover: Bruno Mars",
"id": "5iwkYfnHAGMEFLiHFFGnP4",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8480ff79d686b0f1f5a45b7d7b",
"width": null
}
]
}
],
"name": "HITS 2026 - Today's Top Songs",
"ownerV2": {
"__typename": "User",
"name": "Topsify"
},
"uri": "spotify:playlist:5iwkYfnHAGMEFLiHFFGnP4"
},
{
"__typename": "Playlist",
"description": "Bedroom songs w Chase Atlantic, Chris Grey, Dark Romance, The Weeknd, Artemas, Dutch Melrose, Jutes, Arctic Monkeys, Ex Habit, Omido, ",
"id": "0mQbGXAlmsI3T2Vyfa0IVd",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84ce7bb495a5a6f704edc6a701",
"width": null
}
]
}
],
"name": "Sex Playlist 👅💦Hottest Bedroom Music🔞 (Isabel LaRosa, Montell Fish, Two feet, The Neighbourhood",
"ownerV2": {
"__typename": "User",
"name": "Omido"
},
"uri": "spotify:playlist:0mQbGXAlmsI3T2Vyfa0IVd"
}
],
"featuringV2": [
{
"__typename": "Playlist",
"description": "This is Kehlani. The essential tracks, all in one playlist.",
"id": "37i9dQZF1DZ06evO039Pyg",
"images": [
{
"sources": [
{
"height": null,
"url": "https://pickasso.spotifycdn.com/image/ab67c0de0000deef/dt/v1/img/thisisv3/0cGUm45nv7Z6M6qdXYQGTX/en",
"width": null
}
]
}
],
"name": "This Is Kehlani",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DZ06evO039Pyg"
},
{
"__typename": "Playlist",
"description": "With Mariah the Scientist, kwn, GIVĒON and more",
"id": "37i9dQZF1E4DPtC1kA8Lj3",
"images": [
{
"sources": [
{
"height": null,
"url": "https://pickasso.spotifycdn.com/image/ab67c0de0000deef/dt/v1/img/radio/artist/0cGUm45nv7Z6M6qdXYQGTX/en",
"width": null
}
]
}
],
"name": "Kehlani Radio",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1E4DPtC1kA8Lj3"
},
{
"__typename": "Playlist",
"description": "Where R&B lives. Cover: Kehlani",
"id": "37i9dQZF1DX4SBhb3fqCJd",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f000000024ffa4f23798dc7bd8a3e4d3c",
"width": null
}
]
}
],
"name": "RNB X",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DX4SBhb3fqCJd"
},
{
"__typename": "Playlist",
"description": "The biggest songs of the 2010s. Cover: Justin Bieber",
"id": "37i9dQZF1DX5Ejj0EkURtP",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002ddeb90231491c14812b062ff",
"width": null
}
]
}
],
"name": "All Out 2010s",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DX5Ejj0EkURtP"
},
{
"__typename": "Playlist",
"description": "summer has landed",
"id": "37i9dQZF1DX9nkam6FKfgM",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002d961a4a0ca8fe37146bc2292",
"width": null
}
]
}
],
"name": "Summer Pop",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DX9nkam6FKfgM"
},
{
"__typename": "Playlist",
"description": "Current favorites and exciting new music. Cover: Zara Larsson",
"id": "37i9dQZF1DXcRXFNfZr7Tp",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f000000022f7fc6a2bc9d8cca05b4f359",
"width": null
}
]
}
],
"name": "just hits",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXcRXFNfZr7Tp"
},
{
"__typename": "Playlist",
"description": "The hottest tracks of today ft. Don Toliver, Kehlani, Drake and more.",
"id": "37i9dQZF1DWYs83FtTMQFw",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002d4f871e4f1935eb63ecf403d",
"width": null
}
]
}
],
"name": "Hot Rhythmic",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DWYs83FtTMQFw"
},
{
"__typename": "Playlist",
"description": "Something cute for baddies doing their hair and make-up.",
"id": "37i9dQZF1DWWp9JrEQN7W1",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002fe4e25c8069497bb74127269",
"width": null
}
]
}
],
"name": "Getting Ready 💋",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DWWp9JrEQN7W1"
}
],
"relatedArtists": [
{
"id": "7HkdQ0gt53LP4zmHsL0nap",
"profile": {
"name": "Ella Mai"
},
"uri": "spotify:artist:7HkdQ0gt53LP4zmHsL0nap",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb5d6ed813fc2c93765152ff7e",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1785d6ed813fc2c93765152ff7e",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051745d6ed813fc2c93765152ff7e",
"width": 320
}
]
}
}
},
{
"id": "7bXgB6jMjp9ATFy66eO08Z",
"profile": {
"name": "Chris Brown"
},
"uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb913ab85302df0ddfb77131e9",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178913ab85302df0ddfb77131e9",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174913ab85302df0ddfb77131e9",
"width": 320
}
]
}
}
},
{
"id": "0nnBZ8FXWjG9wZgM2cpfeb",
"profile": {
"name": "Leon Thomas"
},
"uri": "spotify:artist:0nnBZ8FXWjG9wZgM2cpfeb",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebc6c4f4aaf40ebee92b8a8228",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178c6c4f4aaf40ebee92b8a8228",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174c6c4f4aaf40ebee92b8a8228",
"width": 320
}
]
}
}
},
{
"id": "4fxd5Ee7UefO4CUXgwJ7IP",
"profile": {
"name": "GIVĒON"
},
"uri": "spotify:artist:4fxd5Ee7UefO4CUXgwJ7IP",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebe357870455bc56f7ef4147f8",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178e357870455bc56f7ef4147f8",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174e357870455bc56f7ef4147f8",
"width": 320
}
]
}
}
},
{
"id": "7tjVFCxJdwT4NdrTmjyjQ6",
"profile": {
"name": "Muni Long"
},
"uri": "spotify:artist:7tjVFCxJdwT4NdrTmjyjQ6",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb37c11c7e11e87dd22bdc65a4",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f17837c11c7e11e87dd22bdc65a4",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab6761610000517437c11c7e11e87dd22bdc65a4",
"width": 320
}
]
}
}
},
{
"id": "67nwj3Y5sZQLl72VNUHEYE",
"profile": {
"name": "Wale"
},
"uri": "spotify:artist:67nwj3Y5sZQLl72VNUHEYE",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb273bdadffd7138dcbd7b79c3",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178273bdadffd7138dcbd7b79c3",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174273bdadffd7138dcbd7b79c3",
"width": 320
}
]
}
}
},
{
"id": "57LYzLEk2LcFghVwuWbcuS",
"profile": {
"name": "Summer Walker"
},
"uri": "spotify:artist:57LYzLEk2LcFghVwuWbcuS",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb7dccb6280ed3402110d43ce3",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1787dccb6280ed3402110d43ce3",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051747dccb6280ed3402110d43ce3",
"width": 320
}
]
}
}
},
{
"id": "4DHLoiIqFYYFjH09WduvFd",
"profile": {
"name": "Coco Jones"
},
"uri": "spotify:artist:4DHLoiIqFYYFjH09WduvFd",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb555c76ee52786dccb288e3f9",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178555c76ee52786dccb288e3f9",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174555c76ee52786dccb288e3f9",
"width": 320
}
]
}
}
},
{
"id": "7tYKF4w9nC0nq9CsPZTHyP",
"profile": {
"name": "SZA"
},
"uri": "spotify:artist:7tYKF4w9nC0nq9CsPZTHyP",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebfd0a9fb6c252a3ba44079acf",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178fd0a9fb6c252a3ba44079acf",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174fd0a9fb6c252a3ba44079acf",
"width": 320
}
]
}
}
},
{
"id": "687cZJR45JO7jhk1LHIbgq",
"profile": {
"name": "Tems"
},
"uri": "spotify:artist:687cZJR45JO7jhk1LHIbgq",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb22d7d6f8981c7a27bf68a382",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f17822d7d6f8981c7a27bf68a382",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab6761610000517422d7d6f8981c7a27bf68a382",
"width": 320
}
]
}
}
},
{
"id": "7HO5fOXE4gh3lzZn64tX2E",
"profile": {
"name": "Mariah the Scientist"
},
"uri": "spotify:artist:7HO5fOXE4gh3lzZn64tX2E",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb6e0ad52899974a169ab69c88",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1786e0ad52899974a169ab69c88",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051746e0ad52899974a169ab69c88",
"width": 320
}
]
}
}
},
{
"id": "2KnhnL8zuqLhIhGk601fsb",
"profile": {
"name": "kwn"
},
"uri": "spotify:artist:2KnhnL8zuqLhIhGk601fsb",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebc3bfed5430b154e0a1b209f8",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178c3bfed5430b154e0a1b209f8",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174c3bfed5430b154e0a1b209f8",
"width": 320
}
]
}
}
},
{
"id": "3SozjO3Lat463tQICI9LcE",
"profile": {
"name": "Tyla"
},
"uri": "spotify:artist:3SozjO3Lat463tQICI9LcE",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb69719e4164b893213a525d25",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f17869719e4164b893213a525d25",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab6761610000517469719e4164b893213a525d25",
"width": 320
}
]
}
}
},
{
"id": "3MdXrJWsbVzdn6fe5JYkSQ",
"profile": {
"name": "Latto"
},
"uri": "spotify:artist:3MdXrJWsbVzdn6fe5JYkSQ",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb2d805d9a367bdad2096ab817",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1782d805d9a367bdad2096ab817",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051742d805d9a367bdad2096ab817",
"width": 320
}
]
}
}
},
{
"id": "6ucHomyCWjxmvbyqAAbSci",
"profile": {
"name": "SAILORR"
},
"uri": "spotify:artist:6ucHomyCWjxmvbyqAAbSci",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb7225fa0852ab119726d088dd",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1787225fa0852ab119726d088dd",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051747225fa0852ab119726d088dd",
"width": 320
}
]
}
}
},
{
"id": "0s4kXsjYeH0S1xRyVGN4NO",
"profile": {
"name": "FLO"
},
"uri": "spotify:artist:0s4kXsjYeH0S1xRyVGN4NO",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb85729f18eb0edf40d80dc18a",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f17885729f18eb0edf40d80dc18a",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab6761610000517485729f18eb0edf40d80dc18a",
"width": 320
}
]
}
}
},
{
"id": "4IVAbR2w4JJNJDDRFP3E83",
"profile": {
"name": "6LACK"
},
"uri": "spotify:artist:4IVAbR2w4JJNJDDRFP3E83",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebdb404c3ed5634b2db2926ddf",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178db404c3ed5634b2db2926ddf",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174db404c3ed5634b2db2926ddf",
"width": 320
}
]
}
}
},
{
"id": "360IAlyVv4PCEVjgyMZrxK",
"profile": {
"name": "Miguel"
},
"uri": "spotify:artist:360IAlyVv4PCEVjgyMZrxK",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb35e36c368fdcd26aba296bd1",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f17835e36c368fdcd26aba296bd1",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab6761610000517435e36c368fdcd26aba296bd1",
"width": 320
}
]
}
}
},
{
"id": "3Y7RZ31TRPVadSFVy1o8os",
"profile": {
"name": "H.E.R."
},
"uri": "spotify:artist:3Y7RZ31TRPVadSFVy1o8os",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb417db49cde3ed1c5a65e3514",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178417db49cde3ed1c5a65e3514",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174417db49cde3ed1c5a65e3514",
"width": 320
}
]
}
}
},
{
"id": "7c0XG5cIJTrrAgEC3ULPiq",
"profile": {
"name": "Ty Dolla $ign"
},
"uri": "spotify:artist:7c0XG5cIJTrrAgEC3ULPiq",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb4ef6e245168c33922bc6df1a",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1784ef6e245168c33922bc6df1a",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051744ef6e245168c33922bc6df1a",
"width": 320
}
]
}
}
}
]
},
"relatedMusicVideos": [],
"saved": false,
"sharingInfo": {
"shareId": "XG-mh-ZuSdK7Cl_zcnEAQA",
"shareUrl": "https://open.spotify.com/artist/0cGUm45nv7Z6M6qdXYQGTX?si=XG-mh-ZuSdK7Cl_zcnEAQA"
},
"stats": {
"followers": 9462413,
"monthlyListeners": 28333760,
"topCities": [
{
"city": "London",
"country": "GB",
"numberOfListeners": 518632,
"region": "ENG"
},
{
"city": "Quezon City",
"country": "PH",
"numberOfListeners": 358308,
"region": "00"
},
{
"city": "Sydney",
"country": "AU",
"numberOfListeners": 349807,
"region": "NSW"
},
{
"city": "Los Angeles",
"country": "US",
"numberOfListeners": 334294,
"region": "CA"
},
{
"city": "São Paulo",
"country": "BR",
"numberOfListeners": 310890,
"region": "SP"
}
],
"worldRank": 256
},
"unmappedMusicVideos": [],
"uri": "spotify:artist:0cGUm45nv7Z6M6qdXYQGTX",
"watchFeedEntrypoint": null,
"popularity": 79
}Check that your response includes the expected fields:
success(boolean)credits_remaining(number)__typename(string)discography(object)goods(object)Implement comprehensive error handling and retry logic for failed requests. Log errors properly for debugging.
Cache responses when possible to reduce API calls and improve performance. Consider data freshness requirements.
Never expose your API key in client-side code. Use environment variables and secure key management practices.
When scraping multiple artists, consider batching requests to maximize throughput while staying within rate limits.
Use asynchronous processing in Node.js to handle multiple requests concurrently and improve overall performance.
Analyze Spotify artists to understand market trends, competitor analysis, and audience insights.
Track performance metrics, engagement rates, and content trends across Spotify artists.
Identify potential customers and business opportunities throughSpotify data analysis.
Check your API key is correct and properly formatted in the x-api-key header.
You ran out of credits and need to buy more.
The resource might not exist or be private.
Temporary server issue. Implement retry logic with exponential backoff.
ScrapeCreators offers 100 free API calls to get started. After that, pricing starts at $10 for 5k requests with volume discounts available.
Scraping publicly available data is fair game, and we only collect public data. So anything that you can see in an incognito browser is what we collect.
There is no rate limit! So you can scrape as fast as you want!
All API responses are returned in JSON format, making it easy to integrate with any programming language or application.
Yes! This tutorial focuses on core Node.js HTTP concepts that work with any framework. The API calls remain the same regardless of your specific Node.js setup.
For large datasets, implement pagination, use streaming responses where available, and consider storing data in a database for efficient querying.
Ready to ship?
100 free API calls. No credit card. Same endpoint, same response shape.
Same endpoint, different language