Endpoint Playground
Test Crawlora's Spotify Podcasts Categories 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-podcasts/categories?uri=spotify%3Apage%3A0JQ5DArNBzkmxXHCqFLx2U&page_offset=0&page_limit=10§ion_offset=0§ion_limit=10&include_episode_content_ratings_v2=false" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:page:0JQ5DArNBzkmxXHCqFLx2U | Spotify podcast categories page URI |
| page_offset | integer | No | 0 | Page pagination offset |
| page_limit | integer | No | 10 | Page pagination limit, clamped to 1-50 |
| section_offset | integer | No | 0 | Section pagination offset |
| section_limit | integer | No | 10 | Section pagination 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:page:0JQ5DArNBzkmxXHCqFLx2U",
"title": "All podcast categories",
"sections": [
{
"uri": "spotify:section:example",
"title": "Categories",
"items": [
{
"uri": "spotify:page:example",
"title": "Arts"
}
]
}
],
"meta": {
"operationName": "browsePage",
"sectionCount": 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 podcast category sections and items from Spotify's all-categories browsePage Pathfinder response.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:page:0JQ5DArNBzkmxXHCqFLx2U",
"title": "All podcast categories",
"sections": [
{
"uri": "spotify:section:example",
"title": "Categories",
"items": [
{
"uri": "spotify:page:example",
"title": "Arts"
}
]
}
],
"meta": {
"operationName": "browsePage",
"sectionCount": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify-podcasts/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"