Noozra
Aggregated news headlines from 200+ curated RSS sources
Noozra pulls headlines from a couple hundred curated RSS feeds and serves them as clean JSON. You can list recent articles, filter by category, or search by keyword. Each item includes headline, source, timestamp, image, and a short description.
GET https://noozra.com/api/articles
{
"articles": [
{
"id": "8ce12da2-46d4-4ef0-9e32-b1d6ca42a5c2",
"headline": "Why Andy Burnham should bring back David Miliband – the man already tipped to replace him",
"url": "https://www.independent.co.uk/news/uk/politics/andy-burnham-david-miliband-cabinet-labour-foreign-secretary-b3008368.html",
"published_at": "2026-07-05T10:15:34Z",
"source": "Independent News",
"category": "general"
}
]
}curl "https://noozra.com/api/articles"const res = await fetch("https://noozra.com/api/articles");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://noozra.com/api/articles")
print(res.json())/articlesPROBEDAggregated news headlines from 200+ curated RSS sources
/articles?limit=5Paginated variant with limit parameter.
/api/articlesList recent headlines
/api/categoriesList valid category slugs
/api/searchSearch headlines
/api/search?q=Search by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Noozra: common questions
Is Noozra free to use?
Yes — Noozra is a free open data API. Free tier: Free tier available (pricing tiers published at /api/pricing). Whether the free tier allows commercial use is unclear — check the provider docs.
Does Noozra need an API key?
No — Noozra needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Noozra from the browser?
Yes — Noozra returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Noozra up right now?
As of our last scheduled check, Noozra is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.