A lightning-fast, minimalist API to transform any RSS feed into structured JSON data
Optimized multi-core processing
XML validation & rate limiting
Built-in caching & error handling
// The JSON result will appear here // Click "Convert" to transform the RSS feed
/rss
Parameter | Type | Required | Description |
---|---|---|---|
url | string | Yes | The URL of the RSS feed to convert |
Status | Description |
---|---|
200 | Success |
400 | Bad request (invalid URL or RSS feed) |
429 | Rate limit exceeded |
500 | Server error |
504 | Request timeout |
curl "/rss?url=https://news.ycombinator.com/rss"
fetch(`${window.location.origin}/rss?url=https://news.ycombinator.com/rss`)
.then(response => response.json())
.then(data => console.log(data));