S
Screenshot API
Screenshot any website programmatically
Capture full-page or viewport screenshots of any website. Returns PNG, JPEG, or WebP with custom viewport sizes.
AutomationLive Dashboard3 endpoints
Endpoints
GET
/captureCapture screenshot of URL
POST
/captureCapture with advanced options
Use Cases
Social media previews
Website monitoring
PDF reports
Thumbnail generation
Archival
Quick Start
quickstart.js
const response = await fetch(
"https://screenshot-by-helix-api.p.rapidapi.com/capture",
{
method: "GET",
headers: {
"X-RapidAPI-Key": "YOUR_API_KEY",
"X-RapidAPI-Host": "screenshot-by-helix-api.p.rapidapi.com"
}
}
);
const data = await response.json();
console.log(data);