Endpoint Playground
Test Crawlora's Spotify Playlist API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/spotify/playlist?uri=spotify%3Aplaylist%3A37i9dQZEVXbLwpL8TjsxOG&id=37i9dQZEVXbLwpL8TjsxOG&offset=0&limit=25&enable_watch_feed_entrypoint=false&include_episode_content_ratings_v2=false" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:playlist:37i9dQZEVXbLwpL8TjsxOG | Spotify playlist URI or open.spotify.com playlist URL |
| id | string | No | 37i9dQZEVXbLwpL8TjsxOG | Spotify playlist ID. Used when uri is omitted |
| offset | integer | No | 0 | Playlist item offset |
| limit | integer | No | 25 | Playlist item limit, clamped to 1-50 |
| enable_watch_feed_entrypoint | boolean | No | false | Enable watch feed entrypoint |
| include_episode_content_ratings_v2 | boolean | No | false | Include Spotify episode content ratings v2 |
{
"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"
}
}
}Public Playground
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.
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.
{
"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 "https://api.crawlora.net/api/v1/spotify/playlist" \
-H "x-api-key: $CRAWLORA_API_KEY"