latestOpenAPI 3.0.02026-08-1610635191.3 KB
355890b6b4cc
Podcast
Create a new podcast show for automated distribution
Creates a new podcast show and returns the RSS URL for platform submission.
Platform Setup Workflow:
- Create show via this endpoint → Get RSS URL in response
- Submit RSS URL to:
- Spotify for Podcasters (https://podcasters.spotify.com)
- Apple Podcasts Connect (https://podcastsconnect.apple.com)
- Google Podcasts Manager
- Other podcast platforms
- Start adding episodes via API → Platforms automatically discover new content
Required Metadata: All major podcast platforms require name, description, author, website link, and owner email for contact and verification purposes.
post/podcast/shows
Request body
Example request
{
"name": "AI-Generated Tech Talk",
"description": "Weekly tech discussions generated by AI, covering the latest in technology and innovation.",
"author": "AI Content Creator",
"link": "https://mywebsite.com/podcast",
"imageUrl": "https://mywebsite.com/podcast-artwork.jpg",
"email": "podcast@mywebsite.com",
"language": "Italian"
}Response
Podcast show created successfully with RSS URL for platform distribution
Example response
{
"success": true,
"podcastId": "abc123-def456-ghi789",
"rssUrl": "https://autocontentapi.com/podcast/rss/abc123-def456-ghi789"
}