Feedbagel API Docs

We serve up fresh, warm feeds daily, just like your morning bagel. Whether you're craving tech news, science updates, or the latest in entertainment, we've got the perfect feed for you.

GET /api/v1/search

Make a GET request to our API endpoint with a URL parameter to search for feeds:

curl -X GET "https://feedbagel.com/api/v1/search?url=prototypr.io"
Try a Search

Query Parameters

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)

Example

curl "https://feedbagel.com/api/v1/search?url=prototypr.io&info=true&favicon=false&skip_crawl=false&opml=false"

API Response

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