Skip to main content

Take Screenshot

Overview

The PeekShot Screenshot API allows you to capture high-quality screenshots of web pages programmatically. Easily integrate it into your applications for website monitoring, SEO tracking, and more.

Endpoint

POST https://api.peekshot.com/api/v1/screenshots

Authentication

All requests must include the x-api-key header with a valid API key.

Request Headers

HeaderDescription
x-api-keyYour unique API key for authentication
Content-Typeapplication/json

Request Body Parameters

Send a JSON payload with the following parameters:

ParameterTypeRequiredDescription
project_idstringYesUnique project identifier.
urlstringYesThe website URL to capture.
widthstringNoScreenshot width (default: 1680).
heightstringNoScreenshot height (default: 867).
file_typestringNoImage format (jpeg, png, etc.).
retinastringNotrue for high-resolution screenshots.
delaystringNoTime (in seconds) to wait before capturing.
full_pagestringNotrue to capture the entire page, false for viewport only.
disable_javascriptstringNotrue to disable JavaScript execution.

Example Request

curl --location 'https://api.peekshot.com/api/v1/screenshots' \
--header 'x-api-key: your-api-key' \
--header 'Content-Type: application/json' \
--data '{
"project_id": "1",
"url": "https://www.yourdomain.com/",
"width": 1680,
"height": 867,
"file_type": "jpeg",
"retina": true,
"delay": 0,
"full_page": false,
"disable_javascript": false
}'

Example Response

{
"status": "success",
"message": "screenshot request added in queue",
"data": {
"url": "https://www.yourdomain.com/",
"requestId": 1,
"creditRequired": 1,
"organizationId": 1
},
"statusCode": 201
}

Error Responses

Status CodeError MessageDescription
400Invalid RequestCheck your input parameters.
403ForbiddenInvalid or inactive API key.
500Internal Server ErrorSomething went wrong on our end.

Notes

  • The API supports high concurrency with minimal latency.
  • Ensure the provided URL is publicly accessible.
  • Large screenshots may take longer to process.

For further assistance, contact [email protected].