Endpoint Playground
Test Crawlora's Apple Podcasts Episodes Search 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/episodes/search?term=hardcore+history&country=us&lang=en-us&limit=50&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| term | string | Yes | hardcore history | Search term |
| country | string | No | us | Two-letter storefront country code |
| lang | string | No | en-us | Result language tag |
| limit | integer | No | 50 | Number of episodes per page |
| page | integer | No | 1 | Search page number (1-based) |
{
"code": 200,
"msg": "OK",
"data": [
{
"id": 1000415837465,
"show_id": 173001861,
"show_name": "Dan Carlin's Hardcore History",
"title": "Supernova in the East I",
"url": "https://podcasts.apple.com/us/podcast/supernova-in-the-east-i/id173001861?i=1000415837465&uo=4",
"duration_millis": 16097000
}
]
}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 Apple Podcasts episodes from Apple's public iTunes Search API.
{
"code": 200,
"msg": "OK",
"data": [
{
"id": 1000415837465,
"show_id": 173001861,
"show_name": "Dan Carlin's Hardcore History",
"title": "Supernova in the East I",
"url": "https://podcasts.apple.com/us/podcast/supernova-in-the-east-i/id173001861?i=1000415837465&uo=4",
"duration_millis": 16097000
}
]
}curl "https://api.crawlora.net/api/v1/apple-podcasts/episodes/search?term=<term>" \
-H "x-api-key: $CRAWLORA_API_KEY"