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": 49998219840,
"__typename": "Artist",
"discography": {
"albums": [
{
"copyright": [
{
"text": "© 2025 ILH Production Co. LLC, under exclusive license to Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2025 ILH Production Co. LLC, under exclusive license to Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02a958d093e94944dd0e7258b2",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851a958d093e94944dd0e7258b2",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273a958d093e94944dd0e7258b2",
"width": 640
}
]
},
"date": {
"day": 5,
"month": 9,
"precision": "DAY",
"year": 2025
},
"id": "2KrREEyHxkdFGYAd1DmMdS",
"label": "JRC Entertainment, LLC / ILH Production Co. LLC / Def Jam Recordings",
"name": "SWAG II",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "qFHryKZOR8WHlZqyx0JtIQ",
"shareUrl": "https://open.spotify.com/album/2KrREEyHxkdFGYAd1DmMdS?si=qFHryKZOR8WHlZqyx0JtIQ"
},
"tracks": {
"totalCount": 44
},
"type": "ALBUM",
"uri": "spotify:album:2KrREEyHxkdFGYAd1DmMdS"
},
{
"copyright": [
{
"text": "© 2025 ILH Production Co. LLC, under exclusive license to Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2025 ILH Production Co. LLC, under exclusive license to Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d65c4773bc5061fd27facc5b",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d65c4773bc5061fd27facc5b",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d65c4773bc5061fd27facc5b",
"width": 640
}
]
},
"date": {
"day": 11,
"month": 7,
"precision": "DAY",
"year": 2025
},
"id": "5vD5M5VW62LL78Ko8x0CVZ",
"label": "JRC Entertainment, LLC / ILH Production Co. LLC / Def Jam Recordings",
"name": "SWAG",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "YCy74K5fTcyN-dPYAviwiw",
"shareUrl": "https://open.spotify.com/album/5vD5M5VW62LL78Ko8x0CVZ?si=YCy74K5fTcyN-dPYAviwiw"
},
"tracks": {
"totalCount": 21
},
"type": "ALBUM",
"uri": "spotify:album:5vD5M5VW62LL78Ko8x0CVZ"
},
{
"copyright": [
{
"text": "© 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e020cad1d28e91209690bdfb907",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048510cad1d28e91209690bdfb907",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2730cad1d28e91209690bdfb907",
"width": 640
}
]
},
"date": {
"day": 8,
"month": 10,
"precision": "DAY",
"year": 2021
},
"id": "3uPnO1aZBwMgWK1DI5zve9",
"label": "RBMG/Def Jam",
"name": "Justice (The Complete Edition)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "faoqqiq6SYuGTtzRDgMKgg",
"shareUrl": "https://open.spotify.com/album/3uPnO1aZBwMgWK1DI5zve9?si=faoqqiq6SYuGTtzRDgMKgg"
},
"tracks": {
"totalCount": 25
},
"type": "ALBUM",
"uri": "spotify:album:3uPnO1aZBwMgWK1DI5zve9"
},
{
"copyright": [
{
"text": "© 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02a01fed49fe3a84a9919cef29",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851a01fed49fe3a84a9919cef29",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273a01fed49fe3a84a9919cef29",
"width": 640
}
]
},
"date": {
"day": 26,
"month": 3,
"precision": "DAY",
"year": 2021
},
"id": "6mzpIm84OXCBxw6Tuhp1OA",
"label": "RBMG/Def Jam",
"name": "Justice (Triple Chucks Deluxe)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "6EgEpOxwRD-_Z6nB8NLbCg",
"shareUrl": "https://open.spotify.com/album/6mzpIm84OXCBxw6Tuhp1OA?si=6EgEpOxwRD-_Z6nB8NLbCg"
},
"tracks": {
"totalCount": 22
},
"type": "ALBUM",
"uri": "spotify:album:6mzpIm84OXCBxw6Tuhp1OA"
},
{
"copyright": [
{
"text": "© 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02e6f407c7f3a0ec98845e4431",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851e6f407c7f3a0ec98845e4431",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273e6f407c7f3a0ec98845e4431",
"width": 640
}
]
},
"date": {
"day": 19,
"month": 3,
"precision": "DAY",
"year": 2021
},
"id": "5dGWwsZ9iB2Xc3UKR0gif2",
"label": "RBMG/Def Jam",
"name": "Justice",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "nEiKnceATWyDuqMsBNL0Tw",
"shareUrl": "https://open.spotify.com/album/5dGWwsZ9iB2Xc3UKR0gif2?si=nEiKnceATWyDuqMsBNL0Tw"
},
"tracks": {
"totalCount": 16
},
"type": "ALBUM",
"uri": "spotify:album:5dGWwsZ9iB2Xc3UKR0gif2"
},
{
"copyright": [
{
"text": "© 2020 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2020 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"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": {
"day": 14,
"month": 2,
"precision": "DAY",
"year": 2020
},
"id": "63iWSELt9V1kV6RSMxN7Ii",
"label": "RBMG/Def Jam",
"name": "Changes",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "vHiLtwaZSg-ybKBg5dKqwQ",
"shareUrl": "https://open.spotify.com/album/63iWSELt9V1kV6RSMxN7Ii?si=vHiLtwaZSg-ybKBg5dKqwQ"
},
"tracks": {
"totalCount": 17
},
"type": "ALBUM",
"uri": "spotify:album:63iWSELt9V1kV6RSMxN7Ii"
},
{
"copyright": [
{
"text": "© 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02f46b9d202509a8f7384b90de",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851f46b9d202509a8f7384b90de",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273f46b9d202509a8f7384b90de",
"width": 640
}
]
},
"date": {
"day": 13,
"month": 11,
"precision": "DAY",
"year": 2015
},
"id": "6Fr2rQkZ383FcMqFyT7yPr",
"label": "RBMG/Def Jam",
"name": "Purpose (Deluxe)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "JRDkApy6QCyl4myZ8gzrbw",
"shareUrl": "https://open.spotify.com/album/6Fr2rQkZ383FcMqFyT7yPr?si=JRDkApy6QCyl4myZ8gzrbw"
},
"tracks": {
"totalCount": 19
},
"type": "ALBUM",
"uri": "spotify:album:6Fr2rQkZ383FcMqFyT7yPr"
},
{
"copyright": [
{
"text": "© 2017 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2017 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0258ae8fddecbd2630005409c9",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485158ae8fddecbd2630005409c9",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27358ae8fddecbd2630005409c9",
"width": 640
}
]
},
"date": {
"day": 13,
"month": 5,
"precision": "DAY",
"year": 2014
},
"id": "1rknZw4cyL9NInAqSwc8AA",
"label": "RBMG/Def Jam",
"name": "Journals",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "01SJEZcoRs-CGtnZDwy_XA",
"shareUrl": "https://open.spotify.com/album/1rknZw4cyL9NInAqSwc8AA?si=01SJEZcoRs-CGtnZDwy_XA"
},
"tracks": {
"totalCount": 16
},
"type": "ALBUM",
"uri": "spotify:album:1rknZw4cyL9NInAqSwc8AA"
},
{
"copyright": [
{
"text": "© 2013 The Island Def Jam Music Group",
"type": "C"
},
{
"text": "℗ 2013 The Island Def Jam Music Group",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0247a09610fbdadcba48b8fa9e",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485147a09610fbdadcba48b8fa9e",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27347a09610fbdadcba48b8fa9e",
"width": 640
}
]
},
"date": {
"day": 1,
"month": 1,
"precision": "DAY",
"year": 2013
},
"id": "1RMfz6rbIyrQYChfcCoiJ4",
"label": "RBMG/Def Jam",
"name": "Believe Acoustic",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "bNXL7GjGTIaOAbv-EAEjCw",
"shareUrl": "https://open.spotify.com/album/1RMfz6rbIyrQYChfcCoiJ4?si=bNXL7GjGTIaOAbv-EAEjCw"
},
"tracks": {
"totalCount": 11
},
"type": "ALBUM",
"uri": "spotify:album:1RMfz6rbIyrQYChfcCoiJ4"
},
{
"copyright": [
{
"text": "© 2012 The Island Def Jam Music Group",
"type": "C"
},
{
"text": "℗ 2012 The Island Def Jam Music Group",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e026c20c4638a558132ba95bc39",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048516c20c4638a558132ba95bc39",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2736c20c4638a558132ba95bc39",
"width": 640
}
]
},
"date": {
"day": 15,
"month": 6,
"precision": "DAY",
"year": 2012
},
"id": "70f70xLCpH7wHaVvB2oZT9",
"label": "RBMG/Def Jam",
"name": "Believe (Deluxe Edition)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "X0pc2NXISrqOCEx6Yrwhfg",
"shareUrl": "https://open.spotify.com/album/70f70xLCpH7wHaVvB2oZT9?si=X0pc2NXISrqOCEx6Yrwhfg"
},
"tracks": {
"totalCount": 17
},
"type": "ALBUM",
"uri": "spotify:album:70f70xLCpH7wHaVvB2oZT9"
}
],
"compilations": [],
"latest": null,
"popularReleasesAlbums": [
{
"copyright": [
{
"text": "© 2025 ILH Production Co. LLC, under exclusive license to Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2025 ILH Production Co. LLC, under exclusive license to Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d65c4773bc5061fd27facc5b",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d65c4773bc5061fd27facc5b",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d65c4773bc5061fd27facc5b",
"width": 640
}
]
},
"date": {
"day": 11,
"month": 7,
"precision": "DAY",
"year": 2025
},
"id": "5vD5M5VW62LL78Ko8x0CVZ",
"label": "JRC Entertainment, LLC / ILH Production Co. LLC / Def Jam Recordings",
"name": "SWAG",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "6RjT1v-oQYubnPs8d_n1hQ",
"shareUrl": "https://open.spotify.com/album/5vD5M5VW62LL78Ko8x0CVZ?si=6RjT1v-oQYubnPs8d_n1hQ"
},
"tracks": {
"totalCount": 21
},
"type": "ALBUM",
"uri": "spotify:album:5vD5M5VW62LL78Ko8x0CVZ"
},
{
"copyright": [
{
"text": "© 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2015 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02f46b9d202509a8f7384b90de",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851f46b9d202509a8f7384b90de",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273f46b9d202509a8f7384b90de",
"width": 640
}
]
},
"date": {
"day": 13,
"month": 11,
"precision": "DAY",
"year": 2015
},
"id": "6Fr2rQkZ383FcMqFyT7yPr",
"label": "RBMG/Def Jam",
"name": "Purpose (Deluxe)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "Fm5lMLsKQpq05nsvqBNSIQ",
"shareUrl": "https://open.spotify.com/album/6Fr2rQkZ383FcMqFyT7yPr?si=Fm5lMLsKQpq05nsvqBNSIQ"
},
"tracks": {
"totalCount": 19
},
"type": "ALBUM",
"uri": "spotify:album:6Fr2rQkZ383FcMqFyT7yPr"
},
{
"copyright": [
{
"text": "© 2012 The Island Def Jam Music Group",
"type": "C"
},
{
"text": "℗ 2012 The Island Def Jam Music Group",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02f1d02a6cec967f8b6b78f76e",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851f1d02a6cec967f8b6b78f76e",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273f1d02a6cec967f8b6b78f76e",
"width": 640
}
]
},
"date": {
"day": 1,
"month": 1,
"precision": "DAY",
"year": 2012
},
"id": "5cxMa6oLINJzmZ8lF7wWQN",
"label": "RBMG/Def Jam",
"name": "Believe",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "x0M5cPR9TA68q1bWu245hw",
"shareUrl": "https://open.spotify.com/album/5cxMa6oLINJzmZ8lF7wWQN?si=x0M5cPR9TA68q1bWu245hw"
},
"tracks": {
"totalCount": 13
},
"type": "ALBUM",
"uri": "spotify:album:5cxMa6oLINJzmZ8lF7wWQN"
},
{
"copyright": [
{
"text": "© 2010 The Island Def Jam Music Group",
"type": "C"
},
{
"text": "℗ 2010 The Island Def Jam Music Group",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02629dc9e2e3bc20bbd7d92e4a",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851629dc9e2e3bc20bbd7d92e4a",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273629dc9e2e3bc20bbd7d92e4a",
"width": 640
}
]
},
"date": {
"day": 1,
"month": 1,
"precision": "DAY",
"year": 2010
},
"id": "3BmcYMh0KYsimWL6p2gPa9",
"label": "RBMG/Def Jam",
"name": "My World 2.0",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "yCyUfzfUQt6jrT8Bt8X0NQ",
"shareUrl": "https://open.spotify.com/album/3BmcYMh0KYsimWL6p2gPa9?si=yCyUfzfUQt6jrT8Bt8X0NQ"
},
"tracks": {
"totalCount": 10
},
"type": "ALBUM",
"uri": "spotify:album:3BmcYMh0KYsimWL6p2gPa9"
},
{
"copyright": [
{
"text": "© 2025 ILH Production Co. LLC, under exclusive license to Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2025 ILH Production Co. LLC, under exclusive license to Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02a958d093e94944dd0e7258b2",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851a958d093e94944dd0e7258b2",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273a958d093e94944dd0e7258b2",
"width": 640
}
]
},
"date": {
"day": 5,
"month": 9,
"precision": "DAY",
"year": 2025
},
"id": "2KrREEyHxkdFGYAd1DmMdS",
"label": "JRC Entertainment, LLC / ILH Production Co. LLC / Def Jam Recordings",
"name": "SWAG II",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "qD62_RFBQTS8fzkvvgfa6Q",
"shareUrl": "https://open.spotify.com/album/2KrREEyHxkdFGYAd1DmMdS?si=qD62_RFBQTS8fzkvvgfa6Q"
},
"tracks": {
"totalCount": 44
},
"type": "ALBUM",
"uri": "spotify:album:2KrREEyHxkdFGYAd1DmMdS"
},
{
"copyright": [
{
"text": "© 2017 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2017 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0258ae8fddecbd2630005409c9",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485158ae8fddecbd2630005409c9",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27358ae8fddecbd2630005409c9",
"width": 640
}
]
},
"date": {
"day": 13,
"month": 5,
"precision": "DAY",
"year": 2014
},
"id": "1rknZw4cyL9NInAqSwc8AA",
"label": "RBMG/Def Jam",
"name": "Journals",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "bhLXChFkQNKjwaRzcdNOoQ",
"shareUrl": "https://open.spotify.com/album/1rknZw4cyL9NInAqSwc8AA?si=bhLXChFkQNKjwaRzcdNOoQ"
},
"tracks": {
"totalCount": 16
},
"type": "ALBUM",
"uri": "spotify:album:1rknZw4cyL9NInAqSwc8AA"
},
{
"copyright": [
{
"text": "© 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2021 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02e6f407c7f3a0ec98845e4431",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851e6f407c7f3a0ec98845e4431",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273e6f407c7f3a0ec98845e4431",
"width": 640
}
]
},
"date": {
"day": 19,
"month": 3,
"precision": "DAY",
"year": 2021
},
"id": "5dGWwsZ9iB2Xc3UKR0gif2",
"label": "RBMG/Def Jam",
"name": "Justice",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "iILDhENDSMGWPC_6V7b8sg",
"shareUrl": "https://open.spotify.com/album/5dGWwsZ9iB2Xc3UKR0gif2?si=iILDhENDSMGWPC_6V7b8sg"
},
"tracks": {
"totalCount": 16
},
"type": "ALBUM",
"uri": "spotify:album:5dGWwsZ9iB2Xc3UKR0gif2"
},
{
"copyright": [
{
"text": "© 2012 The Island Def Jam Music Group",
"type": "C"
},
{
"text": "℗ 2012 The Island Def Jam Music Group",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e026c20c4638a558132ba95bc39",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048516c20c4638a558132ba95bc39",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2736c20c4638a558132ba95bc39",
"width": 640
}
]
},
"date": {
"day": 15,
"month": 6,
"precision": "DAY",
"year": 2012
},
"id": "70f70xLCpH7wHaVvB2oZT9",
"label": "RBMG/Def Jam",
"name": "Believe (Deluxe Edition)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "5iR9Q-METXGB4-vyM-HhlA",
"shareUrl": "https://open.spotify.com/album/70f70xLCpH7wHaVvB2oZT9?si=5iR9Q-METXGB4-vyM-HhlA"
},
"tracks": {
"totalCount": 17
},
"type": "ALBUM",
"uri": "spotify:album:70f70xLCpH7wHaVvB2oZT9"
},
{
"copyright": [
{
"text": "© 2009 The Island Def Jam Music Group",
"type": "C"
},
{
"text": "℗ 2009 The Island Def Jam Music Group",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e027c3bb9f74a98f60bdda6c9a7",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048517c3bb9f74a98f60bdda6c9a7",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2737c3bb9f74a98f60bdda6c9a7",
"width": 640
}
]
},
"date": {
"day": 1,
"month": 1,
"precision": "DAY",
"year": 2009
},
"id": "1rG5TDs3jYh6OU753I54CI",
"label": "RBMG/Def Jam",
"name": "My World",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "f1CQwb7NQZCkvyYSx_z_XA",
"shareUrl": "https://open.spotify.com/album/1rG5TDs3jYh6OU753I54CI?si=f1CQwb7NQZCkvyYSx_z_XA"
},
"tracks": {
"totalCount": 7
},
"type": "ALBUM",
"uri": "spotify:album:1rG5TDs3jYh6OU753I54CI"
},
{
"copyright": [
{
"text": "© 2020 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2020 Def Jam Recordings, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"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": {
"day": 14,
"month": 2,
"precision": "DAY",
"year": 2020
},
"id": "63iWSELt9V1kV6RSMxN7Ii",
"label": "RBMG/Def Jam",
"name": "Changes",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "wuVOYOA4Rfi0DgGbvSrfdw",
"shareUrl": "https://open.spotify.com/album/63iWSELt9V1kV6RSMxN7Ii?si=wuVOYOA4Rfi0DgGbvSrfdw"
},
"tracks": {
"totalCount": 17
},
"type": "ALBUM",
"uri": "spotify:album:63iWSELt9V1kV6RSMxN7Ii"
}
],
"singles": [
{
"copyright": [
{
"text": "(P) 2023 Top Dawg Entertainment, under exclusive license to RCA Records",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e028ac04014f5db1daf4eb3731f",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048518ac04014f5db1daf4eb3731f",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2738ac04014f5db1daf4eb3731f",
"width": 640
}
]
},
"date": {
"day": 15,
"month": 9,
"precision": "DAY",
"year": 2023
},
"id": "0bQ8NyqdTKKQpZHYhZqCUU",
"label": "Top Dawg Entertainment/RCA Records",
"name": "Snooze (Acoustic) (feat. Justin Bieber)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "EG0uHMctSBORqQ9TRaSP7w",
"shareUrl": "https://open.spotify.com/album/0bQ8NyqdTKKQpZHYhZqCUU?si=EG0uHMctSBORqQ9TRaSP7w"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:0bQ8NyqdTKKQpZHYhZqCUU"
},
{
"copyright": [
{
"text": "Cactus Jack, © 2023 Atlantic Records Group LLC",
"type": "C"
},
{
"text": "Cactus Jack, ℗ 2023 Atlantic Records Group LLC",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02e1d245c283dcb2d94a42e323",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851e1d245c283dcb2d94a42e323",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273e1d245c283dcb2d94a42e323",
"width": 640
}
]
},
"date": {
"day": 23,
"month": 2,
"precision": "DAY",
"year": 2023
},
"id": "3UeapbH1wFSnDjCjraZMQ2",
"label": "Cactus Jack / Atlantic",
"name": "Private Landing (feat. Justin Bieber & Future)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "09pUw8DJSOSUhY9_LYxGcA",
"shareUrl": "https://open.spotify.com/album/3UeapbH1wFSnDjCjraZMQ2?si=09pUw8DJSOSUhY9_LYxGcA"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:3UeapbH1wFSnDjCjraZMQ2"
},
{
"copyright": [
{
"text": "© 2022 ILH Production Co. LLC, under exclusive license to Def Jam Recordings/Universal Records, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2022 ILH Production Co. LLC, under exclusive license to Def Jam Recordings/Universal Records, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e022344fbe49cc161ab95c2ab3c",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048512344fbe49cc161ab95c2ab3c",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2732344fbe49cc161ab95c2ab3c",
"width": 640
}
]
},
"date": {
"day": 30,
"month": 8,
"precision": "DAY",
"year": 2022
},
"id": "3Dukyn15RlALh1JDtQRqO0",
"label": "Justin Bieber 2021 PS/ Def Jam",
"name": "Beautiful Love (Free Fire)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "XBSmUdOpSBSoAhX727R1pw",
"shareUrl": "https://open.spotify.com/album/3Dukyn15RlALh1JDtQRqO0?si=XBSmUdOpSBSoAhX727R1pw"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:3Dukyn15RlALh1JDtQRqO0"
},
{
"copyright": [
{
"text": "© 2022 ILH Production Co. LLC, under exclusive license to Def Jam Recordings/Universal Records, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2022 ILH Production Co. LLC, under exclusive license to Def Jam Recordings/Universal Records, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0277f7f8553ace10f4d9347872",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485177f7f8553ace10f4d9347872",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27377f7f8553ace10f4d9347872",
"width": 640
}
]
},
"date": {
"day": 29,
"month": 4,
"precision": "DAY",
"year": 2022
},
"id": "2luYA3MBCKI7SfK3K0U3xf",
"label": "Justin Bieber 2021 PS/ Def Jam",
"name": "Honest",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "CTTePWuRSluBXEOyaw6ulQ",
"shareUrl": "https://open.spotify.com/album/2luYA3MBCKI7SfK3K0U3xf?si=CTTePWuRSluBXEOyaw6ulQ"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:2luYA3MBCKI7SfK3K0U3xf"
},
{
"copyright": [
{
"text": "© 2022 ILH Production Co. LLC, under exclusive license to Def Jam Recordings/Universal Records, a division of UMG Recordings, Inc.",
"type": "C"
},
{
"text": "℗ 2022 ILH Production Co. LLC, under exclusive license to Def Jam Recordings/Universal Records, a division of UMG Recordings, Inc.",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02afcb0119a3b9f9f7fcb6fecc",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851afcb0119a3b9f9f7fcb6fecc",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273afcb0119a3b9f9f7fcb6fecc",
"width": 640
}
]
},
"date": {
"day": 27,
"month": 4,
"precision": "DAY",
"year": 2022
},
"id": "06aEQhiev6dMRsPbSQ2cFC",
"label": "Justin Bieber 2021 PS/ Def Jam",
"name": "I Feel Funny",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "Vn1Bi12zQTeNvWHFo-kkKQ",
"shareUrl": "https://open.spotify.com/album/06aEQhiev6dMRsPbSQ2cFC?si=Vn1Bi12zQTeNvWHFo-kkKQ"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:06aEQhiev6dMRsPbSQ2cFC"
},
{
"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/ab67616d00001e0259eeddf546a5298dd24b6ab2",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485159eeddf546a5298dd24b6ab2",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27359eeddf546a5298dd24b6ab2",
"width": 640
}
]
},
"date": {
"day": 30,
"month": 3,
"precision": "DAY",
"year": 2022
},
"id": "3vnJxSrVldmInhRwtcUG89",
"label": "TSNMI / Atlantic",
"name": "up at night (feat. justin bieber)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "ULjENfn7TVCtS16eLoi9sA",
"shareUrl": "https://open.spotify.com/album/3vnJxSrVldmInhRwtcUG89?si=ULjENfn7TVCtS16eLoi9sA"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:3vnJxSrVldmInhRwtcUG89"
},
{
"copyright": [
{
"text": "© 2022 KeyQaad / Sire Records",
"type": "C"
},
{
"text": "℗ 2022 KeyQaad / Sire Records",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02e0e5c444b9713f8622d74e2f",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851e0e5c444b9713f8622d74e2f",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273e0e5c444b9713f8622d74e2f",
"width": 640
}
]
},
"date": {
"day": 3,
"month": 3,
"precision": "DAY",
"year": 2022
},
"id": "0fGPQwybhz88QkKXZpfkwj",
"label": "KeyQaad/Sire Records",
"name": "attention (with Justin Bieber)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "Yj0CU-JJSO20ujaUXRDrYQ",
"shareUrl": "https://open.spotify.com/album/0fGPQwybhz88QkKXZpfkwj?si=Yj0CU-JJSO20ujaUXRDrYQ"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:0fGPQwybhz88QkKXZpfkwj"
},
{
"copyright": [
{
"text": "(P) 2021 RCA Records, a division of Sony Music Entertainment",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02b47a1986745eae746c0d8bb6",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851b47a1986745eae746c0d8bb6",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273b47a1986745eae746c0d8bb6",
"width": 640
}
]
},
"date": {
"day": 18,
"month": 11,
"precision": "DAY",
"year": 2021
},
"id": "5a7wDuklvlrH9LOZmt8zpy",
"label": "TrapSoul/RCA Records",
"name": "lonely christmas (feat. Justin Bieber & Poo Bear)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "tUj7qKLdQh2JQJn-IBRBew",
"shareUrl": "https://open.spotify.com/album/5a7wDuklvlrH9LOZmt8zpy?si=tUj7qKLdQh2JQJn-IBRBew"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:5a7wDuklvlrH9LOZmt8zpy"
},
{
"copyright": [
{
"text": "© 2021 OWSLA/Atlantic Recording Corporation",
"type": "C"
},
{
"text": "℗ 2021 OWSLA/Atlantic Recording Corporation",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e021593c4b938926dce4250d71d",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048511593c4b938926dce4250d71d",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2731593c4b938926dce4250d71d",
"width": 640
}
]
},
"date": {
"day": 20,
"month": 8,
"precision": "DAY",
"year": 2021
},
"id": "76HLs4wSTOuCNwcGl4dycr",
"label": "OWSLA/Atlantic",
"name": "Don’t Go (with Justin Bieber & Don Toliver)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "k496Z7_iRxCiE0zE7AX4rg",
"shareUrl": "https://open.spotify.com/album/76HLs4wSTOuCNwcGl4dycr?si=k496Z7_iRxCiE0zE7AX4rg"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:76HLs4wSTOuCNwcGl4dycr"
},
{
"copyright": [
{
"text": "(P) 2021 Starboy Entertainment Ltd., under exclusive license to RCA Records",
"type": "P"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02b8193a73e58b9e483ca3834b",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851b8193a73e58b9e483ca3834b",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273b8193a73e58b9e483ca3834b",
"width": 640
}
]
},
"date": {
"day": 13,
"month": 8,
"precision": "DAY",
"year": 2021
},
"id": "0Rn8NAh8NnoaCOt8r8Tc3e",
"label": "Starboy/RCA Records",
"name": "Essence (feat. Justin Bieber & Tems)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"sharingInfo": {
"shareId": "t8e2_-guR5C-5F8Sdif5mQ",
"shareUrl": "https://open.spotify.com/album/0Rn8NAh8NnoaCOt8r8Tc3e?si=t8e2_-guR5C-5F8Sdif5mQ"
},
"tracks": {
"totalCount": 1
},
"type": "SINGLE",
"uri": "spotify:album:0Rn8NAh8NnoaCOt8r8Tc3e"
}
],
"topTracks": [
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02f1d02a6cec967f8b6b78f76e"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851f1d02a6cec967f8b6b78f76e"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273f1d02a6cec967f8b6b78f76e"
}
]
},
"uri": "spotify:album:5cxMa6oLINJzmZ8lF7wWQN"
},
"artists": [
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
},
{
"profile": {
"name": "Nicki Minaj"
},
"uri": "spotify:artist:0hCNtLu0JehylgoiP8L4Gh"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 227986
},
"id": "6QFCMUUq1T2Vf5sFUXcuQ7",
"name": "Beauty And A Beat",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "1697221016",
"uri": "spotify:track:6QFCMUUq1T2Vf5sFUXcuQ7"
},
"uid": "cba4fecbb5d3e62feedb"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02d65c4773bc5061fd27facc5b"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851d65c4773bc5061fd27facc5b"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273d65c4773bc5061fd27facc5b"
}
]
},
"uri": "spotify:album:5vD5M5VW62LL78Ko8x0CVZ"
},
"artists": [
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 0
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 176453
},
"id": "5BZsQlgw21vDOAjoqkNgKb",
"name": "DAISIES",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "742205089",
"uri": "spotify:track:5BZsQlgw21vDOAjoqkNgKb"
},
"uid": "38074ac621c87c3c48a0"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e0258ae8fddecbd2630005409c9"
},
{
"url": "https://i.scdn.co/image/ab67616d0000485158ae8fddecbd2630005409c9"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b27358ae8fddecbd2630005409c9"
}
]
},
"uri": "spotify:album:1rknZw4cyL9NInAqSwc8AA"
},
"artists": [
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
},
{
"profile": {
"name": "Chance the Rapper"
},
"uri": "spotify:artist:1anyVhU62p31KFi8MEzkbf"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 248133
},
"id": "3JsydWaf2Ev4ehaLUjj3SY",
"name": "Confident",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "1187946292",
"uri": "spotify:track:3JsydWaf2Ev4ehaLUjj3SY"
},
"uid": "f7c45e2ca935ba7ed6c3"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02629dc9e2e3bc20bbd7d92e4a"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851629dc9e2e3bc20bbd7d92e4a"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273629dc9e2e3bc20bbd7d92e4a"
}
]
},
"uri": "spotify:album:3BmcYMh0KYsimWL6p2gPa9"
},
"artists": [
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
},
{
"profile": {
"name": "Ludacris"
},
"uri": "spotify:artist:3ipn9JLAPI5GUEo4y4jcoi"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 214240
},
"id": "6epn3r7S14KUqlReYr77hA",
"name": "Baby",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "1568960415",
"uri": "spotify:track:6epn3r7S14KUqlReYr77hA"
},
"uid": "36c3214a4388f9ec86ee"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02f46b9d202509a8f7384b90de"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851f46b9d202509a8f7384b90de"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273f46b9d202509a8f7384b90de"
}
]
},
"uri": "spotify:album:6Fr2rQkZ383FcMqFyT7yPr"
},
"artists": [
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 0
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 200786
},
"id": "09CtPGIpYB4BrO8qb1RGsF",
"name": "Sorry",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "2895856420",
"uri": "spotify:track:09CtPGIpYB4BrO8qb1RGsF"
},
"uid": "e5b52a3da00f8c729148"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02f46b9d202509a8f7384b90de"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851f46b9d202509a8f7384b90de"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273f46b9d202509a8f7384b90de"
}
]
},
"uri": "spotify:album:6Fr2rQkZ383FcMqFyT7yPr"
},
"artists": [
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 0
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 233720
},
"id": "50kpGaPAhYJ3sGmk6vplg0",
"name": "Love Yourself",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "3192991036",
"uri": "spotify:track:50kpGaPAhYJ3sGmk6vplg0"
},
"uid": "5b2b3c27909e781340cf"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02ca8d656fa57db4cce117f53b"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851ca8d656fa57db4cce117f53b"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273ca8d656fa57db4cce117f53b"
}
]
},
"uri": "spotify:album:6DOZI2LfBRYHRhZV21LrOu"
},
"artists": [
{
"profile": {
"name": "Sean Kingston"
},
"uri": "spotify:artist:6S0dmVVn4udvppDhZIWxCr"
},
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 201973
},
"id": "4Yaw2PmyOETOnEM3TCf98I",
"name": "Eenie Meenie - Radio Version",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "1079181671",
"uri": "spotify:track:4Yaw2PmyOETOnEM3TCf98I"
},
"uid": "01543377bcf81f3d0761"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02b4d59e6fa7e5e7cbc57ac33a"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851b4d59e6fa7e5e7cbc57ac33a"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273b4d59e6fa7e5e7cbc57ac33a"
}
]
},
"uri": "spotify:album:576UTio7xgY7YUxrHMzxeI"
},
"artists": [
{
"profile": {
"name": "The Kid LAROI"
},
"uri": "spotify:artist:2tIP7SsRs7vjIcLrU85W8J"
},
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "EXPLICIT"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 141805
},
"id": "567e29TDzLwZwfDuEpGTwo",
"name": "STAY (with Justin Bieber)",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "3904947519",
"uri": "spotify:track:567e29TDzLwZwfDuEpGTwo"
},
"uid": "98717d1b14bf26cf1a4b"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02d65c4773bc5061fd27facc5b"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851d65c4773bc5061fd27facc5b"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273d65c4773bc5061fd27facc5b"
}
]
},
"uri": "spotify:album:5vD5M5VW62LL78Ko8x0CVZ"
},
"artists": [
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 163866
},
"id": "29iva9idM6rFCPUlu7Rhxl",
"name": "YUKON",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "365730927",
"uri": "spotify:track:29iva9idM6rFCPUlu7Rhxl"
},
"uid": "6fa5ce996a2c7247b56d"
},
{
"track": {
"albumOfTrack": {
"coverArt": {
"sources": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02e6f407c7f3a0ec98845e4431"
},
{
"url": "https://i.scdn.co/image/ab67616d00004851e6f407c7f3a0ec98845e4431"
},
{
"url": "https://i.scdn.co/image/ab67616d0000b273e6f407c7f3a0ec98845e4431"
}
]
},
"uri": "spotify:album:5dGWwsZ9iB2Xc3UKR0gif2"
},
"artists": [
{
"profile": {
"name": "Justin Bieber"
},
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s"
}
],
"associationsV3": {
"videoAssociations": {
"totalCount": 1
}
},
"contentRating": {
"label": "NONE"
},
"discNumber": 1,
"duration": {
"totalMilliseconds": 153190
},
"id": "6I3mqTwhRpn34SLVafSH7G",
"name": "Ghost",
"playability": {
"playable": true,
"reason": "PLAYABLE"
},
"playcount": "2260573976",
"uri": "spotify:track:6I3mqTwhRpn34SLVafSH7G"
},
"uid": "f211bbd5840e78cee105"
}
]
},
"goods": {
"concerts": [],
"merch": []
},
"headerImage": null,
"id": "1uNFoZAHBGtllmzznpCI3s",
"onPlatformReputationTrait": {
"verification": {
"isRegistered": true,
"isVerified": true
}
},
"preRelease": null,
"profile": {
"biography": {
"text": "Since his emergence in 2008, Justin Bieber has quietly worked towards delivering a career-defining artistic statement with his 2025 seventh full-length album, SWAG via Def Jam Recordings. Beyond writing songs and performing, he co-produced the LP which is a 21-track opus evocative of his evolution, yet indicative of the signature spirit millions of fans first fell in love with. \n\nUp to this point, he has smashed countless records, captivated crowds globally and led 21st century pop music and culture as both the preeminent entertainer of his generation and a peerless boundary-pushing creative force. From humble beginnings in Ontario, Canada, the Los Angeles-based singer, songwriter, and producer has elevated to one of the best-selling artists in history, moving over 150 million albums worldwide, generating nearly 200 billion streams, and scoring an astonishing 5 RIAA Diamond certifications. Speaking to his versatility, he has also delivered cross-generational hits in genres as diverse as pop, electronic, hip-hop, R&B, Latin, and more. With SWAG, he continues an unbelievable journey as an era-defining superstar whose influence is unstoppable and unparalleled.",
"type": "AUTOBIOGRAPHY"
},
"externalLinks": [
{
"name": "FACEBOOK",
"url": "https://facebook.com/JustinBieber"
},
{
"name": "INSTAGRAM",
"url": "https://instagram.com/lilbieber"
},
{
"name": "TWITTER",
"url": "https://twitter.com/justinbieber"
},
{
"name": "WIKIPEDIA",
"url": "https://en.wikipedia.org/wiki/Justin_Bieber"
}
],
"name": "Justin Bieber",
"pinnedItem": null,
"playlistsV2": [
{
"__typename": "Playlist",
"description": "",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8401cf9723007f75a5a3981fd2",
"width": null
}
]
}
],
"name": "HOLD ON, It’s almost tour time",
"ownerV2": {
"__typename": "User",
"name": "Def Jam Recordings"
},
"uri": "spotify:playlist:3vMOKpI3RkxWAJhgbZ9zTa"
},
{
"__typename": "Playlist",
"description": "stay motivated and healthy. work out to these ones. ",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000d72cf8195e779e5ea9488e78ffa3",
"width": null
}
]
}
],
"name": "Workout with Justin Bieber",
"ownerV2": {
"__typename": "User",
"name": "Justin Bieber"
},
"uri": "spotify:playlist:1eMxaLfIyAU41IVGQJdh9l"
},
{
"__typename": "Playlist",
"description": "the songs you guys are listening to the most this week. ",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c352577874f33ab0afa03e0e6",
"width": null
}
]
}
],
"name": "Hottest This Week",
"ownerV2": {
"__typename": "User",
"name": "Justin Bieber"
},
"uri": "spotify:playlist:4vYuFrlJ76NiVN0817taWY"
},
{
"__typename": "Playlist",
"description": "let's hang, chill vibes only.",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72ca82d47bb2fbcbd041bc94f2a",
"width": null
}
]
}
],
"name": "Chill with Justin Bieber",
"ownerV2": {
"__typename": "User",
"name": "Justin Bieber"
},
"uri": "spotify:playlist:072rNWumoHrWsPKjJrtKNM"
},
{
"__typename": "Playlist",
"description": "take it easy. ",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c76382576321f678061bb9c79",
"width": null
}
]
}
],
"name": "Relax with Justin Bieber",
"ownerV2": {
"__typename": "User",
"name": "Justin Bieber"
},
"uri": "spotify:playlist:4kMs4OpwtS0Pk4Zvbd0j7z"
},
{
"__typename": "Playlist",
"description": "This one's for you. major feels. ",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da8420cdb4ebd58c1f0a21cf74d7",
"width": null
}
]
}
],
"name": "Major Feels with Justin Bieber",
"ownerV2": {
"__typename": "User",
"name": "Justin Bieber"
},
"uri": "spotify:playlist:7HxdpF1tOKEAMHN6VrDbQU"
},
{
"__typename": "Playlist",
"description": "the soundtrack to your morning walk.",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000d72c6c93efb886d77fb76b027d58",
"width": null
}
]
}
],
"name": "Morning Walk with Justin Bieber",
"ownerV2": {
"__typename": "User",
"name": "Justin Bieber"
},
"uri": "spotify:playlist:6hyrXQfDpm7ufIA3JMuHIA"
},
{
"__typename": "Playlist",
"description": "stay focused and stay home everyone. ",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72cf3cc1bfc7304b87bb7ea41de",
"width": null
}
]
}
],
"name": "At Home with Justin Bieber",
"ownerV2": {
"__typename": "User",
"name": "Justin Bieber"
},
"uri": "spotify:playlist:6WKQdo3KO03cYanX0hTsa4"
},
{
"__typename": "Playlist",
"description": "",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84ff1016e806a51c7540f5298e",
"width": null
}
]
}
],
"name": "Best Of: Justin Bieber",
"ownerV2": {
"__typename": "User",
"name": "Def Jam Recordings"
},
"uri": "spotify:playlist:2z2Qiy21PhjYWGBP2FVZBI"
},
{
"__typename": "Playlist",
"description": "made a playlist for a dance party.",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da841c03ac2140abd8ab78a9327d",
"width": null
}
]
}
],
"name": "Dance with Justin Bieber ",
"ownerV2": {
"__typename": "User",
"name": "Justin Bieber"
},
"uri": "spotify:playlist:32sIremAO5gTpGy4JjLzB0"
}
]
},
"relatedContent": {
"appearsOn": [
{
"artists": [
{
"profile": {
"name": "USHER"
},
"uri": "spotify:artist:23zg3TcAtWQy7J6upgbUnj"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0286b0c9728ad3ed338eaeea79",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485186b0c9728ad3ed338eaeea79",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27386b0c9728ad3ed338eaeea79",
"width": 640
}
]
},
"date": {
"year": 2010
},
"id": "6A1F3Fkq5dYeYYNkXflcTX",
"name": "Raymond v Raymond (Expanded Edition)",
"sharingInfo": {
"shareId": "ts7JGA91SfS-gAxRJpgtyw",
"shareUrl": "https://open.spotify.com/album/6A1F3Fkq5dYeYYNkXflcTX?si=ts7JGA91SfS-gAxRJpgtyw"
},
"type": "ALBUM",
"uri": "spotify:album:6A1F3Fkq5dYeYYNkXflcTX"
},
{
"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": "7Evzja36SSyzjJNRxKv13w",
"shareUrl": "https://open.spotify.com/album/5s0rmjP8XOPhP6HhqOhuyC?si=7Evzja36SSyzjJNRxKv13w"
},
"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": "5sMpMZxkTD6p5A97MhO8-g",
"shareUrl": "https://open.spotify.com/album/2TbtBmA00IP0P1GpUqIaXS?si=5sMpMZxkTD6p5A97MhO8-g"
},
"type": "ALBUM",
"uri": "spotify:album:2TbtBmA00IP0P1GpUqIaXS"
},
{
"artists": [
{
"profile": {
"name": "The Kid LAROI"
},
"uri": "spotify:artist:2tIP7SsRs7vjIcLrU85W8J"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02b4d59e6fa7e5e7cbc57ac33a",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851b4d59e6fa7e5e7cbc57ac33a",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273b4d59e6fa7e5e7cbc57ac33a",
"width": 640
}
]
},
"date": {
"year": 2021
},
"id": "576UTio7xgY7YUxrHMzxeI",
"name": "F*CK LOVE 3+: OVER YOU",
"sharingInfo": {
"shareId": "2UhnWikvT5S-XqVAuAhAmA",
"shareUrl": "https://open.spotify.com/album/576UTio7xgY7YUxrHMzxeI?si=2UhnWikvT5S-XqVAuAhAmA"
},
"type": "ALBUM",
"uri": "spotify:album:576UTio7xgY7YUxrHMzxeI"
},
{
"artists": [
{
"profile": {
"name": "The Kid LAROI"
},
"uri": "spotify:artist:2tIP7SsRs7vjIcLrU85W8J"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e027cf3e7a4688e521d8948b9f0",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048517cf3e7a4688e521d8948b9f0",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2737cf3e7a4688e521d8948b9f0",
"width": 640
}
]
},
"date": {
"year": 2021
},
"id": "4NYDjLwVArqXrxnFWnRITq",
"name": "F*CK LOVE 3+: OVER YOU",
"sharingInfo": {
"shareId": "yu0WE3dSRQaD-HfrTTz15A",
"shareUrl": "https://open.spotify.com/album/4NYDjLwVArqXrxnFWnRITq?si=yu0WE3dSRQaD-HfrTTz15A"
},
"type": "ALBUM",
"uri": "spotify:album:4NYDjLwVArqXrxnFWnRITq"
},
{
"artists": [
{
"profile": {
"name": "Don Toliver"
},
"uri": "spotify:artist:4Gso3d4CscCijv0lmajZWs"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02307323fa550564b0201b1d76",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851307323fa550564b0201b1d76",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273307323fa550564b0201b1d76",
"width": 640
}
]
},
"date": {
"year": 2023
},
"id": "2Q2TRdT994vTzGE3Grmmht",
"name": "Love Sick (Deluxe)",
"sharingInfo": {
"shareId": "iHCutcIYSlms9Vw_cQvAVA",
"shareUrl": "https://open.spotify.com/album/2Q2TRdT994vTzGE3Grmmht?si=iHCutcIYSlms9Vw_cQvAVA"
},
"type": "ALBUM",
"uri": "spotify:album:2Q2TRdT994vTzGE3Grmmht"
},
{
"artists": [
{
"profile": {
"name": "Travis Scott"
},
"uri": "spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d3b5affd8824b4ed301b7137",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d3b5affd8824b4ed301b7137",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d3b5affd8824b4ed301b7137",
"width": 640
}
]
},
"date": {
"year": 2015
},
"id": "4PWBTB6NYSKQwfo79I3prg",
"name": "Rodeo",
"sharingInfo": {
"shareId": "YOf__DojRweVRx5G9vr6eg",
"shareUrl": "https://open.spotify.com/album/4PWBTB6NYSKQwfo79I3prg?si=YOf__DojRweVRx5G9vr6eg"
},
"type": "ALBUM",
"uri": "spotify:album:4PWBTB6NYSKQwfo79I3prg"
},
{
"artists": [
{
"profile": {
"name": "Travis Scott"
},
"uri": "spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02c35028b71cb08aa7af4cc095",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851c35028b71cb08aa7af4cc095",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273c35028b71cb08aa7af4cc095",
"width": 640
}
]
},
"date": {
"year": 2015
},
"id": "7EGY16IWSHpPdoWazUyL9R",
"name": "Rodeo",
"sharingInfo": {
"shareId": "J4XKfA-QSBemdWKlZDjBJQ",
"shareUrl": "https://open.spotify.com/album/7EGY16IWSHpPdoWazUyL9R?si=J4XKfA-QSBemdWKlZDjBJQ"
},
"type": "ALBUM",
"uri": "spotify:album:7EGY16IWSHpPdoWazUyL9R"
},
{
"artists": [
{
"profile": {
"name": "Chris Brown"
},
"uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e020a1d20ec09cab4bb17a36aab",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048510a1d20ec09cab4bb17a36aab",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2730a1d20ec09cab4bb17a36aab",
"width": 640
}
]
},
"date": {
"year": 2011
},
"id": "6df0qvkMXoyHGt9J8cujZb",
"name": "F.A.M.E. (Expanded Edition)",
"sharingInfo": {
"shareId": "3W8B9em_Qt-opiL-rTur0g",
"shareUrl": "https://open.spotify.com/album/6df0qvkMXoyHGt9J8cujZb?si=3W8B9em_Qt-opiL-rTur0g"
},
"type": "ALBUM",
"uri": "spotify:album:6df0qvkMXoyHGt9J8cujZb"
},
{
"artists": [
{
"profile": {
"name": "Luis Fonsi"
},
"uri": "spotify:artist:4V8Sr092TqfHkfAA5fXXqG"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ef0d4234e1a645740f77d59c",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851ef0d4234e1a645740f77d59c",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273ef0d4234e1a645740f77d59c",
"width": 640
}
]
},
"date": {
"year": 2019
},
"id": "5C0YLr4OoRGFDaqdMQmkeH",
"name": "VIDA",
"sharingInfo": {
"shareId": "AEhW9KeIQ0eroqcci-thxA",
"shareUrl": "https://open.spotify.com/album/5C0YLr4OoRGFDaqdMQmkeH?si=AEhW9KeIQ0eroqcci-thxA"
},
"type": "ALBUM",
"uri": "spotify:album:5C0YLr4OoRGFDaqdMQmkeH"
},
{
"artists": [
{
"profile": {
"name": "Jack Ü"
},
"uri": "spotify:artist:1HxJeLhIuegM3KgvPn8sTa"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0257fc4730e06c9ab20c1e073b",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485157fc4730e06c9ab20c1e073b",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27357fc4730e06c9ab20c1e073b",
"width": 640
}
]
},
"date": {
"year": 2015
},
"id": "6bfkwBrGYKJFk6Z4QVyjxd",
"name": "Skrillex and Diplo present Jack Ü",
"sharingInfo": {
"shareId": "LO175zicQCG3kVhG80ekfQ",
"shareUrl": "https://open.spotify.com/album/6bfkwBrGYKJFk6Z4QVyjxd?si=LO175zicQCG3kVhG80ekfQ"
},
"type": "ALBUM",
"uri": "spotify:album:6bfkwBrGYKJFk6Z4QVyjxd"
},
{
"artists": [
{
"profile": {
"name": "Juice WRLD"
},
"uri": "spotify:artist:4MCBfE4596Uoi2O4DtmEMz"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e027459992b444de38842b9bee7",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048517459992b444de38842b9bee7",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2737459992b444de38842b9bee7",
"width": 640
}
]
},
"date": {
"year": 2022
},
"id": "1typPCwqyXMfFpvDZAyKew",
"name": "Fighting Demons (Deluxe)",
"sharingInfo": {
"shareId": "kDa76mB1QEGvWlL6iIPCmA",
"shareUrl": "https://open.spotify.com/album/1typPCwqyXMfFpvDZAyKew?si=kDa76mB1QEGvWlL6iIPCmA"
},
"type": "ALBUM",
"uri": "spotify:album:1typPCwqyXMfFpvDZAyKew"
},
{
"artists": [
{
"profile": {
"name": "Juice WRLD"
},
"uri": "spotify:artist:4MCBfE4596Uoi2O4DtmEMz"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02592ac7d5d3cdc03c3987722c",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851592ac7d5d3cdc03c3987722c",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273592ac7d5d3cdc03c3987722c",
"width": 640
}
]
},
"date": {
"year": 2022
},
"id": "7hDMgGXdy0x8hDbtOHIS5j",
"name": "Fighting Demons (Deluxe)",
"sharingInfo": {
"shareId": "jCiWMhBRQUOqYaoNhI1gqw",
"shareUrl": "https://open.spotify.com/album/7hDMgGXdy0x8hDbtOHIS5j?si=jCiWMhBRQUOqYaoNhI1gqw"
},
"type": "ALBUM",
"uri": "spotify:album:7hDMgGXdy0x8hDbtOHIS5j"
},
{
"artists": [
{
"profile": {
"name": "Chris Brown"
},
"uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0248f69a441c575fa5926a0831",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485148f69a441c575fa5926a0831",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27348f69a441c575fa5926a0831",
"width": 640
}
]
},
"date": {
"year": 2019
},
"id": "3okhA6w5uau6ZNhnVpwVww",
"name": "Indigo (Extended)",
"sharingInfo": {
"shareId": "uIadry1vSW6QIgyymi7tZg",
"shareUrl": "https://open.spotify.com/album/3okhA6w5uau6ZNhnVpwVww?si=uIadry1vSW6QIgyymi7tZg"
},
"type": "ALBUM",
"uri": "spotify:album:3okhA6w5uau6ZNhnVpwVww"
},
{
"artists": [
{
"profile": {
"name": "Chris Brown"
},
"uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e022e2fbbe59117bb0005eb3c2e",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048512e2fbbe59117bb0005eb3c2e",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2732e2fbbe59117bb0005eb3c2e",
"width": 640
}
]
},
"date": {
"year": 2019
},
"id": "2rICHwivbZlmMnzEDmGNXX",
"name": "Indigo (Extended)",
"sharingInfo": {
"shareId": "xPWn-sdETE69n-A8sPBX2g",
"shareUrl": "https://open.spotify.com/album/2rICHwivbZlmMnzEDmGNXX?si=xPWn-sdETE69n-A8sPBX2g"
},
"type": "ALBUM",
"uri": "spotify:album:2rICHwivbZlmMnzEDmGNXX"
},
{
"artists": [
{
"profile": {
"name": "Chris Brown"
},
"uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e020bf1b932009c0bff47b8cb86",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048510bf1b932009c0bff47b8cb86",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2730bf1b932009c0bff47b8cb86",
"width": 640
}
]
},
"date": {
"year": 2019
},
"id": "1BfLzaTFI5qKsAAk0Ae6aV",
"name": "Indigo",
"sharingInfo": {
"shareId": "Yc4eDlu7RfipnKIv7SilYQ",
"shareUrl": "https://open.spotify.com/album/1BfLzaTFI5qKsAAk0Ae6aV?si=Yc4eDlu7RfipnKIv7SilYQ"
},
"type": "ALBUM",
"uri": "spotify:album:1BfLzaTFI5qKsAAk0Ae6aV"
},
{
"artists": [
{
"profile": {
"name": "Chris Brown"
},
"uri": "spotify:artist:7bXgB6jMjp9ATFy66eO08Z"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02190ffb1d9b91e447e111fad5",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851190ffb1d9b91e447e111fad5",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273190ffb1d9b91e447e111fad5",
"width": 640
}
]
},
"date": {
"year": 2019
},
"id": "1BI2aGRYFZgQGmSWuh9jpO",
"name": "Indigo",
"sharingInfo": {
"shareId": "MWQ9YiK7TtqDMlN82J5Oyg",
"shareUrl": "https://open.spotify.com/album/1BI2aGRYFZgQGmSWuh9jpO?si=MWQ9YiK7TtqDMlN82J5Oyg"
},
"type": "ALBUM",
"uri": "spotify:album:1BI2aGRYFZgQGmSWuh9jpO"
},
{
"artists": [
{
"profile": {
"name": "Ed Sheeran"
},
"uri": "spotify:artist:6eUKZXaKkcviH0Ku9w2n3V"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02f528fc2d5d8b26e4e3413715",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851f528fc2d5d8b26e4e3413715",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273f528fc2d5d8b26e4e3413715",
"width": 640
}
]
},
"date": {
"year": 2019
},
"id": "3oIFxDIo2fwuk4lwCmFZCx",
"name": "No.6 Collaborations Project",
"sharingInfo": {
"shareId": "1DgGm-f3R762_cofPE3eFw",
"shareUrl": "https://open.spotify.com/album/3oIFxDIo2fwuk4lwCmFZCx?si=1DgGm-f3R762_cofPE3eFw"
},
"type": "ALBUM",
"uri": "spotify:album:3oIFxDIo2fwuk4lwCmFZCx"
},
{
"artists": [
{
"profile": {
"name": "Ed Sheeran"
},
"uri": "spotify:artist:6eUKZXaKkcviH0Ku9w2n3V"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02816b328df5fbcebe53cf6c6f",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851816b328df5fbcebe53cf6c6f",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273816b328df5fbcebe53cf6c6f",
"width": 640
}
]
},
"date": {
"year": 2019
},
"id": "5oUZ9TEZR3wOdvqzowuNwl",
"name": "No.6 Collaborations Project",
"sharingInfo": {
"shareId": "FfSn9kmWQwmEbgzUSuWrEw",
"shareUrl": "https://open.spotify.com/album/5oUZ9TEZR3wOdvqzowuNwl?si=FfSn9kmWQwmEbgzUSuWrEw"
},
"type": "ALBUM",
"uri": "spotify:album:5oUZ9TEZR3wOdvqzowuNwl"
},
{
"artists": [
{
"profile": {
"name": "Don Toliver"
},
"uri": "spotify:artist:4Gso3d4CscCijv0lmajZWs"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e026d5a148417ab9b8a43041c1f",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048516d5a148417ab9b8a43041c1f",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2736d5a148417ab9b8a43041c1f",
"width": 640
}
]
},
"date": {
"year": 2023
},
"id": "26z5llzd194mcCZHADWd6k",
"name": "Love Sick",
"sharingInfo": {
"shareId": "rb_BlA65S2aejycGEXmnyA",
"shareUrl": "https://open.spotify.com/album/26z5llzd194mcCZHADWd6k?si=rb_BlA65S2aejycGEXmnyA"
},
"type": "ALBUM",
"uri": "spotify:album:26z5llzd194mcCZHADWd6k"
},
{
"artists": [
{
"profile": {
"name": "Don Toliver"
},
"uri": "spotify:artist:4Gso3d4CscCijv0lmajZWs"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0205e2f064852fb0febd17225f",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485105e2f064852fb0febd17225f",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27305e2f064852fb0febd17225f",
"width": 640
}
]
},
"date": {
"year": 2023
},
"id": "6Xnrf8JvckhoADFcePUNyq",
"name": "Love Sick",
"sharingInfo": {
"shareId": "3jFNWkFTSRKU66vlFyc2TA",
"shareUrl": "https://open.spotify.com/album/6Xnrf8JvckhoADFcePUNyq?si=3jFNWkFTSRKU66vlFyc2TA"
},
"type": "ALBUM",
"uri": "spotify:album:6Xnrf8JvckhoADFcePUNyq"
},
{
"artists": [
{
"profile": {
"name": "Migos"
},
"uri": "spotify:artist:6oMuImdp5ZcFhWP0ESe6mG"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02f89d00155b6a066650e5460d",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851f89d00155b6a066650e5460d",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273f89d00155b6a066650e5460d",
"width": 640
}
]
},
"date": {
"year": 2021
},
"id": "3uyOwJu4r3yroAkFywNFM3",
"name": "Culture III",
"sharingInfo": {
"shareId": "RpM6mmuHRA-HV0gm8hIUOQ",
"shareUrl": "https://open.spotify.com/album/3uyOwJu4r3yroAkFywNFM3?si=RpM6mmuHRA-HV0gm8hIUOQ"
},
"type": "ALBUM",
"uri": "spotify:album:3uyOwJu4r3yroAkFywNFM3"
},
{
"artists": [
{
"profile": {
"name": "Migos"
},
"uri": "spotify:artist:6oMuImdp5ZcFhWP0ESe6mG"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0217dd1257a14cb98d6ae491be",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485117dd1257a14cb98d6ae491be",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27317dd1257a14cb98d6ae491be",
"width": 640
}
]
},
"date": {
"year": 2021
},
"id": "1lteSAPdfkjYq3lc494VXG",
"name": "Culture III",
"sharingInfo": {
"shareId": "CSEy0xM7Rh67uxjpzZ-J9Q",
"shareUrl": "https://open.spotify.com/album/1lteSAPdfkjYq3lc494VXG?si=CSEy0xM7Rh67uxjpzZ-J9Q"
},
"type": "ALBUM",
"uri": "spotify:album:1lteSAPdfkjYq3lc494VXG"
},
{
"artists": [
{
"profile": {
"name": "OMAH LAY"
},
"uri": "spotify:artist:5yOvAmpIR7hVxiS6Ls5DPO"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0215ceaa196b94c1f61db08d7b",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485115ceaa196b94c1f61db08d7b",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27315ceaa196b94c1f61db08d7b",
"width": 640
}
]
},
"date": {
"year": 2022
},
"id": "5NLjxx8nRy9ooUmgpOvfem",
"name": "Boy Alone",
"sharingInfo": {
"shareId": "91sC31oNRA-hFNz-Dl-pCA",
"shareUrl": "https://open.spotify.com/album/5NLjxx8nRy9ooUmgpOvfem?si=91sC31oNRA-hFNz-Dl-pCA"
},
"type": "ALBUM",
"uri": "spotify:album:5NLjxx8nRy9ooUmgpOvfem"
},
{
"artists": [
{
"profile": {
"name": "OMAH LAY"
},
"uri": "spotify:artist:5yOvAmpIR7hVxiS6Ls5DPO"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02d247511725a4363a6b10b5f7",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851d247511725a4363a6b10b5f7",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273d247511725a4363a6b10b5f7",
"width": 640
}
]
},
"date": {
"year": 2022
},
"id": "673wWns8iuEBeBLRAQU68A",
"name": "Boy Alone",
"sharingInfo": {
"shareId": "wDamx9wSSZSvFjHRZY8mMw",
"shareUrl": "https://open.spotify.com/album/673wWns8iuEBeBLRAQU68A?si=wDamx9wSSZSvFjHRZY8mMw"
},
"type": "ALBUM",
"uri": "spotify:album:673wWns8iuEBeBLRAQU68A"
},
{
"artists": [
{
"profile": {
"name": "DJ Khaled"
},
"uri": "spotify:artist:0QHgL1lAIqAw0HtD7YldmP"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02dcd4d70294f17175991ba1bb",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851dcd4d70294f17175991ba1bb",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273dcd4d70294f17175991ba1bb",
"width": 640
}
]
},
"date": {
"year": 2021
},
"id": "5kE2OAuUYGBqqzscqgBXXf",
"name": "KHALED KHALED",
"sharingInfo": {
"shareId": "YIVR8nswSQi7lOVOMJFnlg",
"shareUrl": "https://open.spotify.com/album/5kE2OAuUYGBqqzscqgBXXf?si=YIVR8nswSQi7lOVOMJFnlg"
},
"type": "ALBUM",
"uri": "spotify:album:5kE2OAuUYGBqqzscqgBXXf"
},
{
"artists": [
{
"profile": {
"name": "DJ Khaled"
},
"uri": "spotify:artist:0QHgL1lAIqAw0HtD7YldmP"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e025d3a6961133df697e744ac36",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d000048515d3a6961133df697e744ac36",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b2735d3a6961133df697e744ac36",
"width": 640
}
]
},
"date": {
"year": 2021
},
"id": "7nJ9oJt1X7kZXmFa7lgkgf",
"name": "KHALED KHALED",
"sharingInfo": {
"shareId": "8ro4N3wlRMmg5QJNa-3pgA",
"shareUrl": "https://open.spotify.com/album/7nJ9oJt1X7kZXmFa7lgkgf?si=8ro4N3wlRMmg5QJNa-3pgA"
},
"type": "ALBUM",
"uri": "spotify:album:7nJ9oJt1X7kZXmFa7lgkgf"
},
{
"artists": [
{
"profile": {
"name": "Sean Kingston"
},
"uri": "spotify:artist:6S0dmVVn4udvppDhZIWxCr"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ca8d656fa57db4cce117f53b",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d00004851ca8d656fa57db4cce117f53b",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b273ca8d656fa57db4cce117f53b",
"width": 640
}
]
},
"date": {
"year": 2020
},
"id": "6DOZI2LfBRYHRhZV21LrOu",
"name": "Eenie Meenie EP",
"sharingInfo": {
"shareId": "ERmp24b0QGyVwA87ZweXyg",
"shareUrl": "https://open.spotify.com/album/6DOZI2LfBRYHRhZV21LrOu?si=ERmp24b0QGyVwA87ZweXyg"
},
"type": "EP",
"uri": "spotify:album:6DOZI2LfBRYHRhZV21LrOu"
},
{
"artists": [
{
"profile": {
"name": "David Guetta"
},
"uri": "spotify:artist:1Cs0zKBU1kc0i8ypK3B9ai"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0278970ae7a1d564a7ba00fe39",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485178970ae7a1d564a7ba00fe39",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27378970ae7a1d564a7ba00fe39",
"width": 640
}
]
},
"date": {
"year": 2018
},
"id": "0GJU424RiEyYQTLbZcHVA7",
"name": "7: Anniversary Edition",
"sharingInfo": {
"shareId": "G63t-kIgS8GJ6caAvNR4Xg",
"shareUrl": "https://open.spotify.com/album/0GJU424RiEyYQTLbZcHVA7?si=G63t-kIgS8GJ6caAvNR4Xg"
},
"type": "ALBUM",
"uri": "spotify:album:0GJU424RiEyYQTLbZcHVA7"
},
{
"artists": [
{
"profile": {
"name": "Ed Sheeran"
},
"uri": "spotify:artist:6eUKZXaKkcviH0Ku9w2n3V"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0262407726ee053c7d89aeff9a",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485162407726ee053c7d89aeff9a",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27362407726ee053c7d89aeff9a",
"width": 640
}
]
},
"date": {
"year": 2024
},
"id": "5xD1PSd5c5APDM0SdkkqnH",
"name": "+-=÷× (Tour Collection)",
"sharingInfo": {
"shareId": "2KzQ__IsQTKi3ie2_bZevw",
"shareUrl": "https://open.spotify.com/album/5xD1PSd5c5APDM0SdkkqnH?si=2KzQ__IsQTKi3ie2_bZevw"
},
"type": "ALBUM",
"uri": "spotify:album:5xD1PSd5c5APDM0SdkkqnH"
},
{
"artists": [
{
"profile": {
"name": "Shawn Mendes"
},
"uri": "spotify:artist:7n2wHs1TKAczGzO7Dd2rGr"
}
],
"coverArt": {
"sources": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e0237a5a19e52f8260b3b158e55",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/ab67616d0000485137a5a19e52f8260b3b158e55",
"width": 64
},
{
"height": 640,
"url": "https://i.scdn.co/image/ab67616d0000b27337a5a19e52f8260b3b158e55",
"width": 640
}
]
},
"date": {
"year": 2020
},
"id": "3Lp4JKk2ZgNkybMRS3eZR5",
"name": "Wonder",
"sharingInfo": {
"shareId": "JHkqh0C5SBKmeIFveAaQtg",
"shareUrl": "https://open.spotify.com/album/3Lp4JKk2ZgNkybMRS3eZR5?si=JHkqh0C5SBKmeIFveAaQtg"
},
"type": "ALBUM",
"uri": "spotify:album:3Lp4JKk2ZgNkybMRS3eZR5"
}
],
"discoveredOnV2": [
{
"__typename": "GenericError"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "",
"id": "37i9dQZF1DXc2aPBXGmXrt",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f000000021da8a6c4b1647a5c33e8a5b3",
"width": null
}
]
}
],
"name": "This Is Justin Bieber",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXc2aPBXGmXrt"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "Setlist coachella 2026",
"id": "0p1rufOAkl56vCKAswiQI2",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84b8b4aafe4028ef3e6ae55e8b",
"width": null
}
]
}
],
"name": "JUSTIN BIEBER COACHELLA 2026 (SETLIST)",
"ownerV2": {
"__typename": "User",
"name": "fasbmusic"
},
"uri": "spotify:playlist:0p1rufOAkl56vCKAswiQI2"
},
{
"__typename": "Playlist",
"description": "",
"id": "4zqz1Qqgtvn28RswuS7zMT",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72ca3883d453c915416ae5eb2dd",
"width": null
}
]
}
],
"name": "best old jb songs",
"ownerV2": {
"__typename": "User",
"name": "court:)"
},
"uri": "spotify:playlist:4zqz1Qqgtvn28RswuS7zMT"
},
{
"__typename": "Playlist",
"description": "all justin bieber songs, including colaborations, in choronological order - big belieber here",
"id": "2ZISS32D1Ry8Aev9YPiJM4",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000d72ca99a8d81d59b8acd85abb03e",
"width": null
}
]
}
],
"name": "justin bieber - all songs",
"ownerV2": {
"__typename": "User",
"name": "mireiaamartii"
},
"uri": "spotify:playlist:2ZISS32D1Ry8Aev9YPiJM4"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "",
"id": "6inBX31Rb6E8jxsHNoecSP",
"images": [
{
"sources": [
{
"height": 640,
"url": "https://mosaic.scdn.co/640/ab67616d00001e02629dc9e2e3bc20bbd7d92e4aab67616d00001e027c3bb9f74a98f60bdda6c9a7ab67616d00001e02ca8d656fa57db4cce117f53bab67616d00001e02f1d02a6cec967f8b6b78f76e",
"width": 640
},
{
"height": 300,
"url": "https://mosaic.scdn.co/300/ab67616d00001e02629dc9e2e3bc20bbd7d92e4aab67616d00001e027c3bb9f74a98f60bdda6c9a7ab67616d00001e02ca8d656fa57db4cce117f53bab67616d00001e02f1d02a6cec967f8b6b78f76e",
"width": 300
},
{
"height": 60,
"url": "https://mosaic.scdn.co/60/ab67616d00001e02629dc9e2e3bc20bbd7d92e4aab67616d00001e027c3bb9f74a98f60bdda6c9a7ab67616d00001e02ca8d656fa57db4cce117f53bab67616d00001e02f1d02a6cec967f8b6b78f76e",
"width": 60
}
]
}
],
"name": "Justin Bieber oldies🥺‼️",
"ownerV2": {
"__typename": "User",
"name": "farah🧚🏻♀️"
},
"uri": "spotify:playlist:6inBX31Rb6E8jxsHNoecSP"
},
{
"__typename": "Playlist",
"description": "Your daily update of the most played tracks right now - Global.",
"id": "37i9dQZEVXbMDoHDwVN2tF",
"images": [
{
"sources": [
{
"height": null,
"url": "https://charts-images.scdn.co/assets/locale_en/regional/daily/region_global_default.jpg",
"width": null
}
]
}
],
"name": "Top 50 - Global",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZEVXbMDoHDwVN2tF"
},
{
"__typename": "Playlist",
"description": "",
"id": "4Vzcb4Ma0C7lVh8BPe82c0",
"images": [
{
"sources": [
{
"height": 640,
"url": "https://mosaic.scdn.co/640/ab67616d00001e021f7011c99b78c661fbd9e236ab67616d00001e02629dc9e2e3bc20bbd7d92e4aab67616d00001e027c3bb9f74a98f60bdda6c9a7ab67616d00001e02f1d02a6cec967f8b6b78f76e",
"width": 640
},
{
"height": 300,
"url": "https://mosaic.scdn.co/300/ab67616d00001e021f7011c99b78c661fbd9e236ab67616d00001e02629dc9e2e3bc20bbd7d92e4aab67616d00001e027c3bb9f74a98f60bdda6c9a7ab67616d00001e02f1d02a6cec967f8b6b78f76e",
"width": 300
},
{
"height": 60,
"url": "https://mosaic.scdn.co/60/ab67616d00001e021f7011c99b78c661fbd9e236ab67616d00001e02629dc9e2e3bc20bbd7d92e4aab67616d00001e027c3bb9f74a98f60bdda6c9a7ab67616d00001e02f1d02a6cec967f8b6b78f76e",
"width": 60
}
]
}
],
"name": "Bieberchella",
"ownerV2": {
"__typename": "User",
"name": "S1thlorddd"
},
"uri": "spotify:playlist:4Vzcb4Ma0C7lVh8BPe82c0"
},
{
"__typename": "GenericError"
},
{
"__typename": "Playlist",
"description": "A mega mix of 75 favorites from the last few years! ",
"id": "37i9dQZF1DXbYM3nMM0oPk",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002ce3e4d2cf82be0252be48478",
"width": null
}
]
}
],
"name": "Mega Hit Mix",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXbYM3nMM0oPk"
},
{
"__typename": "Playlist",
"description": "it's not clocking to you that he's standing on business, is it? (Cover: Justin Bieber)",
"id": "3FxqCKNmp8J6so3EQW4RMt",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72ca55a1209f00a06efac0f4f6b",
"width": null
}
]
}
],
"name": "Justin Bieber: Best Of The Best",
"ownerV2": {
"__typename": "User",
"name": "Best Of The Best"
},
"uri": "spotify:playlist:3FxqCKNmp8J6so3EQW4RMt"
},
{
"__typename": "Playlist",
"description": "epoca que o mundo era um lugar melhor",
"id": "7Cm8ks6mZfUDOj2PHVgPDc",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72ca0702f130fed1278c6d99803",
"width": null
}
]
}
],
"name": "só as antigas do justin bieber",
"ownerV2": {
"__typename": "User",
"name": "justinaaa"
},
"uri": "spotify:playlist:7Cm8ks6mZfUDOj2PHVgPDc"
},
{
"__typename": "Playlist",
"description": "",
"id": "1yHliym9EvW5ItgECTmDUv",
"images": [
{
"sources": [
{
"height": 640,
"url": "https://mosaic.scdn.co/640/ab67616d00001e0208e30ab6a058429303d75876ab67616d00001e027c3bb9f74a98f60bdda6c9a7ab67616d00001e028e6551a2944764bc8e33a960ab67616d00001e02e6f407c7f3a0ec98845e4431",
"width": 640
},
{
"height": 300,
"url": "https://mosaic.scdn.co/300/ab67616d00001e0208e30ab6a058429303d75876ab67616d00001e027c3bb9f74a98f60bdda6c9a7ab67616d00001e028e6551a2944764bc8e33a960ab67616d00001e02e6f407c7f3a0ec98845e4431",
"width": 300
},
{
"height": 60,
"url": "https://mosaic.scdn.co/60/ab67616d00001e0208e30ab6a058429303d75876ab67616d00001e027c3bb9f74a98f60bdda6c9a7ab67616d00001e028e6551a2944764bc8e33a960ab67616d00001e02e6f407c7f3a0ec98845e4431",
"width": 60
}
]
}
],
"name": "Justine Bieber Playlist",
"ownerV2": {
"__typename": "User",
"name": "paw"
},
"uri": "spotify:playlist:1yHliym9EvW5ItgECTmDUv"
},
{
"__typename": "Playlist",
"description": "The hottest 50. Cover: Tame Impala & JENNIE",
"id": "37i9dQZF1DXcBWIGoYBM5M",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002b96a3bfea7beae76bb9c4195",
"width": null
}
]
}
],
"name": "Today’s Top Hits",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M"
},
{
"__typename": "Playlist",
"description": "Your daily update of the most played tracks right now - Philippines.",
"id": "37i9dQZEVXbNBz9cRCSFkY",
"images": [
{
"sources": [
{
"height": null,
"url": "https://charts-images.scdn.co/assets/locale_en/regional/daily/region_ph_default.jpg",
"width": null
}
]
}
],
"name": "Top 50 - Philippines",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZEVXbNBz9cRCSFkY"
},
{
"__typename": "Playlist",
"description": "",
"id": "0Q6tQ2xlSIWL1WuoT8Yfmm",
"images": [
{
"sources": [
{
"height": null,
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c5329caacaf6bf03a55248fa7",
"width": null
}
]
}
],
"name": "justin bieber prime ",
"ownerV2": {
"__typename": "User",
"name": "melxna.lk"
},
"uri": "spotify:playlist:0Q6tQ2xlSIWL1WuoT8Yfmm"
},
{
"__typename": "Playlist",
"description": "",
"id": "42O61YLcFLpWpD1VVKdjQS",
"images": [
{
"sources": [
{
"height": 640,
"url": "https://mosaic.scdn.co/640/ab67616d00001e02150735e299793260f515b194ab67616d00001e02629dc9e2e3bc20bbd7d92e4aab67616d00001e02aed1660585c1e3c9ffb50b6aab67616d00001e02f46b9d202509a8f7384b90de",
"width": 640
},
{
"height": 300,
"url": "https://mosaic.scdn.co/300/ab67616d00001e02150735e299793260f515b194ab67616d00001e02629dc9e2e3bc20bbd7d92e4aab67616d00001e02aed1660585c1e3c9ffb50b6aab67616d00001e02f46b9d202509a8f7384b90de",
"width": 300
},
{
"height": 60,
"url": "https://mosaic.scdn.co/60/ab67616d00001e02150735e299793260f515b194ab67616d00001e02629dc9e2e3bc20bbd7d92e4aab67616d00001e02aed1660585c1e3c9ffb50b6aab67616d00001e02f46b9d202509a8f7384b90de",
"width": 60
}
]
}
],
"name": "TEMAZOS JUSTIN BIEBER",
"ownerV2": {
"__typename": "User",
"name": "Sara.Rangel"
},
"uri": "spotify:playlist:42O61YLcFLpWpD1VVKdjQS"
}
],
"featuringV2": [
{
"__typename": "Playlist",
"description": "",
"id": "37i9dQZF1DXc2aPBXGmXrt",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f000000021da8a6c4b1647a5c33e8a5b3",
"width": null
}
]
}
],
"name": "This Is Justin Bieber",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXc2aPBXGmXrt"
},
{
"__typename": "Playlist",
"description": "With One Direction, Maroon 5, Bruno Mars and more",
"id": "37i9dQZF1E4umBm15jdpM7",
"images": [
{
"sources": [
{
"height": null,
"url": "https://pickasso.spotifycdn.com/image/ab67c0de0000deef/dt/v1/img/radio/artist/1uNFoZAHBGtllmzznpCI3s/en",
"width": null
}
]
}
],
"name": "Justin Bieber Radio",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1E4umBm15jdpM7"
},
{
"__typename": "Playlist",
"description": "The hottest 50. Cover: Tame Impala & JENNIE",
"id": "37i9dQZF1DXcBWIGoYBM5M",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002b96a3bfea7beae76bb9c4195",
"width": null
}
]
}
],
"name": "Today’s Top Hits",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M"
},
{
"__typename": "Playlist",
"description": "A mega mix of 75 favorites from the last few years! ",
"id": "37i9dQZF1DXbYM3nMM0oPk",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002ce3e4d2cf82be0252be48478",
"width": null
}
]
}
],
"name": "Mega Hit Mix",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DXbYM3nMM0oPk"
},
{
"__typename": "Playlist",
"description": "The hottest tracks in the United States. Cover: Noah Kahan",
"id": "37i9dQZF1DX0kbJZpiYdZl",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f000000027ac1293c127259d858d2c190",
"width": null
}
]
}
],
"name": "Hot Hits USA",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DX0kbJZpiYdZl"
},
{
"__typename": "Playlist",
"description": "Get your beast mode on!",
"id": "37i9dQZF1DX76Wlfdnj7AP",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f00000002f367481f06b565250cc7b139",
"width": null
}
]
}
],
"name": "Beast Mode",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DX76Wlfdnj7AP"
},
{
"__typename": "Playlist",
"description": "Get happy with today's dose of feel-good songs!",
"id": "37i9dQZF1DX3rxVfibe1L0",
"images": [
{
"sources": [
{
"height": null,
"url": "https://i.scdn.co/image/ab67706f000000028191cc41d8585df6170b3e5e",
"width": null
}
]
}
],
"name": "Mood Booster",
"ownerV2": {
"__typename": "User",
"name": "Spotify"
},
"uri": "spotify:playlist:37i9dQZF1DX3rxVfibe1L0"
},
{
"__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"
}
],
"relatedArtists": [
{
"id": "0du5cEVh5yTK9QJze8zA0C",
"profile": {
"name": "Bruno Mars"
},
"uri": "spotify:artist:0du5cEVh5yTK9QJze8zA0C",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebc7688aad1bf03986934d7e26",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178c7688aad1bf03986934d7e26",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174c7688aad1bf03986934d7e26",
"width": 320
}
]
}
}
},
{
"id": "66CXWjxzNUsdJxJ2JdwvnR",
"profile": {
"name": "Ariana Grande"
},
"uri": "spotify:artist:66CXWjxzNUsdJxJ2JdwvnR",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb766397ec42a573a53eb5fb87",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178766397ec42a573a53eb5fb87",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174766397ec42a573a53eb5fb87",
"width": 320
}
]
}
}
},
{
"id": "5pKCCKE2ajJHZ9KAiaK11H",
"profile": {
"name": "Rihanna"
},
"uri": "spotify:artist:5pKCCKE2ajJHZ9KAiaK11H",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebcb565a8e684e3be458d329ac",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178cb565a8e684e3be458d329ac",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174cb565a8e684e3be458d329ac",
"width": 320
}
]
}
}
},
{
"id": "6S0dmVVn4udvppDhZIWxCr",
"profile": {
"name": "Sean Kingston"
},
"uri": "spotify:artist:6S0dmVVn4udvppDhZIWxCr",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebee205e5029a04bd0460e16e4",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178ee205e5029a04bd0460e16e4",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174ee205e5029a04bd0460e16e4",
"width": 320
}
]
}
}
},
{
"id": "04gDigrS5kc9YWfZHwBETP",
"profile": {
"name": "Maroon 5"
},
"uri": "spotify:artist:04gDigrS5kc9YWfZHwBETP",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebf8349dfb619a7f842242de77",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178f8349dfb619a7f842242de77",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174f8349dfb619a7f842242de77",
"width": 320
}
]
}
}
},
{
"id": "2tIP7SsRs7vjIcLrU85W8J",
"profile": {
"name": "The Kid LAROI"
},
"uri": "spotify:artist:2tIP7SsRs7vjIcLrU85W8J",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb8ae6a1046094624d95b115cb",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1788ae6a1046094624d95b115cb",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051748ae6a1046094624d95b115cb",
"width": 320
}
]
}
}
},
{
"id": "1Xyo4u8uXC1ZmMpatF05PJ",
"profile": {
"name": "The Weeknd"
},
"uri": "spotify:artist:1Xyo4u8uXC1ZmMpatF05PJ",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebc1719ac9e6a75c1c25835018",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178c1719ac9e6a75c1c25835018",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174c1719ac9e6a75c1c25835018",
"width": 320
}
]
}
}
},
{
"id": "6VuMaDnrHyPL1p4EHjYLi7",
"profile": {
"name": "Charlie Puth"
},
"uri": "spotify:artist:6VuMaDnrHyPL1p4EHjYLi7",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb6721f541fb123145d4cb3ace",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1786721f541fb123145d4cb3ace",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051746721f541fb123145d4cb3ace",
"width": 320
}
]
}
}
},
{
"id": "6jJ0s89eD6GaHleKKya26X",
"profile": {
"name": "Katy Perry"
},
"uri": "spotify:artist:6jJ0s89eD6GaHleKKya26X",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb4be5330bd48527f9dd620663",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1784be5330bd48527f9dd620663",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051744be5330bd48527f9dd620663",
"width": 320
}
]
}
}
},
{
"id": "1Xylc3o4UrD53lo9CvFvVg",
"profile": {
"name": "Zara Larsson"
},
"uri": "spotify:artist:1Xylc3o4UrD53lo9CvFvVg",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebd519a7e349541cba8f85e965",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178d519a7e349541cba8f85e965",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174d519a7e349541cba8f85e965",
"width": 320
}
]
}
}
},
{
"id": "5CiGnKThu5ctn9pBxv7DGa",
"profile": {
"name": "benny blanco"
},
"uri": "spotify:artist:5CiGnKThu5ctn9pBxv7DGa",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb9e339e423b680759b0006a63",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1789e339e423b680759b0006a63",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051749e339e423b680759b0006a63",
"width": 320
}
]
}
}
},
{
"id": "5ZsFI1h6hIdQRw2ti0hz81",
"profile": {
"name": "ZAYN"
},
"uri": "spotify:artist:5ZsFI1h6hIdQRw2ti0hz81",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb830845d2fa6c5c7874176951",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178830845d2fa6c5c7874176951",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174830845d2fa6c5c7874176951",
"width": 320
}
]
}
}
},
{
"id": "540vIaP2JwjQb9dm3aArA4",
"profile": {
"name": "DJ Snake"
},
"uri": "spotify:artist:540vIaP2JwjQb9dm3aArA4",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb175df1a8848d8ff67c6d5600",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178175df1a8848d8ff67c6d5600",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174175df1a8848d8ff67c6d5600",
"width": 320
}
]
}
}
},
{
"id": "7n2wHs1TKAczGzO7Dd2rGr",
"profile": {
"name": "Shawn Mendes"
},
"uri": "spotify:artist:7n2wHs1TKAczGzO7Dd2rGr",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb58b4b9419486550f6fda0535",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f17858b4b9419486550f6fda0535",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab6761610000517458b4b9419486550f6fda0535",
"width": 320
}
]
}
}
},
{
"id": "31TPClRtHm23RisEBtV3X7",
"profile": {
"name": "Justin Timberlake"
},
"uri": "spotify:artist:31TPClRtHm23RisEBtV3X7",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb7a5cfe2597665a3d160e805e",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f1787a5cfe2597665a3d160e805e",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab676161000051747a5cfe2597665a3d160e805e",
"width": 320
}
]
}
}
},
{
"id": "0C8ZW7ezQVs4URX5aX7Kqx",
"profile": {
"name": "Selena Gomez"
},
"uri": "spotify:artist:0C8ZW7ezQVs4URX5aX7Kqx",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5eb815e520e3ce7fe210046ba66",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178815e520e3ce7fe210046ba66",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174815e520e3ce7fe210046ba66",
"width": 320
}
]
}
}
},
{
"id": "6eUKZXaKkcviH0Ku9w2n3V",
"profile": {
"name": "Ed Sheeran"
},
"uri": "spotify:artist:6eUKZXaKkcviH0Ku9w2n3V",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebd55c95ad400aed87da52daec",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178d55c95ad400aed87da52daec",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174d55c95ad400aed87da52daec",
"width": 320
}
]
}
}
},
{
"id": "21E3waRsmPlU7jZsS13rcj",
"profile": {
"name": "Ne-Yo"
},
"uri": "spotify:artist:21E3waRsmPlU7jZsS13rcj",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebca118e3822061f7b7f6bc537",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178ca118e3822061f7b7f6bc537",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174ca118e3822061f7b7f6bc537",
"width": 320
}
]
}
}
},
{
"id": "5ndkK3dpZLKtBklKjxNQwT",
"profile": {
"name": "B.o.B"
},
"uri": "spotify:artist:5ndkK3dpZLKtBklKjxNQwT",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebc9a97fba42e640d955fedf46",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178c9a97fba42e640d955fedf46",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174c9a97fba42e640d955fedf46",
"width": 320
}
]
}
}
},
{
"id": "06HL4z0CvFAxyc27GXpf02",
"profile": {
"name": "Taylor Swift"
},
"uri": "spotify:artist:06HL4z0CvFAxyc27GXpf02",
"visuals": {
"avatarImage": {
"sources": [
{
"height": 640,
"url": "https://i.scdn.co/image/ab6761610000e5ebe2e8e7ff002a4afda1c7147e",
"width": 640
},
{
"height": 160,
"url": "https://i.scdn.co/image/ab6761610000f178e2e8e7ff002a4afda1c7147e",
"width": 160
},
{
"height": 320,
"url": "https://i.scdn.co/image/ab67616100005174e2e8e7ff002a4afda1c7147e",
"width": 320
}
]
}
}
}
]
},
"relatedMusicVideos": [],
"saved": false,
"sharingInfo": {
"shareId": "-KWAMHoLQA2Rwc3vmQCaBA",
"shareUrl": "https://open.spotify.com/artist/1uNFoZAHBGtllmzznpCI3s?si=-KWAMHoLQA2Rwc3vmQCaBA"
},
"stats": {
"followers": 89982015,
"monthlyListeners": 140381301,
"topCities": [
{
"city": "London",
"country": "GB",
"numberOfListeners": 2181813,
"region": "ENG"
},
{
"city": "São Paulo",
"country": "BR",
"numberOfListeners": 1918165,
"region": "SP"
},
{
"city": "Jakarta",
"country": "ID",
"numberOfListeners": 1629882,
"region": "JK"
},
{
"city": "Mexico City",
"country": "MX",
"numberOfListeners": 1497826,
"region": "CMX"
},
{
"city": "Quezon City",
"country": "PH",
"numberOfListeners": 1427546,
"region": "00"
}
],
"worldRank": 1
},
"unmappedMusicVideos": [],
"uri": "spotify:artist:1uNFoZAHBGtllmzznpCI3s",
"watchFeedEntrypoint": null
}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