# Podcast Host Lead Scraper (`scrapemint/podcast-host-leads`) Actor

Search the podcast directory by keyword and turn shows into B2B leads: the host's public email, show name, author, website, category, episode count, and last-episode date. One lead per podcast. Keyless, no API key.

- **URL**: https://apify.com/scrapemint/podcast-host-leads.md
- **Developed by:** [Ken M](https://apify.com/scrapemint) (community)
- **Categories:** Business, Lead generation
- **Stats:** 1 total users, 1 monthly users, 97.5% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Podcast Host Lead Scraper

Turn the podcast directory into a B2B lead list. Search by keyword and get, for every show, the host's **public email**, show name, author, website, category, **episode count**, and **last-episode date**. One lead per podcast.

Podcast hosts are a captive, high-value market for ad networks, hosting platforms, and PR agencies. The host contact email is published in the show's RSS feed, so leads are reachable with no guessing and no API key.

### Who buys this

- **Podcast ad networks and sponsors** finding shows to advertise on.
- **Podcast hosting platforms** prospecting hosts to switch.
- **Guest-booking and podcast-PR agencies** pitching clients as guests.
- **Podcast tool SaaS** (transcription, editing, analytics).

### How it works

1. For each keyword it searches the podcast directory (keyless iTunes Search API), returning the feed URL, episode count, genres, and last release date.
2. For each show it reads the RSS feed header for the host's public owner email, website, and language.
3. Each show is scored and tiered, then pushed as one lead.

### Output

One row per podcast:

```json
{
  "name": "Marketing Happy Hour",
  "author": "Marketing Happy Hour",
  "ownerName": "Cassie",
  "ownerEmail": "cassie@cammmedia.com",
  "website": "https://www.marketinghappyhr.com/",
  "primaryGenre": "Marketing",
  "genres": ["Marketing", "Business"],
  "episodes": 274,
  "lastEpisodeDate": "2026-06-25T09:00:00Z",
  "active": true,
  "language": "en",
  "country": "USA",
  "applePodcastUrl": "https://podcasts.apple.com/us/podcast/...",
  "tier": "qualified_lead",
  "leadScore": 91
}
```

### Tiers and pricing

Pay per lead. The first 10 `qualified_lead` per run are free so you can validate output.

| Tier | Meaning | Price |
| --- | --- | --- |
| `listing` | Show data, no public email or website | $0.01 |
| `lead` | A public host email or a website | $0.02 |
| `qualified_lead` | An active show with a public email and 10+ episodes | $0.05 |

The directory search is keyless and the RSS is fetched header-only, so runs are fast and cheap, and a single run can return thousands of leads.

### Input

| Field | Default | Notes |
| --- | --- | --- |
| `keywords` | `[]` | Topics or niches, one search each. |
| `country` | `US` | Directory store country. |
| `maxLeads` | `200` | Cap total leads per run. |
| `maxPerKeyword` | `100` | Shows per keyword (up to 200). |
| `minEpisodes` | `0` | Drop shows below this episode count. |
| `activeSinceDays` | `0` | Only keep shows with a recent episode. |
| `requireEmail` | `false` | Only keep shows with a host email. |

### Notes

- Some shows on large hosts route the owner email to a generic platform address; the website is always surfaced as a second contact path, and noreply addresses are filtered out.
- Respect the directory's terms and applicable outreach laws when contacting hosts.

# Actor input Schema

## `keywords` (type: `array`):

Topics or niches to find podcasts for (e.g. marketing, true crime, startup, fitness).

## `country` (type: `string`):

Two-letter store country code for the directory. Default US.

## `maxLeads` (type: `integer`):

Cap total leads scored per run.

## `maxPerKeyword` (type: `integer`):

Cap shows taken from each keyword (iTunes returns up to 200).

## `minEpisodes` (type: `integer`):

Drop shows with fewer episodes than this. Zero keeps everything.

## `activeSinceDays` (type: `integer`):

Only keep shows with a new episode in this many days. Zero keeps all, active or dormant.

## `requireEmail` (type: `boolean`):

Skip shows whose RSS feed has no public owner email.

## `concurrency` (type: `integer`):

Feeds fetched in parallel.

## Actor input object example

```json
{
  "keywords": [
    "marketing",
    "startup",
    "real estate"
  ],
  "country": "US",
  "maxLeads": 200,
  "maxPerKeyword": 100,
  "minEpisodes": 0,
  "activeSinceDays": 0,
  "requireEmail": false,
  "concurrency": 8
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keywords": [
        "marketing",
        "startup",
        "real estate"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapemint/podcast-host-leads").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "keywords": [
        "marketing",
        "startup",
        "real estate",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("scrapemint/podcast-host-leads").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keywords": [
    "marketing",
    "startup",
    "real estate"
  ]
}' |
apify call scrapemint/podcast-host-leads --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapemint/podcast-host-leads",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/zwLvNqGJDl3l9kvyU/builds/CsbjSJdyRPRrsWw6y/openapi.json
