API popular
Website Screenshot API
Capture pixel-perfect screenshots of any public URL with a real headless browser. Sync and async endpoints with viewport control, CSS injection, and full-page capture.
Endpoint del API
https://screenshot.cleariflow.com/v1/screenshot?api_key=YOUR_API_KEY
Pruébalo ahora
Prueba el API con datos en vivo
¿Inspiración? Prueba:
Beneficios del API
Pixel-perfect Capture
Real headless browser sessions render JavaScript before capturing the screenshot.
Flexible Render Options
Configure wait_until, timeouts, viewport size, full-page capture, and export format per request.
Sync & Async Endpoints
Synchronous screenshot for low latency or async jobs for high-volume and slow pages.
Full-page & Viewport
Capture the entire scrollable page or a custom viewport size in JPEG or PNG.
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).
Funciones clave
Real headless browser rendering
Full JavaScript execution before capture
Synchronous POST /v1/screenshot endpoint
Async job queue with polling
Custom viewport width and height
Full-page or viewport-only capture
Inject custom CSS before capture
JPEG and PNG export formats
SSRF-safe URL validation
JSON response with base64 image
Configurable timeout up to 60s
TLS-encrypted API access
Guía rápida
1. Obtén tu clave
Regístrate gratis y obtén la clave al instante.
2. Primera petición
curl -X POST 'https://screenshot.cleariflow.com/v1/screenshot' \
-H 'Content-Type: application/json' \
-d '{
"api_key": "YOUR_API_KEY",
"url": "https://cleariflow.com"
}'3. Procesa la respuesta
{
"ok": true,
"image_base64": "/9j/4AAQSkZJRgABAQAAAQABAAD/2wBD...",
"content_type": "image/jpeg",
"meta": {
"elapsed_ms": 4521
}
}