Get started with Screenshotly in minutes
curl -X POST https://api.screenshotly.app/screenshot \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "url": "https://example.com", "device": "desktop", "format": "png" }'
{ "url": "https://example.com", "device": "desktop", "format": "png", "fullPage": true, "hideElements": { "cookieBanners": true, "ads": true, "popups": true }, "delay": 1000 }
# First, capture a screenshot curl -X POST https://api.screenshotly.app/screenshot \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "url": "https://example.com", "device": "desktop" }' \ -o screenshot.png # Then, apply a mockup curl -X POST https://api.screenshotly.app/mockups \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -F "[email protected]" \ -F "templateId=browser-mockup"