Get Current User's Profile
Developing
GET
/me
category-users-profile
current user's username).
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.spotify.com/v1/me' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
"country": "string",
"display_name": "string",
"email": "string",
"explicit_content": {
"filter_enabled": true,
"filter_locked": true
},
"external_urls": {
"spotify": "string"
},
"followers": {
"href": "string",
"total": 0
},
"href": "string",
"id": "string",
"images": [
{
"height": 0,
"url": "string",
"width": 0
}
],
"product": "string",
"type": "string",
"uri": "string"
}
Request
Header Params
Authorization
string
required
Reading the user's email address requires the
user-read-email
scope; reading country, product subscription level and explicit content settings requires the user-read-private
scope. See Using Scopes.Responses
Modified at 2022-09-12 10:04:50