# Tech Podcast Episode Archive Scraper

**Use case:** 

Extract full episode archives and audio URLs from popular tech podcasts. Receive detailed show metadata and episode information in CSV or JSON.

## Input

```json
{
  "searchTerms": [
    "artificial intelligence"
  ],
  "podcastIds": [],
  "rssFeeds": [
    "https://feeds.simplecast.com/54nAGcIl",
    "https://feeds.transistor.fm/build-your-saas"
  ],
  "country": "us",
  "maxPodcastsPerSearch": 50,
  "maxEpisodesPerPodcast": 200,
  "useRssForFullArchive": true,
  "minReleaseDate": null,
  "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.