Endpoint Playground
Test Crawlora's Apple Podcasts New 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/new?country=us" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | No | us | Two-letter storefront country code |
{
"code": 200,
"msg": "OK",
"data": {
"shelves": [
{
"title": "New Shows",
"items": [
{
"id": 6789198595,
"kind": "podcast",
"name": "Better in Person",
"artist_name": "Freakonomics Radio",
"url": "https://podcasts.apple.com/us/podcast/better-in-person/id6789198595",
"artwork_url": "https://is1-ssl.mzstatic.com/image/thumb/.../mza_.jpg/{w}x{h}bb.{f}",
"genres": [
"Documentary",
"Podcasts",
"Society & Culture"
]
}
]
}
]
}
}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 the curated editorial shelves from podcasts.apple.com/{country}/new (New Shows, New Seasons, New Trailers, Essentials, and other seasonal spotlights). Shelves that merely mirror a Charts Rankings query are omitted here since `/apple-podcasts/charts/rankings` already covers that data.
{
"code": 200,
"msg": "OK",
"data": {
"shelves": [
{
"title": "New Shows",
"items": [
{
"id": 6789198595,
"kind": "podcast",
"name": "Better in Person",
"artist_name": "Freakonomics Radio",
"url": "https://podcasts.apple.com/us/podcast/better-in-person/id6789198595",
"artwork_url": "https://is1-ssl.mzstatic.com/image/thumb/.../mza_.jpg/{w}x{h}bb.{f}",
"genres": [
"Documentary",
"Podcasts",
"Society & Culture"
]
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-podcasts/new" \
-H "x-api-key: $CRAWLORA_API_KEY"