Endpoint Playground
Test Crawlora's Apple Podcasts Show Episodes 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/apple-podcasts/show/173001861/episodes?country=us&lang=en-us&limit=50" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 173001861 | Apple Podcasts show ID |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en-us | Result language tag |
| limit | integer | No | 50 | Number of episodes to return |
{
"code": 200,
"msg": "OK",
"data": {
"show": {
"id": 173001861,
"collection_name": "Dan Carlin's Hardcore History"
},
"episodes": [
{
"id": 1000742374669,
"show_id": 173001861,
"title": "Mania for Subjugation III",
"duration_millis": 15253000
}
]
}
}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 a show and its public Apple Podcasts episodes from Apple's iTunes Lookup API.
{
"code": 200,
"msg": "OK",
"data": {
"show": {
"id": 173001861,
"collection_name": "Dan Carlin's Hardcore History"
},
"episodes": [
{
"id": 1000742374669,
"show_id": 173001861,
"title": "Mania for Subjugation III",
"duration_millis": 15253000
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-podcasts/show/<id>/episodes" \
-H "x-api-key: $CRAWLORA_API_KEY"