Quick Webcontent API
URL article extraction, extractive summarization, and full-page screenshot capture. **Libraries (all open-source, commercial-use permitted):** - Content extraction: `trafilatura` (Apache-2.0) + `readability-lxml` (Apache-2.0) - Summarization: `sumy` LSA algorithm (MIT) - Screenshots: Playwright + Chromium (Apache-2.0) **Endpoints:** - `POST /v1/url/extract` — Fetch a URL and return clean article…
Quick Webcontent API endpoints
| Method | Endpoint | Description |
|---|---|---|
| Health | ||
| GET |
/health /health |
|
| Extraction | ||
| POST |
/v1/url/summarize /v1/url/summarize |
Fetches the URL, extracts article text, then applies Latent Semantic Analysis (LSA) to select the most informative sentences as a summary. Falls back to first N sentences if LSA… |
| POST |
/v1/url/extract /v1/url/extract |
Fetches the URL with a browser-like User-Agent, extracts the main article body using trafilatura, and returns the title, clean text, and basic metadata. Handles redirects and… |
| Screenshot | ||
| GET |
/v1/screenshot /v1/screenshot |
Uses headless Chromium via Playwright to render the page and capture a full-page or viewport screenshot. Waits for DOM content to load plus an optional additional delay for… |
Quick Webcontent API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | 5 / minute |
|
| PRO | $10 / month | — |
|
| ULTRA | $25 / month | — |
|
| MEGA | Free | — |
|