Turn a page into an RSS feed
Plenty of sites dropped their RSS feeds. Browser Run renders the page and an AI model picks out the articles - title, link, date - then we serialize them to RSS 2.0 XML. The result is a real feed URL (GET /api/feed?url=...) you can paste straight into any reader.
feed.tsPOST/api/feed
const { result } = await env.BROWSER.quickAction("json", {
url,
prompt: "Extract every article: title, link, date",
response_format: { type: "json_schema", schema },
})
// → serialize result.items to RSS 2.0 XMLNo API tokens, no browser to install. The BROWSER binding talks to a real Chromium over Cloudflare's network.
Your RSS feed will appear here