Endpoint Playground
Test Crawlora's Facet Apple Podcasts shows dataset API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/apple-podcasts-shows/facets?facet=genre" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| facet | string | Yes | genre | Facet enum: genre, genre_id, country, content_advisory_rating, run_id |
| q | string | No | Full-text query over show title and artist name, max 256 characters | |
| genre | string | No | Exact primary-genre filter, max 128 characters | |
| genre_id | string | No | Exact Apple Podcasts genre id filter, max 128 characters | |
| country | string | No | Exact storefront country filter, max 128 characters | |
| explicitness | string | No | Exact explicitness filter, max 128 characters | |
| run_id | string | No | Exact crawl run-id filter, max 128 characters | |
| min_track_count | integer | No | Minimum episode count (track_count), 0 or greater |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "apple-podcasts-shows",
"facet": "genre",
"items": [
{
"value": "History",
"count": 312
},
{
"value": "Comedy",
"count": 287
}
]
}
}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 terms aggregation counts for the Apple Podcasts shows dataset. Facet enum: `genre`, `genre_id`, `country`, `content_advisory_rating`, `run_id`. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "apple-podcasts-shows",
"facet": "genre",
"items": [
{
"value": "History",
"count": 312
},
{
"value": "Comedy",
"count": 287
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/apple-podcasts-shows/facets?facet=<facet>" \
-H "x-api-key: $CRAWLORA_API_KEY"