RSS Parser API - Convert RSS and Atom Feeds to JSON
Fetches a feed URL and parses RSS 2.0 or Atom. Detects format automatically and returns channel/feed metadata (title, link, description) plus an items array with title, link, description, published date, and author for each entry. CDATA wrappers are stripped from text.
Code examples
curl -X POST https://api.botoi.com/v1/rss/parse \
-H "Content-Type: application/json" \
-d '{"url":"https://news.ycombinator.com/rss","limit":3}'When to use this API
Aggregate industry news into a Slack channel
Poll a list of blog RSS feeds hourly. For each new item, post to Slack with the title and link. Replaces paid newsreader subscriptions for small teams.
Populate a newsroom or blog hub
Parse several partner feeds on your site and render the most recent 10 items across all of them. The feed metadata (title, description) lets you attribute each item to its source.
Monitor podcast feed updates
Podcast feeds are Atom or RSS. Poll each show's feed nightly and alert when a new item is published. Useful for building a "new episodes this week" digest.
Frequently asked questions
Does this support both RSS and Atom?
What is the maximum items returned?
How are dates formatted?
What about feeds that require authentication?
How large a feed can I parse?
Get your API key
Free tier includes 5 requests per minute with no credit card required. Upgrade for higher limits.