Text to Published Podcast RSS

👤 cast0 📦 v1.0.0 ⭐ 4.0 ⬇️ 541 下載
🎨 設計多媒體 免費 🔑 需 API Key

📖 技能介紹


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 to Published Podcast RSS - cast0 API

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

Setup

Ask the user to create a podcast (= show) at https://cast0.ai. The dashboard is where the user can:

  • Get the API key and RSS feed URL
  • Change podcast settings (voice, TTS model, speed, name)

Each API key is tied to one podcast. Once you have the key, save it:

echo "CAST0_API_KEY=pk_xxxxx" >> .env

Create an Episode

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".

Poll for Completion

Generation is async: queuedprocessingdone | 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.

List Episodes

curl https://api.cast0.ai/api/episodes \
  -H "Authorization: Bearer pk_xxxxx"

RSS Feed

Every podcast has a public feed URL (no auth):

https://api.cast0.ai/rss/FEED_TOKEN

Subscribe in any podcast app. New episodes appear automatically after generation.

小蔥技能7w4.net持續更新中。

Endpoints

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

🤖 AI 評測

這是一個專注於播客生成的輕量級 Skill,文件簡潔明瞭,提供了完整的 API 使用示例,能幫助使用者快速上手將文本轉換為播客節目。主要優點是步驟清晰、示例實用;不足是缺少常見問題解答和錯誤處理說明。對於需要將文字內容快速釋出為播客的使用者來說質量良好,但使用過程中可能需要參考官方文件補充一些細節。

📊 多維度評分

適應性4
規範性4
有效性4.4
可靠性3.5
可信度4.2

📁 包含檔案 (2 個)

📄 SKILL.md 2.1 KB
📄 _meta.json 148 B