API Reference
Integrate SnagKit into your applications with our powerful RESTful API. Capture screenshots and videos programmatically with simple HTTP requests.
Quick Example
Capture a screenshot with a single API call:
curl -X POST https://snagkit.io/api/v1/capture \
-H "X-API-Key: sk_live_xxx" \
-d "url=https://example.com" \
-d "format=png"Response with metadata:
{
"url": "/api/files/.../screenshot.png",
"size": 245678,
"format": "PNG",
"status": "completed"
}Getting Started
Base URL
https://snagkit.io/api/v1All API requests should be made to this base URL with HTTPS.