Skip to content
Help Center Getting Started Getting Started with ScreenshotCenter API

Getting Started

Getting Started with ScreenshotCenter API

Create your first screenshot request and retrieve image, HTML, PDF, and video assets.

1. Create an account

Sign up at app.screenshotcenter.com. A free plan is available with no credit card required.

2. Generate an API key

Go to API Keys in the left menu and click Create API Key. Copy the key — you will only see it once.

3. Take your first screenshot

curl -X POST https://api.screenshotcenter.com/api/v1/screenshot/create \
  -H "X-API-KEY: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com" }'

The response returns a screenshot_id. Poll GET /api/v1/screenshot/info?id={screenshot_id} until status is finished.

4. Retrieve the screenshot

Once finished, use GET /api/v1/screenshot/thumbnail with the id parameter to get a PNG, JPEG, or WebP image.

Last updated March 27, 2026