Endpoint Playground
Test Crawlora's Apple Podcasts Show 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?country=us&lang=en-us" \
-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 |
{
"code": 200,
"msg": "OK",
"data": {
"id": 173001861,
"artist_name": "Dan Carlin",
"collection_name": "Dan Carlin's Hardcore History",
"track_name": "Dan Carlin's Hardcore History",
"url": "https://podcasts.apple.com/us/podcast/dan-carlins-hardcore-history/id173001861?uo=4",
"feed_url": "https://feeds.feedburner.com/dancarlin/history?format=xml",
"track_count": 12
}
}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 show metadata from Apple's public iTunes Lookup API.
{
"code": 200,
"msg": "OK",
"data": {
"id": 173001861,
"artist_name": "Dan Carlin",
"collection_name": "Dan Carlin's Hardcore History",
"track_name": "Dan Carlin's Hardcore History",
"url": "https://podcasts.apple.com/us/podcast/dan-carlins-hardcore-history/id173001861?uo=4",
"feed_url": "https://feeds.feedburner.com/dancarlin/history?format=xml",
"track_count": 12
}
}curl "https://api.crawlora.net/api/v1/apple-podcasts/show/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"