Try any of 817 endpoints — live.
Pick an endpoint, load a working example, tweak the params, and send — no signup to try. Results render the way the data deserves; raw JSON, headers & code are one tab away.
Keyword-filter feed items (like RSSHub filter / Feedly search, but no account). Searches title/summary/author/categories (and content_html when include_content=true); multi-word queries match any or all terms; exclude= drops unwanted items.
Single feed URL to search. (search needs url OR urls.)
Multiple feed URLs to search at once (max 10). Each URL is independently SSRF-guarded and fetched concurrently; one bad feed never fails the whole call.
Keyword(s) to match, space-separated. Empty query + exclude acts as a pure exclusion filter. Case-insensitive substring match.
Keyword(s) that DROP an item when present (RSSHub filter_out equivalent).
Which item fields to match against (default title+summary).
Multi-term combination mode.
Max items returned (1-100, default 50). Out-of-range values are clamped, never rejected. (1–100)
Item ordering. Competitors paywall sorting (rss2json needs an api_key for order_by) — here it is free.
Sort direction (applies when sort_by is not feed_order).
Include the raw item HTML body as content_html (capped 30 KB). Off by default: summary is always returned as clean plain text.
Only items published at/after this date (ISO 8601, e.g. 2026-06-01 or 2026-06-01T12:00:00Z).
Only items published at/before this date (ISO 8601).
curl -X POST https://api.reefapi.com/feed-gateway/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"url":"https://feeds.bbci.co.uk/news/world/rss.xml","query":"a e i o u","match":"any"}'Hit Send to run this endpoint live.