Skip to content

Quick Start

Get started with URLPix in under 2 minutes.

1. Create an Account

Sign up at app.urlpix.com using your email or GitHub account.

2. Get Your API Key

Navigate to API Keys in the dashboard and create a new key. Your key will look like:

sk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

3. Take Your First Screenshot

bash
curl "https://api.urlpix.com/v1/screenshot?url=https://example.com" \
  -H "X-API-Key: sk_live_YOUR_KEY" \
  -o screenshot.png

That's it! You now have a PNG screenshot of example.com.

4. Try Different Formats

bash
# WebP (smaller file size)
curl "https://api.urlpix.com/v1/screenshot?url=https://example.com&format=webp&quality=90" \
  -H "X-API-Key: sk_live_YOUR_KEY" \
  -o screenshot.webp

# PDF
curl "https://api.urlpix.com/v1/screenshot?url=https://example.com&format=pdf" \
  -H "X-API-Key: sk_live_YOUR_KEY" \
  -o page.pdf

Next Steps

URLPix — Screenshot & OG Image API