---
title: "Get Current User's Profile"
method: GET
path: "/me"
tags: ["Users"]
---

# Get Current User's Profile

`GET /me`

Get detailed profile information about the current user (including the
current user's username).

## Response `200`

A user

- PrivateUserObject
  - `country` string — The country of the user, as set in the user's account profile. An [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). _This field is only available when the current user has granted access to the [user-read-private](/documentation/general/guides/authorization-guide/#list-of-scopes) scope._
  - `display_name` string — The name displayed on the user's profile. `null` if not available.
  - `email` string — The user's email address, as entered by the user when creating their account. _**Important!** This email address is unverified; there is no proof that it actually belongs to the user._ _This field is only available when the current user has granted access to the [user-read-email](/documentation/general/guides/authorization-guide/#list-of-scopes) scope._
  - `explicit_content` ExplicitContentSettingsObject
    - `filter_enabled` boolean — When `true`, indicates that explicit content should not be played.
    - `filter_locked` boolean — When `true`, indicates that the explicit content setting is locked and can't be changed by the user.
  - `external_urls` ExternalUrlObject
    - `spotify` string — The [Spotify URL](/documentation/web-api/#spotify-uris-and-ids) for the object.
  - `followers` FollowersObject
    - `href` string, nullable — This will always be set to null, as the Web API does not support it at the moment.
    - `total` integer — The total number of followers.
  - `href` string — A link to the Web API endpoint for this user.
  - `id` string — The [Spotify user ID](/documentation/web-api/#spotify-uris-and-ids) for the user.
  - `images` ImageObject[] — The user's profile image.
    - `height` integer, nullable, required — The image height in pixels.
    - `url` string, required — The source URL of the image.
    - `width` integer, nullable, required — The image width in pixels.
  - `product` string — The user's Spotify subscription level: "premium", "free", etc. (The subscription level "open" can be considered the same as "free".) _This field is only available when the current user has granted access to the [user-read-private](/documentation/general/guides/authorization-guide/#list-of-scopes) scope._
  - `type` string — The object type: "user"
  - `uri` string — The [Spotify URI](/documentation/web-api/#spotify-uris-and-ids) for the user.

## Other responses

- `401` — Bad or expired token. This can happen if the user revoked a token or the access token has expired. You should re-authenticate the user.
- `403` — Bad OAuth request (wrong consumer key, bad nonce, expired timestamp...). Unfortunately, re-authenticating the user won't help here.
- `429` — The app has exceeded its rate limits.

---

[API](https://skmtc.net/spotify/apis/sonallux.md) · [All operations](https://skmtc.net/spotify/apis/sonallux/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/spotify/sonallux/versions/1459b27f2e48/schema)
