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 browse section API Playground
Returns normalized items from Spotify's browseSection Pathfinder response for a Spotify section URI.
GETapiKey3 credits/requestspotify.browseSectionResponseDocSpotify
Endpoint details
Returns normalized items from Spotify's browseSection Pathfinder response for a Spotify section URI.
- Method
- GET
- Path
- /spotify/section
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 5 documented fields
Request parameters
uri:queryoffset:querylimit:queryinclude_episode_content_ratings_v2:queryx-api-key:header
Response schema fields
codedatadata.itemsdata.items[].descriptiondata.items[].externalUrldata.items[].imageUrldata.items[].imagesdata.items[].images[].heightdata.items[].images[].urldata.items[].images[].widthdata.items[].publisherdata.items[].subtitle
Sample response summary
{
"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 example
curl "https://api.crawlora.net/api/v1/spotify/section" \
-H "x-api-key: <api-key>"