AudioRSS Documentation

Getting Started

  1. Create an account — Sign up for a free AudioRSS account, or log in if you already have one.

  2. Create a feed — Go to My Feeds and click Add New Feed. Give your podcast a name and description.

  3. Add episodes — Click Episodes on your feed, then Add New Episode. Provide the episode title, description, audio file URL, length, and publish date.

  4. Copy your feed URL — From the My Feeds page, copy either the Podcast Feed URL (for Apple Podcasts, Spotify, etc.) or the Flash Briefing URL (for Alexa).

  5. Submit to directories — Paste your Podcast Feed URL into Apple Podcasts Connect, Spotify for Podcasters, or any other podcast directory.

API Usage

You can automate episode publishing using our REST API. Send a POST request to /api/add_episode with a JSON body:

{
  "username": "[email protected]",
  "password": "your_password",
  "feed_id": "your-feed-uuid",
  "title": "Episode Title",
  "description": "Episode description",
  "audio_url": "https://example.com/audio.mp3",
  "audio_length": "00:30:00",
  "publish_date": "2025-01-15",
  "read_more_url": "https://example.com"
}

Optional fields: transcript_link, transcript_type, chapters_json_link.