Δημοφιλές API
Web Scraping API
Extract JavaScript-rendered HTML from any URL with a real headless browser. Sync and async endpoints with flexible render options, resource blocking, and SSRF protection.
Τελικό σημείο API
https://scrape.cleariflow.com/v1/scrape?api_key=2108cd0a347abef603ec107e4545ed5d
Δοκιμάστε τώρα
Δοκιμάστε το API με ζωντανά δεδομένα
Χρειάζεστε ιδέες; Δοκιμάστε:
Οφέλη API
JavaScript Rendering
Real headless browser sessions execute JavaScript and return fully rendered HTML.
Flexible Render Options
Configure wait_until, timeouts, post-load delays, and HTTPS error handling per request.
Sync & Async Endpoints
Synchronous scrape for low latency or async jobs for high-volume and slow pages.
Resource Blocking
Block images, fonts, and media to speed up scrapes and reduce bandwidth.
SSRF Protection
Built-in safeguards block private networks and other unsafe target URLs.
Bank-level Security
All API traffic is secured with TLS encryption (HTTPS).
Βασικά χαρακτηριστικά
Real headless browser rendering
Full JavaScript execution before capture
Synchronous POST /v1/scrape endpoint
Async job queue with polling
Configurable wait_until (domcontentloaded, networkidle)
Block images, fonts, and media
SSRF-safe URL validation
Optional post-load wait delay
JSON response with HTML and metadata
Configurable timeout up to 60s
TLS-encrypted API access
Render and resource options per request
Γρήγορη εκκίνηση
1. Λάβετε κλειδί API
Εγγραφείτε δωρεάν και λάβετε αμέσως κλειδί.
2. Πρώτο αίτημα
curl -X POST 'https://scrape.cleariflow.com/v1/scrape' \
-H 'Content-Type: application/json' \
-d '{
"api_key": "2108cd0a347abef603ec107e4545ed5d",
"url": "https://quotes.toscrape.com/"
}'3. Χειριστείτε την απάντηση
{
"ok": true,
"html": "<!DOCTYPE html><html><head><title>Quotes to Scrape</title></head><body>...</body></html>",
"meta": {
"url": "https://quotes.toscrape.com/",
"status_code": 200,
"duration_ms": 4521
}
}