Every API, one clean contract.
98 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Popular
Reputation & Reviews
8 APIsE-commerce & Marketplaces
20 APIsReal Estate
5 APIsJobs & Hiring
6 APIsTravel & Lodging
5 APIsSearch & SEO
4 APIsFinance & Data
3 APIsMedia, Film & Knowledge
15 APIsUtilities & AI
11 APIsClassifieds & Second-hand
4 APIsDeveloper Tools
11 APIsFeed Gateway
livepost/feed-gateway/v1/fetch1 creditFetch ONE feed URL (RSS 2.0/0.9x, RSS 1.0/RDF, Atom, JSON-Feed 1.1 — auto-detected) and normalise it into one clean JSON schema. Broken XML, HTML entities, encoding mess and truncated feeds are repaired automatically (recovery step reported in meta).
{
"url": "https://feeds.bbci.co.uk/news/world/rss.xml",
"limit": 10
}Try in playground →post/feed-gateway/v1/discover1 creditFind the feeds of ANY website: parses <link rel=alternate> tags + visible anchor hints, then probes common feed paths at BOTH the host root (/feed, /rss.xml, /atom.xml, /index.xml, …) AND under the given path (e.g. /r/programming/.rss). Every candidate is fetched and VERIFIED as a real parseable feed before being returned — so it works even on sites that don't declare a feed link-tag.
{
"url": "https://www.theverge.com"
}Try in playground →post/feed-gateway/v1/merge1 creditMerge up to 10 feeds into ONE de-duplicated, date-sorted stream. Duplicates are detected on a canonical link key (tracking params stripped) falling back to guid/title. Each item carries its source_feed.
{
"urls": [
"https://feeds.bbci.co.uk/news/world/rss.xml",
"https://feeds.bbci.co.uk/news/technology/rss.xml"
],
"limit": 20
}Try in playground →post/feed-gateway/v1/search1 creditKeyword-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.
{
"url": "https://feeds.bbci.co.uk/news/world/rss.xml",
"query": "a e i o u",
"match": "any"
}Try in playground →post/feed-gateway/v1/batch1 creditFetch up to 20 feeds in ONE call (concurrent, fault-isolated): each feed returns independently with its own ok/error — one dead feed never fails the batch.
{
"urls": [
"https://feeds.bbci.co.uk/news/world/rss.xml",
"https://hnrss.org/frontpage"
],
"limit": 5
}Try in playground →
Social Media
6 APIs