PodPeopleDB automatically imports host and guest information from podcast feeds that use the podcast:person namespace. This works at both the podcast level and episode level.
Add person tags to your podcast's main feed for hosts who appear regularly:
<channel>
<title>My Awesome Podcast</title>
<podcast:person role="host" img="http://example.com/jane.jpg" href="http://jane.example.com">Jane Smith</podcast:person>
<podcast:person role="host" img="http://example.com/john.jpg">John Doe</podcast:person>
...
</channel>
Add person tags to individual episodes for guests or episode-specific hosts:
<item>
<title>Episode 42: Special Guest Interview</title>
<podcast:person role="guest" img="http://example.com/guest.jpg" href="http://guest.example.com">Dr. Expert</podcast:person>
<podcast:person role="host" group="Main Show">Jane Smith</podcast:person>
...
</item>
Important: If your podcast uses podcast:person tags, manual submissions will be disabled to prevent conflicts with your authoritative feed data.
For podcasts that don't use the podcast:person tag, you can manually submit host and guest information at two levels:
Submit hosts who appear regularly across multiple episodes:
Submit guests who appeared on specific episodes:
podpeople.db/episode/{podcastId}/{audioUrl}
Podcast apps and developers can enhance their user experience by integrating with PodPeopleDB episode pages:
Generate direct links to episode pages for guest submissions:
// URL Format
https://podpeople.db/episode/{podcastId}/{encodedAudioUrl}
// Example
https://podpeople.db/episode/123456/https%3A%2F%2Fexample.com%2Fepisode.mp3
Check the API response for each episode:
episode.can_add_guests: true
- Show guest submission optionsepisode.can_add_guests: false
- Podcast uses Podcast 2.0 tags, no manual submissions neededepisode.guest_count > 0
- Episode already has guest dataTo maintain data quality, all manual submissions are reviewed before being added to the database. This typically takes an hour or two at most. If you'd prefer to add your own hosts without approval you can always self-host PodPeopleDB if you'd prefer.