Documentation
Learn how to use Snaprun's screenshot service effectively
Getting Started
Snaprun provides a simple web interface and API for capturing screenshots. Here's how to get started with our service.
Using the Web Interface
- Enter the URL of the webpage you want to capture
- Set optional parameters like width and height
- Choose your preferred image format (PNG/JPEG)
- Enable cookie banner blocking if needed
- Click "Generate Screenshot" to capture the page
Parameters
URL
The complete web address of the page you want to capture. Must include http:// or https://.
Width (optional)
The viewport width in pixels. Default is 1920px. Minimum: 320px, Maximum: 3840px.
Height (optional)
The viewport height in pixels. Default is 1080px. Minimum: 320px, Maximum: 2160px.
Format
The output image format. Available options:
- PNG (default) - Best for screenshots with text
- JPEG - Smaller file size, good for photographs
Cookie Banner Blocking
When enabled, attempts to remove common cookie consent banners from the screenshot.
API Reference
Snaprun provides a RESTful API for programmatic access. Here's a basic example using curl:
curl -X POST https://api.snaprun.co/v1/screenshot \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"url": "https://example.com",
"width": 1920,
"height": 1080,
"format": "png",
"blockCookieBanners": true
}'
Limitations
- Maximum viewport size: 1920x1080 pixels
- Maximum page load wait time: 30 seconds
- Rate limit: 60 requests per minute
- Some websites may block automated access
Support
If you need help or have questions, you can:
- Check our Examples
- Email us at [email protected]
- Open an issue on GitHub