One API call. Get a pixel-perfect screenshot of any webpage in under 2 seconds. No setup, no headaches.
// Get a screenshot in 3 lines of code const response = await fetch( 'https://api.snapshot.api/screenshot?url=https://google.com', { headers: { 'x-api-key': 'your_api_key' } } ); const { image } = await response.json(); // → returns base64 PNG, ready to use