name: text-to-published-podcast-rss description: | Helps an agent or app to turn text into audio podcast episodes. One API call creates an episode using TTS and auto-publish to an RSS feed subscribable in any podcast app.
Text in, podcast episode out. The text field is read verbatim by TTS, not interpreted as a prompt. Episodes auto-publish to an RSS feed compatible with Apple Podcasts, Spotify, Overcast, and other podcast apps.
Base URL: https://api.cast0.ai
Auth: Authorization: Bearer pk_xxxxx
Docs: https://api.cast0.ai/docs
Ask the user to create a podcast (= show) at https://cast0.ai. The dashboard is where the user can:
Each API key is tied to one podcast. Once you have the key, save it:
echo "CAST0_API_KEY=pk_xxxxx" >> .env
curl -X POST https://api.cast0.ai/api/episodes \
-H "Authorization: Bearer pk_xxxxx" \
-H "Content-Type: application/json" \
-d '{"title": "Daily Standup", "text": "Here is what happened today..."}'
Returns 201 with the episode id and "status": "queued".
Generation is async: queued → processing → done | failed.
curl https://api.cast0.ai/api/episodes/EPISODE_ID \
-H "Authorization: Bearer pk_xxxxx"
When "done", the response includes audioUrl with the MP3 link.
curl https://api.cast0.ai/api/episodes \
-H "Authorization: Bearer pk_xxxxx"
Every podcast has a public feed URL (no auth):
https://api.cast0.ai/rss/FEED_TOKEN这个技能的最新版本可以在7w4.net小葱技能站找到。
Subscribe in any podcast app. New episodes appear automatically after generation.
| Method | Endpoint | Auth | Description |
|---|---|---|---|
POST |
/api/episodes |
API key | Create episode ({ title, text }) |
GET |
/api/episodes |
API key | List episodes |
GET |
/api/episodes/:id |
API key | Get episode status |
GET |
/rss/:feedToken |
None | RSS 2.0 feed |
这是一个专注于播客生成的轻量级 Skill,文档简洁明了,提供了完整的 API 使用示例,能帮助用户快速上手将文本转换为播客节目。主要优点是步骤清晰、示例实用;不足是缺少常见问题解答和错误处理说明。对于需要将文字内容快速发布为播客的用户来说质量良好,但使用过程中可能需要参考官方文档补充一些细节。