Website Screenshot

Enter a URL and get a pixel-perfect screenshot. Choose viewport size and image format.

Free: 5 renders/hour — no login required

Options

This request

curl -X POST "https://api.scrnpix.com/tools/screenshot" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "url": "https://example.com",
    "width": 1280,
    "height": 720,
    "format": "png"
  }
}' \
  -o screenshot.png

With an API key — higher limits, all 8 languages

curl "https://api.scrnpix.com/screenshot?url=https%3A%2F%2Fexample.com&width=1280&height=720&format=png" \
  -H "X-KEY: YOUR_API_KEY" \
  -o screenshot.png