Sign up and get your free API key
Send GET request with your parameters
Receive URL to your screenshot
curl -X GET "https://api.yourscreenshot.com/" \
-G \
-d "access_key=YOUR_API_KEY" \
-d "url=https://example.com" \
-d "format=jpeg" \
-d "quality=85" \
-d "fullpage=true"{
"status": "success",
"data": {
"url": "https://api.yourscreenshot.com/public/jpeg-1234567890-abc123.jpeg",
"format": "jpeg",
"reference": "abc123def",
"size": 251392,
"sizeFormatted": "245.50KB"
},
"meta": {
"responseTime": "1.2s",
"timestamp": "2024-01-15T10:30:00.000Z"
}
}