Skip to main content

Get Screenshot

Overview

The PeekShot Screenshot API allows you to retrieve a previously captured screenshot using its unique identifier.

Endpoint

GET https://api.peekshot.com/api/v1/screenshots/{screenshot_id}

Request Parameters

ParameterTypeRequiredDescription
screenshot_idstringYesThe unique ID of the screenshot to fetch.

Request Headers

HeaderDescription
x-api-keyYour unique API key for authentication.

Example Request (Using Axios)

curl --location 'https://api.peekshot.com/api/v1/screenshots/1' \
--header 'x-api-key: your-api-key'

Example Response

{
"status": "success",
"message": "screenshot request status fetched successfully",
"data": {
"id": 1,
"organizationId": 1,
"projectId": 1,
"status": "COMPLETE",
"url": "https://www.yourdomain.com/",
"screenshotImageSize": 1012796,
"options": {
"delay": 0,
"fresh": true,
"width": 1680,
"height": 867,
"output": "json",
"retina": true,
"language": "en-GB,en-US;q=0.9,en;q=0.8",
"block_ads": false,
"dark_mode": false,
"file_type": "jpeg",
"full_page": false,
"disable_javascript": false,
"block_cookie_banner": false
},
"screenshotUrl": "https://peekshot.s3.ap-south-1.amazonaws.com/6/image.jpeg",
"creditsRequired": 1,
"duration": "9.864",
"isActive": true,
"createdAt": "2025-03-23T09:11:25.906Z",
"updatedAt": "2025-03-23T09:11:25.906Z",
"deletedAt": null,
"deletedByUserId": null
},
"statusCode": 200
}

Error Responses

Status CodeError MessageDescription
400Invalid RequestCheck if the screenshot ID is valid.
403ForbiddenInvalid or inactive API key.
500Internal Server ErrorIssue on the server side.

Notes

  • Ensure that the provided screenshot_id exists in the system.
  • API requests must include a valid x-api-key in the headers.

For further assistance, contact [email protected].