Go from zero to a published podcast in under five minutes. This guide walks you through every step.
Head to the registration page and sign up with your email address and a password. You'll receive a confirmation email — click the link to activate your account, then log in.
After logging in, click Feeds in the navigation bar to go to your feeds dashboard. Click the Add New Feed button in the top right.
Enter a Feed Name (your podcast title) and a Feed Description (a short summary of what your podcast is about), then click Create Feed.
Back on the My Feeds page, you'll see your new feed listed in the table. Each feed has two URLs you can copy:
Click either button and the URL is copied to your clipboard, ready to paste.
Click the Episodes button on your feed row, then click Add New Episode.
Fill in the required fields:
https://your-cdn.com/episode1.mp3).HH:MM:SS format.Optionally, you can also add a Transcript Link, Transcript Type, and Chapters JSON URL for enhanced podcast features.
Click Add Episode to publish.
Now that you have at least one published episode, submit your Podcast Feed URL to directories so listeners can find you.
If you want to publish episodes programmatically — for example, from a script that generates daily audio — you can use the AudioRSS REST API instead of the web dashboard.
Send a POST request to /api/add_episode with your credentials and episode data as JSON:
{
"username": "[email protected]",
"password": "your_password",
"feed_id": "your-feed-uuid",
"title": "Episode Title",
"description": "Episode description",
"audio_url": "https://your-cdn.com/episode.mp3",
"audio_length": "00:30:00",
"publish_date": "2025-01-15",
"read_more_url": "https://example.com"
}
See the Documentation for full API details and optional fields.
Note: There may be slight delays with Apple Podcasts and other directories updating their indexes, which is outside our control. Subscribers will receive your new episodes, but they may take a few minutes to an hour to appear in search and browse.