RSS-2-JSON

SIMPLE • FAST • RELIABLE

RSS to JSON Converter

A lightning-fast, minimalist API to transform any RSS feed into structured JSON data

High Performance

Optimized multi-core processing

Secure Processing

XML validation & rate limiting

Production Ready

Built-in caching & error handling

Try It Now

GET
/rss?url=
// The JSON result will appear here
// Click "Convert" to transform the RSS feed

API Reference

GET /rss

Query Parameters

Parameter Type Required Description
url string Yes The URL of the RSS feed to convert

Response Codes

Status Description
200 Success
400 Bad request (invalid URL or RSS feed)
429 Rate limit exceeded
500 Server error
504 Request timeout

cURL

curl "/rss?url=https://news.ycombinator.com/rss"

JavaScript

fetch(`${window.location.origin}/rss?url=https://news.ycombinator.com/rss`)
  .then(response => response.json())
  .then(data => console.log(data));