Learn how to authenticate your API requests
Authorization
Bearer
Authorization: Bearer YOUR_API_TOKEN
curl -X POST https://api.screenshotly.app/screenshot \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "url": "https://example.com" }'
X-RateLimit-Limit: 500 X-RateLimit-Remaining: 495 X-RateLimit-Reset: 1635724800
429 Too Many Requests
{ "error": "Rate limit exceeded", "reset": 1635724800 }