Users · GET
User profile
GET /user_profile
About
User profile is a GET endpoint in the Users group of the Spotify Data API. It takes 4 parameters: id (required), plus playlistLimit, artistLimit and episodeLimit (optional). The recorded sample response, captured 2025-06-07, is a JSON object with 14 top-level keys: uri, name, image_url, followers_count, following_count, public_playlists, total_public_playlists_count, is_verified, report_abuse_disabled, has_spotify_name, has_spotify_image, color, allow_follows and show_follows.
Parameters 4
- id Required
- In
- query
- Default
- —
- playlistLimit Optional
- In
- query
- Default
- 10
- artistLimit Optional
- In
- query
- Default
- 100
- episodeLimit Optional
- In
- query
- Default
- 100
Request
Against https://spotify-proxy.checkleaked.cc, with the same example values the Run button sends.
| curl -X GET \ |
| "https://spotify-proxy.checkleaked.cc/user_profile?id=spotify&playlistLimit=10&artistLimit=100&episodeLimit=100" \ |
| -H "x-api-key: $SPOTIFY_API_KEY" |
Sample response
Recorded sample · captured 2025-06-07
| { |
| "uri": "spotify:user:nocopyrightsounds", |
| "name": "NCS", |
| "image_url": "https://i.scdn.co/image/ab6775700000ee855a6b798210e8f420dacc5638", |
| "followers_count": 577868, |
| "following_count": 3, |
| "public_playlists": [ |
| { |
| "uri": "spotify:playlist:2NdDBIGHUCu977yW5iKWQY", |
| "name": "NCS Top 100 (No Copyright Sounds)", |
| "image_url": "https://image-cdn-fa.spotifycdn.com/image/ab67706c0000da84049b9816c74774da9d39ac06", |
| "followers_count": 466327, |
| "owner_name": "NCS", |
| "owner_uri": "spotify:user:nocopyrightsounds" |
| }, |
| { |
| "uri": "spotify:playlist:0lgnOQ2gyP9ZVq1eqXm32T", |
| "name": "Copyright Free Music", |
| "image_url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da844174f35889804885537f83e9", |
| "followers_count": 75290, |
| "owner_name": "NCS", |
| "owner_uri": "spotify:user:nocopyrightsounds" |
| }, |
| { |
| "uri": "spotify:playlist:6uclVwweA1ywdrGDTegDWv", |
| "name": "NCS Best of 2025", |
| "image_url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c89aae8732bcf73827e2f2330", |
| "followers_count": 774, |
| "owner_name": "NCS", |
| "owner_uri": "spotify:user:nocopyrightsounds" |
| }, |
| { |
| "uri": "spotify:playlist:1VWsqecFJEBmFaZiRboomV", |
| "name": "Geometry Dash x NCS Playlist", |
| "image_url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72cd54b3c4e20125789da0ac22b", |
| "followers_count": 15895, |
| "owner_name": "NCS", |
| "owner_uri": "spotify:user:nocopyrightsounds" |
| }, |
| { |
| "uri": "spotify:playlist:7sZbq8QGyMnhKPcLJvCUFD", |
| "name": "NCS Releases", |
| "image_url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84c9d8288f341835a1c40f961d", |
| "followers_count": 727841, |
| "owner_name": "NCS", |
| "owner_uri": "spotify:user:nocopyrightsounds" |
| }, |
| { |
| "uri": "spotify:playlist:32CmcJFCwSSqeBSrh1o8jn", |
| "name": "Best of NCS: The Top 500 Biggest Songs 📈", |
| "image_url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84486b153a25529fdfbef39203", |
| "followers_count": 957, |
| "owner_name": "NCS", |
| "owner_uri": "spotify:user:nocopyrightsounds" |
| }, |
| { |
| "uri": "spotify:playlist:5Sxc4n58dHUdwnEib1nFBZ", |
| "name": "NCS - Copyright Free Music", |
| "image_url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84b14512ebb50cdf9d453a93ff", |
| "followers_count": 4879, |
| "owner_name": "NCS", |
| "owner_uri": "spotify:user:nocopyrightsounds" |
| }, |
| { |
| "uri": "spotify:playlist:3O7TvwLeCvuFHU36PsTJRZ", |
| "name": "New Copyright Free Music 2025", |
| "image_url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72c3d52fdc8450754e377d2c427", |
| "followers_count": 3994, |
| "owner_name": "NCS", |
| "owner_uri": "spotify:user:nocopyrightsounds" |
| }, |
| { |
| "uri": "spotify:playlist:5FuSBoolvor9fgR28WUNWq", |
| "name": "NoCopyrightSounds", |
| "image_url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84fe6a73f6c99e109f6108a01b", |
| "followers_count": 113076, |
| "owner_name": "NCS", |
| "owner_uri": "spotify:user:nocopyrightsounds" |
| }, |
| { |
The first 80 of 97 lines. Press Run for the full body.
Response fields
Read off the recorded sample, not a schema: a JSON object with 14 top-level keys, and one level below each key.
uristringnamestringimage_urlstringfollowers_countnumberfollowing_countnumberpublic_playlistsarray of 10 objectspublic_playlists[].uristringpublic_playlists[].namestringpublic_playlists[].image_urlstringpublic_playlists[].followers_countnumberpublic_playlists[].owner_namestringpublic_playlists[].owner_uristringtotal_public_playlists_countnumberis_verifiedbooleanreport_abuse_disabledbooleanhas_spotify_namebooleanhas_spotify_imagebooleancolornumberallow_followsbooleanshow_followsboolean
Errors
- 400
- “id” is required — a request that omits it, or sends a value of the wrong type, is rejected before it reaches Spotify.
- 404
- No Spotify item exists for the “id” that was sent. Spotify ids are 22 characters of base62, so a share link has to be reduced to the id in it first.
- 401 / 403
- The key is missing, wrong, or on a plan that does not include this endpoint. On RapidAPI the header is X-RapidAPI-Key; on the Direct Portal it is an Authorization: Bearer token; on Apify the actor supplies it.
- 429
- Rate limited. The demo on this site allows 100 requests per 15 minutes and 500 per day per visitor, inside a budget shared by every visitor. With a key it is 5 requests per second on every RapidAPI plan and 10 per second on the Direct Portal.
- 5xx
- Spotify itself failed or timed out. These are transient; retry once with a short backoff rather than immediately.
Related endpoints
The other operation in the Users group.