Overview
RSS feed to JSON is a free, no-auth API that converts any RSS feed URL into structured JSON data. It is great for developers who want to display blog posts, news, or podcast episodes in their applications without parsing XML. Simply pass the RSS feed URL as a query parameter and receive a clean JSON response.
Beginner Tip
This API requires no API key and works with virtually any public RSS feed URL. Encode the feed URL as a query parameter—for example, use encodeURIComponent() in JavaScript before appending it to the request URL.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://api.rss2json.com/v1/api.json?rss_url=https://feeds.bbci.co.uk/news/rss.xml
- Result
- HTTP 200 · application/json · 8,281 bytes · compressed
- Response time
- 307 ms (median of 3) · fastest 282 ms
- Transport
- TLSv1.3 · TLS_AES_256_GCM_SHA384 · certificate issued by Google Trust Services
- Browser CORS
- Allowed — Access-Control-Allow-Origin: *
- Served by
- cloudflare
- Answered
- 8 of 8 weekly checks (100%, since 2026-07-31)
- Recorded
- 2026-09-21
Fields Returned
Top-level fields present in the response we captured, with the type and value we actually received.
| Field | Type | Value received |
|---|---|---|
| title | string | Airlines criticise air traffic control as sec… |
| pubDate | string (date) | 2026-09-21 16:39:16 |
| link | string (url) | https://www.bbc.co.uk/news/articles/cqp80p78m… |
| guid | string (url) | https://www.bbc.co.uk/news/articles/cqp80p78m… |
| author | string | |
| thumbnail | string (url) | https://ichef.bbci.co.uk/ace/standard/240/cps… |
| description | string | Airlines are angry about the delays, with Eas… |
| content | string | Airlines are angry about the delays, with Eas… |
| enclosure | object | {1 fields} |
| categories | array | [0 items] |
Captured Response
Captured from a real request to https://api.rss2json.com/v1/api.json?rss_url=https://feeds.bbci.co.uk/news/rss.xml on 2026-09-21. Long arrays and nested objects are truncated to keep the shape readable.
{
"status": "ok",
"feed": {
"url": "https://feeds.bbci.co.uk/news/rss.xml",
"title": "BBC News",
"link": "https://www.bbc.co.uk/news",
"author": "",
"description": "BBC News - News Front Page",
"image": "https://news.bbcimg.co.uk/nol/shared/img/bbc_news_120x60.gif"
},
"items": [
{
"title": "Airlines criticise air traffic control as second glitch causes more disruption",
"pubDate": "2026-09-21 16:39:16",
"link": "https://www.bbc.co.uk/news/articles/cqp80p78mxx5o?at_medium=RSS&at_campaign=rss",
"guid": "https://www.bbc.co.uk/news/articles/cqp80p78mxx5o#1",
"author": "",
"thumbnail": "https://ichef.bbci.co.uk/ace/standard/240/cpsprodpb/5fc4/live/2a039960-b5d0-11f1-b1d1-571ed4d7ff2c.jpg",
"description": "Airlines are angry about the delays, with EasyJet saying the latest incident \"once again calls into question the resilience\" of the system.",
"content": "Airlines are angry about the delays, with EasyJet saying the latest incident \"once again calls into question the resilience\" of the system.",
"enclosure": {
"…": "(1 more fields)"
},
"categories": []
}
]
} Field Reference
status Indicates whether the request succeeded ("ok") or failed. feed Metadata about the RSS feed including title, link, and description. items List of feed entries/articles from the RSS feed. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://api.rss2json.com/v1/api.json?rss_url=https://feeds.bbci.co.uk/news/rss.xml";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
How This API Fails
We deliberately sent this API a broken request and recorded exactly what came back on 2026-09-21. Knowing the shape of an error before you hit it makes error handling much easier to write.
{
"status": "error",
"message": "Nothing here"
} {
"status": "error",
"message": "`rss_url` parameter must be a valid url."
} Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Sep 21, 2026
Technical Specifications
Related Tags
Similar APIs
View All →24 Pull Requests
⭐ Beginner's Pick24 Pull Requests is a community initiative that runs every December to encourage developers to contribute to open source projects.
Agify.io
⭐ Beginner's PickAgify.io is a free API that predicts the likely age of a person based solely on their first name, using a database of over 350 million historical records.
API Grátis
API Grátis is a Brazilian API aggregator that bundles multiple free utility services including CEP (postal code) lookup, CNPJ (company registry) data, vehicle plate information, and more — all under a single authentication token.
ApicAgent
⭐ Beginner's PickApicAgent parses User-Agent strings into structured device and browser information, returning details like browser name, version, OS, device type, and whether the client is a bot.
APIs.guru
⭐ Beginner's PickAPIs.guru maintains a crowd-sourced directory of OpenAPI (Swagger) specification files for hundreds of public web APIs, all normalized to OpenAPI 3.0 format.