latestOpenAPI 3.0.02026-08-1610635191.3 KB

355890b6b4cc

Podcast

Import podcast from RSS feed URL

Imports an entire podcast show and its episodes from an existing RSS feed URL. This is perfect for migrating podcasts from other platforms (Buzzsprout, Anchor, Podbean, etc.) to AutoContent API.

Features:

  • Preserves ALL RSS metadata (language, copyright, categories, season/episode numbers, etc.)
  • Smart duplicate detection using GUIDs
  • Automatically imports and stores podcast artwork
  • Updates existing podcasts if they already exist
  • Generates new RSS feed URL that maintains all original metadata

Migration Workflow:

  1. Import your existing podcast from any platform using this endpoint
  2. All metadata is preserved (language, categories, episode numbers, etc.)
  3. Get a new RSS URL that you can submit to Spotify, Apple Podcasts, etc.
  4. Your podcast continues seamlessly with all historical data intact
post/podcast/import-rss

Request body

rssUrlstring uri required

The RSS feed URL to import from (must end with .rss or contain 'rss' or 'feed')

emailstring email

Optional owner email override when the source RSS feed does not include itunes:owner email.

Example request

{
  "rssUrl": "https://example.com/podcast/feed.rss",
  "email": "podcast@mywebsite.com"
}

Response

Podcast imported successfully

successboolean
podcastIdstring

The ID of the imported/updated podcast show

rssUrlstring

Your new RSS feed URL for distribution to podcast platforms

Example response

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