Free Website Screenshot API

Get 100 free screenshots per month with no credit card required. Sign up in seconds and start capturing websites immediately. All features included in the free tier.

Code Examples

cURL
Python
Node.js
# Sign up for a free key (no credit card)
curl -X POST https://snapapi.tech/v1/signup \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com"}'

# Use your key immediately
curl "https://snapapi.tech/v1/screenshot?url=https://example.com&api_key=YOUR_KEY" \
  -o screenshot.png
import requests

# Sign up
signup = requests.post("https://snapapi.tech/v1/signup", json={
    "email": "you@example.com"
})
api_key = signup.json()["api_key"]

# Take a screenshot
response = requests.get("https://snapapi.tech/v1/screenshot", params={
    "url": "https://example.com",
    "api_key": api_key
})
with open("screenshot.png", "wb") as f:
    f.write(response.content)
// Sign up
const signup = await fetch("https://snapapi.tech/v1/signup", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ email: "you@example.com" })
});
const { api_key } = await signup.json();

// Take a screenshot
const res = await fetch(
  "https://snapapi.tech/v1/screenshot?" + new URLSearchParams({
    url: "https://example.com", api_key
  })
);
require("fs").writeFileSync("screenshot.png", Buffer.from(await res.arrayBuffer()));
Get Your Free API Key Read the Docs

Try It Live

Capturing screenshot...

Why SnapAPI?

No Browser Setup

We run Chromium so you don't have to. No Puppeteer, no Selenium, no drivers.

PNG, JPEG, WebP

Choose your format. Set quality. Get optimized output.

Mobile Emulation

9 device presets — iPhone, Pixel, iPad, desktop. One parameter.

Full Page Capture

Scroll the entire page and stitch into one image. Automatic.

Element Selector

Capture a specific element by CSS selector instead of the whole page.

Dark Mode

Emulate prefers-color-scheme: dark to capture dark-themed pages.

Built For

How It Works

1. Sign up for a free API key — 100 screenshots/month, no credit card required.

2. Make a GET request to /v1/screenshot with your URL and API key.

3. Receive a pixel-perfect screenshot as a binary image, or JSON with metadata if meta=true.

That's it. No browser installation, no Chromium management, no headless infrastructure to maintain.