Audio Feed

A personal podcast generator. It turns articles and RSS sources into audio you can listen to in any podcast app — read aloud, or discussed by two voices. Speech is synthesised with Gemini 3.8 Flash TTS.

Two ways to hear an article

Subscribing

Every listener gets a private feed token. That token is the credential — podcast apps cannot log in, so anyone holding your feed URL can read your feed. Treat it like a password and do not share it.

Paste one into Pocket Casts, Apple Podcasts, Overcast or anything else that accepts an RSS URL. Episodes appear once synthesis finishes.

Send an article to audio

Give it a link and it will be queued, synthesised, and added to your feed. Accounts need admin approval before anything is generated, because synthesis is the part that costs money.

A public link to the article you want read. Enter a full URL, including https://
The token from your feed URL. Sent as a request header, never in the address bar. A feed token is required.
How should it sound?

Subscribe to an RSS feed

Follow an entire publication. Recent posts will be queued and converted to audio as they are published.

The XML feed address of the blog or newsletter. Enter a full feed URL, including https://
Defaults to the title in the feed.
Audio presentation mode

Prefer the command line?

The same request, without the form:

curl -X POST https://audio-feed.paulkinlan-ea.deno.net/api/ingest \
  -H 'content-type: application/json' \
  -H 'x-feed-token: YOUR_TOKEN' \
  -d '{"url":"https://example.com/an-article","mode":"direct"}'