Endpoint Playground
Test Crawlora's Apple Podcasts Show Dataset Item 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/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Apple Podcasts numeric show id (e.g. 173001861) |
{
"code": 200,
"msg": "OK",
"data": {
"id": 173001861,
"artist_name": "Dan Carlin",
"collection_name": "Dan Carlin's Hardcore History",
"feed_url": "https://feeds.example.com/hardcorehistory",
"track_count": 75,
"country": "USA",
"primary_genre_name": "History",
"genre_ids": [
"1301",
"1487"
],
"genres": [
"Arts",
"History"
],
"discovery_source": "chart",
"discovery_country": "us",
"discovery_genre_id": 1487,
"discovery_collection": "toppodcasts",
"seed_rank": 3,
"run_id": "apple-podcasts-20260721",
"crawled_at": "2026-07-21T00:00:00Z",
"schema_version": 1
}
}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 one crawled Apple Podcasts show record by id from dataset id enum value `apple-podcasts-shows`. 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": {
"id": 173001861,
"artist_name": "Dan Carlin",
"collection_name": "Dan Carlin's Hardcore History",
"feed_url": "https://feeds.example.com/hardcorehistory",
"track_count": 75,
"country": "USA",
"primary_genre_name": "History",
"genre_ids": [
"1301",
"1487"
],
"genres": [
"Arts",
"History"
],
"discovery_source": "chart",
"discovery_country": "us",
"discovery_genre_id": 1487,
"discovery_collection": "toppodcasts",
"seed_rank": 3,
"run_id": "apple-podcasts-20260721",
"crawled_at": "2026-07-21T00:00:00Z",
"schema_version": 1
}
}curl "https://api.crawlora.net/api/v1/datasets/apple-podcasts-shows/items/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"