Every API, one clean contract.
128 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Popular
Reputation & Reviews
11 APIsE-commerce & Marketplaces
24 APIsReal Estate
6 APIsJobs & Hiring
8 APIsTravel & Lodging
5 APIsSearch & SEO
4 APIsFinance & Data
5 APIsMedia, Film & Knowledge
15 APIsUtilities & AI
19 APIsDeveloper Tools
20 APIsClassifieds & Second-hand
4 APIsWeb Extract
livepost/web-extract/v1/scrape1 creditFetch one URL → AI-ready content in the requested formats (markdown/text/html/rawHtml/metadata/links/images/). + trafilatura; honest extraction confidence + render flag. Firecrawl /scrape + Jina Reader parity.
{
"url": "https://en.wikipedia.org/wiki/Web_scraping",
"formats": [
"markdown",
"metadata"
]
}Try in playground →post/web-extract/v1/map2 creditsDiscover a site's URL surface: robots.txt + sitemap.xml(+index) + homepage internal links → deduped URL list with per-URL page-type hints (home/pricing/docs/blog/product/legal/contact/about). Firecrawl /map parity + page-type classification (our edge).
{
"url": "https://stripe.com",
"limit": 50
}Try in playground →post/web-extract/v1/crawl1 creditSYNC-bounded crawl from a seed URL (max 25 pages): BFS over same-domain internal links with depth + include/exclude regex, scraping each page. Large crawls are a phase-2 async job (not promised here). Firecrawl /crawl parity (bounded).
{
"url": "https://example.com",
"max_pages": 2,
"max_depth": 1
}Try in playground →post/web-extract/v1/extract2 creditsDeterministic structured extraction from one URL: objects + microdata/RDFa presence + tables (parsed rows) + heading outline + prices + emails/phones, plus an optional {field: jsonld_dotpath} schema map. LLM-assisted extraction = phase-2 flag.
{
"url": "https://en.wikipedia.org/wiki/Python_(programming_language)"
}Try in playground →post/web-extract/v1/batch1 creditScrape up to 10 URLs concurrently in one call (each SSRF-guarded). Shared formats. Firecrawl /batch-scrape parity (bounded).
{
"urls": [
"https://example.com",
"https://en.wikipedia.org/wiki/HTML"
]
}Try in playground →
Social Media
7 APIs