Generate show notes and chapters from each episode
Podcasts publishing on a schedule. Show notes and chapter markers are the last job before publishing and the one most often skipped.
Chapters with real timestamps, a summary, and quotable pull-lines, produced before the episode goes out.
The flow
- TriggerThe master file lands in storage, or the RSS item publishes.
- SubmitSubmit the audio URL with word_timestamps.
- DeriveChapter boundaries come from topic shifts in the transcript; each gets the timestamp of its first word.
- PublishNotes and chapters write back into your host before the episode goes live.
# submit — returns immediately, does not block curl -X POST https://whipscribe.com/api/v1/transcribe/url \ -H "X-API-Key: $KEY" \ -H "Idempotency-Key: podcast-to-show-notes-and-chapters-$SOURCE_ID" \ -H "Content-Type: application/json" \ -d '{"url":"https://example.com/recording.mp4", "diarize":true, "word_timestamps":true}' → 202 {"job_id":"a1b2…","status":"queued"} # then poll — a self-serve (Pro) key collects by polling curl "https://whipscribe.com/api/v1/jobs/$JOB" -H "X-API-Key: $KEY" → {"status":"processing"} … {"status":"done"}
What it costs
A weekly 45-minute show is about $1.56 a month. $8 per 1,000 minutes — about $0.48 an audio hour — and credits never expire.
Why this needs an API rather than a person
Publishing is a deadline. A step that needs a human at 11pm is a step that gets skipped.
Build it on
Your first transcript in the web app is free, any length, no card — that is how to check accuracy on your own audio before writing any code. The API itself has no free tier: a key is self-serve once your account has credit ($50 minimum, spendable on transcription, and it does not expire). $8 per 1,000 minutes — about $0.48 an audio hour — and credits never expire.
Transcribe a file free →Create an API keyAPI reference