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 playlists API Playground
Returns normalized public playlists from Spotify's Web Player user-profile service. Provide username, uri, or url; defaults to Spotify's official profile.
GETapiKey3 credits/requestspotify.userProfilePlaylistsResponseDocSpotify
Endpoint details
Returns normalized public 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/playlists
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 6 documented fields
Request parameters
username:queryuri:queryurl:queryoffset:querylimit:queryx-api-key:header
Response schema fields
codedatadata.limitdata.metadata.meta.appVersiondata.meta.artistCountdata.meta.fetchedAtdata.meta.operationNamedata.meta.playlistCountdata.meta.profileCountdata.offsetdata.publicPlaylists
Sample response summary
{
"uri": "spotify:user:spotify",
"username": "spotify",
"offset": 0,
"limit": 20,
"totalPublicPlaylistsCount": 1519,
"publicPlaylists": [
{
"uri": "spotify:playlist:37i9dQZF1DXcBWIGoYBM5M",
"name": "Today’s Top Hits",
"followersCount": 34324513
}
]
}cURL example
curl "https://api.crawlora.net/api/v1/spotify/profile/playlists" \
-H "x-api-key: <api-key>"