Make a GET request to our API endpoint with a URL parameter to search for feeds:
Parameter | Description |
---|---|
url | The URL to search (required, returns 400 Bad Request if not sent) |
info | Include full feed metadata (default: true). If false, only returns feed URLs with empty/default values |
favicon | Include favicon as a Data URI (default: false) |
skip_crawl | Skip crawling and return only saved feeds (default: false). By default, URLs are crawled if not crawled in the past week |
opml | Return feeds as an OPML XML string (default: false) |
The API returns a JSON object containing an array of feed objects. Each feed object includes the feed URL, title, description, site URL, favicon URL, last update timestamp, and feed type.
{ "feeds": [ { "url": "https://blog.prototypr.io/feed", "title": "Prototypr - Medium", "description": "Prototyping, UX Design, Front-end Development and Beyond 👾 | ✍️ Write for us https://bit.ly/apply-prototypr - Medium", "site_url": "https://blog.prototypr.io", "favicon": "https://prototypr.io/icon.ico?e57b5292dc784edb", "last_updated": "2025-04-24T20:50:10+00:00", "feed_type": "rss20" }, { "url": "https://prototypr.io/feed.xml", "title": "Prototypr Design Discovery Feed", "description": "Latest design articles and tools on Prototypr!", "site_url": "https://prototypr.io", "favicon": "https://prototypr.io/icon.ico?e57b5292dc784edb", "last_updated": "2025-01-25T17:07:57+00:00", "feed_type": "rss20" } ] }
Feedbagel © 2025 • Built with 🥯 by Graeme
Built upon the shoulders of open source giants - David Beath's feedsearch project