Capture entire web pages from top to bottom with automatic scrolling. No manual stitching required.
curl "https://snapapi.tech/v1/screenshot?url=https://example.com&api_key=YOUR_KEY&full_page=true&width=1440" -o full.pngimport requests
response = requests.get("https://snapapi.tech/v1/screenshot", params={
"url": "https://example.com",
"api_key": "YOUR_KEY",
"full_page": "true",
"width": "1440"
})
with open("full-page.png", "wb") as f:
f.write(response.content)const res = await fetch(
"https://snapapi.tech/v1/screenshot?" + new URLSearchParams({
url: "https://example.com",
api_key: "YOUR_KEY",
full_page: "true",
width: "1440"
})
);
require("fs").writeFileSync("full-page.png", Buffer.from(await res.arrayBuffer()));