PeekShot provides a fast, reliable, and customizable screenshot API with S3 storage and webhook support.
Capture high-quality screenshots with precision.
Set image size, format, full-page, viewport, retina display, inject CSS/JS, and more.
Get real-time updates on screenshot processing.
Optimized for speed and large-scale usage.
Automatically upload screenshots to AWS S3.
Built for high availability and security.
Use our REST API with custom options to specify the URL you want to capture and configure settings like viewport size, format, and quality.
curl -X POST https://api.peekshot.com/v1/screenshots \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"url": "https://example.com",
"format": "png",
"width": 1920,
"height": 1080
}'
{
"status": "success",
"message": "screenshot request added in queue",
"data": {
"url":"https://www.astrodecode.com/",
"requestId":1,
"creditRequired":1,
"organizationId":1
},
"statusCode": 201,
}
PeekShot processes your request in our high-performance cloud infrastructure and automatically uploads the screenshot to your configured S3 bucket.
Once processing is complete, we'll send a webhook notification with the screenshot URL and metadata to your specified endpoint.
{
"status": "completed",
"id": "shot_123xyz",
"url": "https://s3.amazonaws.com/your-bucket/screenshot.png",
}
<img
src="https://s3.amazonaws.com/your-bucket/screenshot.png"
alt="Website Screenshot"
width=1920
height=1080
/>
Use the screenshot URL in your application, embed it in reports, or integrate it into your analytics dashboard.
Follow these simple steps to get started with PeekShot
Create your PeekShot account in seconds with just your email address.
Navigate to the projects section and create a new project. (Take note of the project ID.)
Retrieve your API key from the API key section in your dashboard.
Follow our API documentation to send a POST request.
curl -X POST https://api.peekshot.com/v1/screenshots \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"url":"https://example.com", "width": 1280, "height": 800}'
Trusted by 500+ developers