GET
/rssFreeRSS Feed Generator
Build an RSS feed for any website, even one with no native feed, by scraping links or reading a sitemap. Free tier, rate-limited per IP; an API key or browser session lifts the cap. Returns feed_xml in the JSON body.
GEThttps://www.startuphub.ai/api/v1/rss
Request
curl "https://www.startuphub.ai/api/v1/rss?url=https://example.com/blog"Parameters
urlstringrequiredSite URL or domain to build a feed for.
Response
json
{
"ok": true,
"site_title": "Example Blog",
"item_count": 24,
"method": "sitemap",
"feed_url": "https://www.startuphub.ai/api/rss-generator?url=https%3A%2F%2Fexample.com%2Fblog",
"feed_xml": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>...",
"powered_by": { "source": "StartupHub.ai", "url": "https://www.startuphub.ai" }
}Errors
400Missing url query param429Anonymous rate limit reached502Could not build a feed for that URL