Endpoint Playground
Test Crawlora's Apple Podcasts Charts 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/charts?collection=toppodcasts&category=1303&country=us&limit=50" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| collection | string | No | toppodcasts | Chart collection |
| category | integer | No | 1303 | Numeric Apple podcast genre ID |
| country | string | No | us | Two-letter storefront country code |
| limit | integer | No | 50 | Number of chart items to return |
{
"code": 200,
"msg": "OK",
"data": [
{
"id": 360084272,
"name": "The Joe Rogan Experience",
"artist_name": "Joe Rogan",
"url": "https://podcasts.apple.com/us/podcast/the-joe-rogan-experience/id360084272?uo=2",
"genre": "Comedy",
"genre_id": 1303
}
]
}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 Apple Podcasts show chart rankings from public iTunes RSS JSON feeds. Supported collections are `toppodcasts` and `topaudiopodcasts`.
{
"code": 200,
"msg": "OK",
"data": [
{
"id": 360084272,
"name": "The Joe Rogan Experience",
"artist_name": "Joe Rogan",
"url": "https://podcasts.apple.com/us/podcast/the-joe-rogan-experience/id360084272?uo=2",
"genre": "Comedy",
"genre_id": 1303
}
]
}curl "https://api.crawlora.net/api/v1/apple-podcasts/charts" \
-H "x-api-key: $CRAWLORA_API_KEY"