latestOpenAPI 3.0.02026-08-1610635191.3 KB

355890b6b4cc

Podcast

Create a new podcast show with image upload for automated distribution

Creates a new podcast show with image upload and returns the RSS URL for platform submission. This endpoint accepts multipart/form-data to allow direct image upload alongside podcast metadata.

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/with-image

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

imageUrlstring

URL of the uploaded podcast artwork image

Example response

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