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 genre page API Playground
Returns normalized sections and items from Spotify's browsePage Pathfinder response for a Spotify genre or page URI.
GETapiKey3 credits/requestspotify.browsePageResponseDocSpotify
Endpoint details
Returns normalized sections and items from Spotify's browsePage Pathfinder response for a Spotify genre or page URI.
- Method
- GET
- Path
- /spotify/genre
- Authentication
- apiKey
- Credit cost
- 3 credits/request
- Platform
- Spotify
- Parameters
- 7 documented fields
Request parameters
uri:querypage_offset:querypage_limit:querysection_offset:querysection_limit:queryinclude_episode_content_ratings_v2:queryx-api-key:header
Response schema fields
codedatadata.metadata.meta.appVersiondata.meta.fetchedAtdata.meta.operationNamedata.meta.sectionCountdata.sectionsdata.sections[].itemsdata.sections[].items[].descriptiondata.sections[].items[].externalUrldata.sections[].items[].imageUrl
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:page:0JQ5DAB3zgCauRwnvdEQjJ",
"sections": [
{
"uri": "spotify:section:example",
"title": "Popular releases",
"items": [
{
"uri": "spotify:album:example",
"type": "Album",
"title": "Example Album",
"externalUrl": "https://open.spotify.com/album/example"
}
]
}
],
"meta": {
"operationName": "browsePage",
"sectionCount": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}cURL example
curl "https://api.crawlora.net/api/v1/spotify/genre" \
-H "x-api-key: <api-key>"