# Get Podcast Episodes by Apple Podcasts ID

**Use case:** 

Look up a podcast by its Apple Podcasts collection ID and pull its most recent episodes with metadata.

## Input

```json
{
  "searchTerms": [],
  "lookupIds": [
    "863897795"
  ],
  "country": "US",
  "maxResults": 25,
  "includeEpisodes": true,
  "episodeLimit": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "episodes": {
    "label": "Episodes",
    "format": "array"
  },
  "collectionName": {
    "label": "Podcast",
    "format": "string"
  },
  "artistName": {
    "label": "Author",
    "format": "string"
  },
  "lookupId": {
    "label": "Lookup ID",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "trackName": {
    "label": "Episode",
    "format": "text"
  },
  "releaseDate": {
    "label": "Released",
    "format": "string"
  },
  "trackTimeMillis": {
    "label": "Duration (ms)",
    "format": "number"
  },
  "episodeUrl": {
    "label": "Audio",
    "format": "link"
  },
  "episodeGuid": {
    "label": "GUID",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [iTunes Podcast Search & Lookup](https://apify.com/leorochasantos/itunes-podcast-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/leorochasantos/itunes-podcast-scraper) to learn more, explore other use cases, and run it yourself.