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 playlist details API Playground
Returns normalized Spotify Web Player playlist metadata and items from Spotify's fetchPlaylist Pathfinder response.
GETapiKey3 credits/requestspotify.playlistResponseDocSpotify
Endpoint details
Returns normalized Spotify Web Player playlist metadata and items from Spotify's fetchPlaylist Pathfinder response. Provide either uri or id; defaults to a known public playlist when omitted.
- Method
- GET
- Path
- /spotify/playlist
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 7 documented fields
Request parameters
uri:queryid:queryoffset:querylimit:queryenable_watch_feed_entrypoint:queryinclude_episode_content_ratings_v2:queryx-api-key:header
Response schema fields
codedatadata.collaborativedata.descriptiondata.episodesdata.episodes[].descriptiondata.episodes[].externalUrldata.episodes[].imageUrldata.episodes[].imagesdata.episodes[].images[].heightdata.episodes[].images[].urldata.episodes[].images[].width
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:playlist:37i9dQZEVXbLwpL8TjsxOG",
"id": "37i9dQZEVXbLwpL8TjsxOG",
"type": "Playlist",
"name": "Example Playlist",
"offset": 0,
"limit": 25,
"items": [
{
"uri": "spotify:track:example",
"type": "Track",
"title": "Example Track",
"externalUrl": "https://open.spotify.com/track/example"
}
],
"meta": {
"operationName": "fetchPlaylist",
"itemCount": 1,
"trackCount": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}cURL example
curl "https://api.crawlora.net/api/v1/spotify/playlist" \
-H "x-api-key: <api-key>"