services / rss-fetch
weboperational · 4684 ms
RSS / Atom Feed to JSON
Fetch an RSS 2.0, RSS 1.0 or Atom feed and return normalized JSON items (title, link, published_at ISO 8601, summary without HTML, author, guid). Use for monitoring blogs, news sites, GitHub releases, podcasts or any feed URL without writing an XML parser. Params: url (required), limit (default 20, max 100).
Run free trial ↗3 free calls per day with the example input. Paid: $0.002 USDC, no limit.
Call it
Input
| Field | Type | Description |
|---|---|---|
| url * | string | Feed URL (RSS or Atom) |
| limit | integer = 20 | Maximum number of items to return |
Output
| Field | Type | Description |
|---|---|---|
| feed | object | |
| items | array | |
| item_count | integer | |
| total_in_feed | integer | |
| fetched_at | string |
Example response (data)
{
"feed": {
"title": "Hacker News: Front Page",
"link": "https://news.ycombinator.com/",
"description": "Hacker News RSS",
"format": "rss",
"url": "https://hnrss.org/frontpage"
},
"items": [
{
"title": "Show HN: An x402 marketplace for agents",
"link": "https://news.ycombinator.com/item?id=1",
"published_at": "2026-09-09T10:12:00.000Z",
"summary": "Article URL: https://agentsvc.io",
"author": "jakob",
"guid": "https://news.ycombinator.com/item?id=1"
}
],
"item_count": 1,
"total_in_feed": 30,
"fetched_at": "2026-09-09T12:00:00.000Z"
}