Web API •References / Users / Get User's Profile
Get User's Profile
Get public profile information about a Spotify user.
Request
- user_idstringRequiredThe user's Spotify user ID. Example:smedjan
Response
A user
- display_namestringNullableThe name displayed on the user's profile. nullif not available.
- Known public external URLs for this user. - spotifystringThe Spotify URL for the object. 
 
- Information about the followers of this user. - hrefstringNullableThis will always be set to null, as the Web API does not support it at the moment. 
- totalintegerThe total number of followers. 
 
- hrefstringA link to the Web API endpoint for this user. 
- idstringThe Spotify user ID for this user. 
- The user's profile image. - urlstringRequiredThe source URL of the image. Example:"https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228"
- heightintegerRequiredNullableThe image height in pixels. Example:300
- widthintegerRequiredNullableThe image width in pixels. Example:300
 
- typestringThe object type. Allowed values:"user"
- uristringThe Spotify URI for this user. 
Response sample
{ "display_name": "string", "external_urls": { "spotify": "string" }, "followers": { "href": "string", "total": 0 }, "href": "string", "id": "string", "images": [ { "url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228", "height": 300, "width": 300 } ], "type": "user", "uri": "string"}