Public Playground

Preview the endpoint before sending a live request

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.

Playground

Retrieve Apple Podcasts show episodes API Playground

Returns a show and its public Apple Podcasts episodes from Apple's iTunes Lookup API.

GETapiKey1 credit/requestapplepodcasts.showEpisodesResponseDocApplePodcasts

Endpoint

Choose one catalog endpoint for this request.

5 shown
GETapiKey1 credit/requestapplepodcasts.showEpisodesResponseDocApplePodcasts
GET /apple-podcasts/show/{id}/episodes

Retrieve Apple Podcasts show episodes

Returns a show and its public Apple Podcasts episodes from Apple's iTunes Lookup API.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Path parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

MCP tool

MCP URL

https://mcp.crawlora.net/mcp

Tool name

apple_podcasts.show_episodes

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "show": {
      "id": 173001861,
      "collection_name": "Dan Carlin's Hardcore History"
    },
    "episodes": [
      {
        "id": 1000742374669,
        "show_id": 173001861,
        "title": "Mania for Subjugation III",
        "duration_millis": 15253000
      }
    ]
  }
}

Endpoint details

Returns a show and its public Apple Podcasts episodes from Apple's iTunes Lookup API.

Method
GET
Path
/apple-podcasts/show/{id}/episodes
Authentication
apiKey
Credit cost
1 credit/request
Platform
ApplePodcasts
Parameters
5 documented fields

Request parameters

id:pathcountry:querylang:querylimit:queryx-api-key:header

Response schema fields

codedatadata.episodesdata.episodes[].artwork_url_160data.episodes[].artwork_url_60data.episodes[].artwork_url_600data.episodes[].closed_captioningdata.episodes[].content_advisory_ratingdata.episodes[].countrydata.episodes[].descriptiondata.episodes[].duration_millisdata.episodes[].episode_content_type

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "show": {
      "id": 173001861,
      "collection_name": "Dan Carlin's Hardcore History"
    },
    "episodes": [
      {
        "id": 1000742374669,
        "show_id": 173001861,
        "title": "Mania for Subjugation III",
        "duration_millis": 15253000
      }
    ]
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/apple-podcasts/show/<id>/episodes" \
  -H "x-api-key: <api-key>"