Screenshots. PDFs. OG Images.
One Simple API.

Turn any URL or HTML into pixel-perfect renders.
100 free per month. Then just $0.02 each.

Everything You Need to Render

๐Ÿ“ธ

Screenshots

Capture any URL or HTML as a PNG or JPEG. Choose from 9 device presets or set custom dimensions.

GET /screenshot?url=...&device=iphone14
๐Ÿ“„

PDF Generation

Convert HTML or URLs to perfectly formatted PDFs. Custom margins, headers, footers, and page sizes.

POST /generate or GET /pdf?url=...
๐Ÿ–ผ๏ธ

OG Images

Generate beautiful social preview cards on the fly. Perfect for dynamic link previews.

GET /og-image?title=...&subtitle=...

๐Ÿ“ฑ Built-in Device Presets

desktop (1440ร—900) laptop (1280ร—800) tablet (768ร—1024) mobile (375ร—812) iphone14 (390ร—844) iphone14pro (393ร—852) pixel7 (412ร—915) ipad (820ร—1180) ipadpro (1024ร—1366)

Simple, Transparent Pricing

Free

$0

Perfect for testing

  • 100 renders/month
  • Screenshots, PDFs, OG images
  • All device presets
  • URL & HTML input
  • Small watermark on PDFs
Get Started

Pro

$29 /month

2,500 renders included

  • $0.01 per extra render
  • Everything in PAYG
  • Webhook callbacks
  • Batch rendering
  • Priority support
Coming Soon

Dead Simple API

# Screenshot a URL (mobile view)
curl "https://pdf.siteforge.build/screenshot?url=https://example.com&device=mobile" \
  -H "Authorization: Bearer sf_your_api_key" \
  -o screenshot.png

# Full page screenshot
curl "https://pdf.siteforge.build/screenshot?url=https://example.com&fullPage=true" \
  -H "Authorization: Bearer sf_your_api_key" \
  -o fullpage.png
# Convert URL to PDF
curl "https://pdf.siteforge.build/pdf?url=https://example.com" \
  -H "Authorization: Bearer sf_your_api_key" \
  -o page.pdf

# Convert HTML to PDF
curl -X POST https://pdf.siteforge.build/generate \
  -H "Authorization: Bearer sf_your_api_key" \
  -H "Content-Type: text/html" \
  -d "<h1>Hello World</h1>" \
  -o document.pdf
# Generate OG image for social sharing
curl "https://pdf.siteforge.build/og-image?title=My%20Blog%20Post&subtitle=Read%20more..." \
  -H "Authorization: Bearer sf_your_api_key" \
  -o og-image.png

# Custom colors
curl "https://pdf.siteforge.build/og-image?title=Launch%20Day&bg=%231a1a2e&accent=%2310b981" \
  -o branded-og.png