# Find B2B SaaS podcasts with host emails

**Use case:** 

Searches Apple Podcasts for shows about B2B SaaS and startup founders, keeps only those that published in the last 90 days and expose a host or owner email in their RSS feed, and returns a pitch ready list with show name, episode count, categories and the contact address.

## Input

```json
{
  "keywords": [
    "B2B SaaS",
    "startup founders"
  ],
  "requireEmail": true,
  "activeWithinDays": 90,
  "guestFriendlyOnly": false,
  "country": "US",
  "maxPodcasts": 100,
  "onlyNewPodcasts": false
}
```

## Output

```json
{
  "artworkUrl": {
    "label": "Artwork",
    "format": "string"
  },
  "podcastName": {
    "label": "Podcast",
    "format": "string"
  },
  "hostName": {
    "label": "Host",
    "format": "string"
  },
  "email": {
    "label": "Contact email",
    "format": "string"
  },
  "guestFriendly": {
    "label": "Books guests",
    "format": "boolean"
  },
  "isActive": {
    "label": "Active",
    "format": "boolean"
  },
  "episodeCount": {
    "label": "Episodes",
    "format": "number"
  },
  "latestEpisodeDate": {
    "label": "Latest episode",
    "format": "string"
  },
  "appleUrl": {
    "label": "Apple Podcasts link",
    "format": "string"
  },
  "isNew": {
    "label": "New",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Podcast Guesting Lead Finder: Find Shows & Host Emails](https://apify.com/fayoussef/podcast-guest-finder.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/podcast-guest-finder.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fayoussef/podcast-guest-finder.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
