Endpoint Playground
Test Crawlora's Apple Podcasts Show Related 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/related?country=us&limit=20" \
-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 |
| limit | integer | No | 20 | Number of related shows to return, default 20, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"show_id": 1886587874,
"shows": [
{
"id": 1748194675,
"name": "选修课 Universus",
"artist_name": "Zhichen Zhao",
"url": "https://podcasts.apple.com/us/podcast/%E9%80%89%E4%BF%AE%E8%AF%BE-universus/id1748194675",
"artwork_url": "https://is1-ssl.mzstatic.com/image/thumb/.../mza_.jpg/{w}x{h}bb.{f}",
"genres": [
"Society & Culture",
"Podcasts",
"Education"
]
}
]
}
}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 "You Might Also Like" rail for a single show, sourced from the modern podcasts.apple.com show page's listener-cohort recommendation data.
{
"code": 200,
"msg": "OK",
"data": {
"show_id": 1886587874,
"shows": [
{
"id": 1748194675,
"name": "选修课 Universus",
"artist_name": "Zhichen Zhao",
"url": "https://podcasts.apple.com/us/podcast/%E9%80%89%E4%BF%AE%E8%AF%BE-universus/id1748194675",
"artwork_url": "https://is1-ssl.mzstatic.com/image/thumb/.../mza_.jpg/{w}x{h}bb.{f}",
"genres": [
"Society & Culture",
"Podcasts",
"Education"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/apple-podcasts/show/<id>/related" \
-H "x-api-key: $CRAWLORA_API_KEY"