Super Scraper
# Ultimate Scraper Flow **The only API you need to turn any website into clean, structured data and AI summaries.** ## API Usage Guide ### 1. The Power Endpoint: `/process` This is the main endpoint that does everything in one go. **Request:** ```json POST /process { "url": "https://techcrunch.com/article", "scrape": true, "extract": true, "summarize": { "enabled": true, "length": "medium",…
Super Scraper endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST |
/scrape /scrape |
Scrapes a URL and returns raw HTML/Result without extraction. |
| GET |
/health /health |
Check if the API is running and responsive. |
| POST |
/extract /extract |
Extracts article text and metadata from a URL. |
| GET |
/ping /ping |
Simple ping check. Returns 'pong'. |
| POST |
/process /process |
The main endpoint. Scrapes a URL, extracts article content, and optionally generates an AI summary in one call. |
| POST |
/summarize /summarize |
Generates an AI summary for provided text or URL. |