Public Playground
Preview the endpoint before sending a live request
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Playground
Retrieve Spotify public profile API Playground
Returns normalized public profile metadata and preview playlists from Spotify's Web Player user-profile service.
GETapiKey3 credits/requestspotify.userProfileResponseDocSpotify
Endpoint details
Returns normalized public profile metadata and preview playlists from Spotify's Web Player user-profile service. Provide username, uri, or url; defaults to Spotify's official profile.
- Method
- GET
- Path
- /spotify/profile
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 7 documented fields
Request parameters
username:queryuri:queryurl:queryplaylist_limit:queryartist_limit:queryepisode_limit:queryx-api-key:header
Response schema fields
codedatadata.allowFollowsdata.colordata.externalUrldata.followersCountdata.followingCountdata.hasSpotifyImagedata.hasSpotifyNamedata.imageUrldata.isCurrentUserdata.isVerified
Sample response summary
{
"uri": "spotify:user:spotify",
"username": "spotify",
"name": "Spotify",
"followersCount": 12162371,
"followingCount": 327,
"totalPublicPlaylistsCount": 1519,
"publicPlaylists": [
{
"uri": "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M",
"name": "Today’s Top Hits",
"ownerName": "Spotify"
}
]
}cURL example
curl "https://api.crawlora.net/api/v1/spotify/profile" \
-H "x-api-key: <api-key>"