Endpoint
Headers
Path parameters
string
required
The unique ID of the screenshot.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
GET /v1/screenshots//status — lightweight status check for a screenshot.
GET https://api.screenshotly.dev/v1/screenshots/{screenshotId}/status
| Header | Required | Description |
|---|---|---|
X-API-Key | Yes | Your API key |
{
"success": true,
"data": {
"id": "67b8a1c2d3e4f5a6b7c8d9e0",
"status": "completed",
"imageUrl": "https://cdn.screenshotly.dev/screenshots/67b8a1c2d3e4f5a6b7c8d9e0.png"
}
}
{
"success": true,
"data": {
"id": "67b8a1c2d3e4f5a6b7c8d9e0",
"status": "processing",
"imageUrl": null
}
}
| Status | Code | Description |
|---|---|---|
| 401 | missing_api_key / invalid_api_key | Invalid or missing API key |
| 403 | forbidden | You don’t own this screenshot |
| 404 | not_found | Screenshot ID doesn’t exist |
curl https://api.screenshotly.dev/v1/screenshots/67b8a1c2d3e4f5a6b7c8d9e0/status \
-H "X-API-Key: $SCREENSHOTLY_API_KEY"
