Capture any webpage as PNG, JPEG, or PDF. Simple. Fast. Reliable.
curl -X POST https://api.16761.tech/screenshot \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com"}' \
-o screenshot.png
POST /screenshot — Capture webpage as image POST /pdf — Export webpage as PDF POST /metadata — Extract page metadata & OG tags GET /health — Service status GET /openapi.json — OpenAPI 3.0 spec
{
"url": "https://example.com", // required
"width": 1280, // viewport width (max 3840)
"height": 800, // viewport height (max 2160)
"fullPage": false, // capture full scrollable page
"format": "png", // png or jpeg
"quality": 80, // jpeg quality (1-100)
"delay": 0, // wait ms after page load
"selector": "#main" // capture specific element
}