Full-Page Screenshot

Capture the entire scrollable height of any web page in a single image — from the top of the page to the very bottom. Useful for QA reviews, archiving, design documentation, and sharing full layouts without stitching screenshots together.

Free: 5 renders/hour — no login required

Options

How full-page capture works:

  • The browser scrolls the entire page and stitches the result into one tall image
  • Very tall pages may be clipped by the browser engine
  • Lazy-loaded images below the fold may not appear
  • Viewport width is used; height is determined by page content

Fixed: full_page=true

This request

curl -X POST "https://api.scrnpix.com/tools/screenshot" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "url": "https://example.com",
    "width": 1280,
    "format": "png",
    "full_page": true
  }
}' \
  -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&format=png&full_page=true" \
  -H "X-KEY: YOUR_API_KEY" \
  -o screenshot.png