# Scrape Apple Podcasts Episodes for 2026

**Use case:** 

Extract episodes and audio URLs from Apple Podcasts focused on news and current events released in 2026, with full show metadata.

## Input

```json
{
  "searchTerms": [
    "news current events"
  ],
  "podcastIds": [],
  "rssFeeds": [],
  "country": "us",
  "maxPodcastsPerSearch": 50,
  "maxEpisodesPerPodcast": 100,
  "useRssForFullArchive": false,
  "minReleaseDate": "2026-01-01",
  "maxReleaseDate": null,
  "explicit": "all",
  "minDurationSeconds": 0,
  "fetchShowMetadata": true
}
```

## Output

```json
{
  "episodeTitle": {
    "label": "Episode",
    "format": "text"
  },
  "podcastName": {
    "label": "Podcast",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "releaseDate": {
    "label": "Released",
    "format": "date"
  },
  "durationSec": {
    "label": "Duration (sec)",
    "format": "number"
  },
  "primaryGenre": {
    "label": "Primary genre",
    "format": "text"
  },
  "audioUrl": {
    "label": "Audio URL",
    "format": "link"
  },
  "episodeAppleUrl": {
    "label": "Apple episode URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple Podcasts Scraper — Episodes, Audio URLs & RSS Data](https://apify.com/logiover/apple-podcasts-episode-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/apple-podcasts-episode-scraper) to learn more, explore other use cases, and run it yourself.