ScreenshotScreenshot any website programmatically
The Helix Screenshot API captures pixel-perfect screenshots of any website. Full-page or viewport, with custom dimensions, dark mode toggle, ad blocking, and wait-for-element. Powered by Playwright headless Chromium — no maintenance, no browser pools, just one API call.
- Free tier with 100 requests/month
- Fast, cached responses
- 99.9% uptime target
- Standard REST + JSON
What is the Screenshot API?
The Helix Screenshot API captures pixel-perfect screenshots of any website. Full-page or viewport, with custom dimensions, dark mode toggle, ad blocking, and wait-for-element. Powered by Playwright headless Chromium — no maintenance, no browser pools, just one API call.
How it works
- 1GET /capture?url=https://example.com returns a PNG screenshot.
- 2Customize: `viewport_width`, `viewport_height`, `full_page`, `format` (png/jpeg/webp), `quality`, `delay`, `wait_for` (CSS selector).
- 3POST /capture with JSON body for complex options (dark mode, block ads, scroll, custom JS execution before capture).
- 4Returns image as binary or as a CDN URL (set `format=url`) for use in HTML/email.
- 5Average response time: 2-4 seconds for full-page renders.
Endpoints
2 REST endpoints, all returning consistent JSON.
/captureCapture screenshot of URL
/captureCapture with advanced options
Code in 5 languages
Copy and paste into your project. Replace YOUR_API_KEY with your RapidAPI key.
// Screenshot API
const response = await fetch(
"https://screenshot-by-helix-api.p.rapidapi.com/capture"
{
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);What developers build with this API
Real use cases from production deployments.
Social Media OG Images
Generate Open Graph preview images for every blog post automatically. Beat ugly default Twitter cards with branded, dynamic screenshots.
Website Monitoring
Schedule daily screenshots of competitor sites or your own. Compare visually — detect when something changed (price, copy, design).
PDF Reports
Combine with our PDF Generation API: screenshot live data dashboards, embed into weekly reports. Auto-generated, always fresh.
Thumbnail Generation
Build a directory or aggregator? Show actual screenshots of listed sites instead of generic logos.
Archival and Compliance
Capture how a webpage looked on a specific date. Useful for legal discovery, content disputes, and brand audits.
Pricing
All tiers include this API. No credit card for free tier.
BASIC
Free
- ✓ 100 reqs/month
- ✓ Hard limit
- ✓ All endpoints
PRO
$9.99/mo
- ✓ 10,000/month
- ✓ +$0.005 each
- ✓ All endpoints
ULTRA
$29.99/mo
- ✓ 100,000/month
- ✓ +$0.002 each
- ✓ All endpoints
MEGA
$99.99/mo
- ✓ 1,000,000/month
- ✓ +$0.001 each
- ✓ All endpoints
Frequently asked questions
Real answers to questions developers ask before integrating.