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:

  1. Create show via this endpoint → Get RSS URL in response
  2. Submit RSS URL to:
  3. 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

namestring required

Podcast show name (displayed on Spotify, Apple Music, etc.)

descriptionstring required

Show description for platform listings and RSS feed

authorstring required

Host/author name displayed on podcast platforms

linkstring uri required

Official website URL for the podcast show

imageUrlstring uri required

URL of the podcast show image/artwork

emailstring email required

Owner email address for RSS feed and platform registration

languagestring

Primary language for generated podcast episodes (defaults to English)

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

successboolean
podcastIdstring

Unique ID of the created podcast show

rssUrlstring

RSS feed URL to submit to Spotify, Apple Music, and other platforms

Example response

{
  "success": true,
  "podcastId": "abc123-def456-ghi789",
  "rssUrl": "https://autocontentapi.com/podcast/rss/abc123-def456-ghi789"
}