API Documentation

Everything you need to integrate our Screenshot API
API Version 1.0
Get Started in 30 Seconds
1

Get API Key

Sign up and get your free API key

2

Make Request

Send GET request with your parameters

3

Get Screenshot

Receive URL to your screenshot

Basic Example

curl -X GET "https://api.yourscreenshot.com/" \
  -G \
  -d "access_key=YOUR_API_KEY" \
  -d "url=https://example.com" \
  -d "format=jpeg" \
  -d "quality=85" \
  -d "fullpage=true"

Success Response

{
  "status": "success",
  "data": {
    "url": "https://api.yourscreenshot.com/public/jpeg-1234567890-abc123.jpeg",
    "format": "jpeg",
    "reference": "abc123def",
    "size": 251392,
    "sizeFormatted": "245.50KB"
  },
  "meta": {
    "responseTime": "1.2s",
    "timestamp": "2024-01-15T10:30:00.000Z"
  }
}