Web API •References / Users / Get User's Profile
Get User's Profile
Get public profile information about a Spotify user.
Request
- user_idstringRequired
The user's Spotify user ID.
Example:smedjan
Response
A user
- display_namestringNullable
The name displayed on the user's profile.
null
if not available. Known public external URLs for this user.
- spotifystring
The Spotify URL for the object.
Information about the followers of this user.
- hrefstringNullable
This will always be set to null, as the Web API does not support it at the moment.
- totalinteger
The total number of followers.
- hrefstring
A link to the Web API endpoint for this user.
- idstring
The Spotify user ID for this user.
The user's profile image.
- urlstringRequired
The source URL of the image.
Example:"https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228"
- heightintegerRequiredNullable
The image height in pixels.
Example:300
- widthintegerRequiredNullable
The image width in pixels.
Example:300
- typestring
The object type.
Allowed values:"user"
- uristring
The 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"}