Endpoint Playground
Test Crawlora's Spotify Section 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/section?uri=spotify%3Asection%3A0JQ5IMCbQBLqNPkcmYxQPQ&offset=0&limit=20&include_episode_content_ratings_v2=false" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:section:0JQ5IMCbQBLqNPkcmYxQPQ | Spotify section URI |
| offset | integer | No | 0 | Section item offset |
| limit | integer | No | 20 | Section item limit, clamped to 1-50 |
| include_episode_content_ratings_v2 | boolean | No | false | Include Spotify episode content ratings v2 |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:section:0JQ5IMCbQBLqNPkcmYxQPQ",
"offset": 0,
"limit": 20,
"items": [
{
"uri": "spotify:playlist:example",
"type": "Playlist",
"title": "Example Playlist",
"externalUrl": "https://open.spotify.com/playlist/example"
}
],
"meta": {
"operationName": "browseSection",
"count": 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 items from Spotify's browseSection Pathfinder response for a Spotify section URI.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:section:0JQ5IMCbQBLqNPkcmYxQPQ",
"offset": 0,
"limit": 20,
"items": [
{
"uri": "spotify:playlist:example",
"type": "Playlist",
"title": "Example Playlist",
"externalUrl": "https://open.spotify.com/playlist/example"
}
],
"meta": {
"operationName": "browseSection",
"count": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify/section" \
-H "x-api-key: $CRAWLORA_API_KEY"