Fast, Reliable Screenshot API

Clearshot API is a scaleable website screenshot API. Effortlessly capture crisp screenshots of any URL.

Pin-sharp output as JPG, PNG, WebP, and PDF.

Chrome-based Rendering

Pixel perfect screenshots using latest Chrome engine, ensuring maximum web compatibility.

Fast and Scalable

Built on AWS and Google Cloud, we guarantee speed and reliability at any scale.

Full Page and Responsive

A range of parameters to return full page screenshots, mobile responsive screenshots or any viewport size.

Screenshot of retina display

Pixel Perfect Screenshots Everytime!

Clearshot API uses the latest Google Chrome to take programmatic screenshots in seconds.

Trusted by companies of all sizes

Ready to get started?

Clearshot guarantees precise and consistent rendering of your screenshots every time.

No credit card required

Programming languages that can be used with Clearshot Screenshot API

Use the languages you love

Clearshot API works with your favourite language. Start capturing screenshots using your preferred framework.

“Zero problems. We've captured thousands of screenshots for our directory and scaled significantly since starting with Clearshot.”

Liam Mathias

Head of Digital, PI Apparel

“Does what we need it to. Good quality screenshots, easy to setup.”

Will Milling

Packs.co

“Gone are the days of building our own system. User-friendly coding, Clearshot has made life a lot easier."

Sarah Amert

Blackford Holdings

Simple software that is easy to use

Clearshot guarantees precise and consistent rendering of your screenshots every time.

0 m+
Screenshots captured
0 %
Uptime
				
					$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => "https://app.clearshotapi.com/api/screenshot/",
  CURLOPT_HTTPHEADER =>
    array(
      "Authorization: Bearer [-- YOUR ACCESS TOKEN HERE --]",
      "Accept: application/json"
    ),
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => http_build_query(
    array(
      "url" => "https://apple.com",
      "json" => "true"
    )
  ),
));