Get a User's Profile
Developing
GET
/users/{user_id}
category-users-profile
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.spotify.com/v1/users/' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
"display_name": "string",
"external_urls": {
"spotify": "string"
},
"followers": {
"href": "string",
"total": 0
},
"href": "string",
"id": "string",
"images": [
{
"height": 0,
"url": "string",
"width": 0
}
],
"type": "string",
"uri": "string"
}
Request
Path Params
user_id
string
required
Header Params
Authorization
string
required
Responses
Modified at 2022-09-12 10:04:50