Tools to Capture and Convert the Web

Free Website Screenshot API with GrabzIt

Take a


Screenshot

Example GrabzIt Screenshots

High Quality Rendering

Our screenshot service supports all of the latest web standards. Capturing things such as graphs, HTML5 Canvas and Video elements, Flash and SVG. To web fonts and CSS3 effects. To create high quality, pixel perfect screenshots.

While our global network of servers. Screenshot web pages from around the world faster than ever before! So why not let a screenshot say it better than a description ever could!

Website Screenshot API

Embed GrabzIt's screenshot functionality directly into your app with our Screenshot Website API. The API supports nine different programming languages. To see how to screenshot a webpage just select the appropriate language from the options below.

The example code below shows how easy it is to create a website screenshot using ASP.NET. To start creating screenshots just download the ASP.NET Library. Then get your API Key and Secret and then use the demo contained within. Then check out the screenshot API documentation for ASP.NET to find out all the ways you can use GrabzIt's API.

GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
grabzIt.URLToImage("https://www.tesla.com"); 
grabzIt.SaveTo("images/result.jpg");

The example code below shows how easy it is to create a website screenshot using Java. To start creating screenshots just download the Java Library. Then get your API Key and Secret and then use the demo contained within. Then check out the screenshot API documentation for Java to find out all the ways you can use GrabzIt's API.

GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
grabzIt.URLToImage("https://www.tesla.com"); 
grabzIt.SaveTo("images/result.jpg");

The example code below shows how easy it is to create a website screenshot using JavaScript. To start creating screenshots download GrabzIt's JavaScript Library. Then get your API Key and Secret, add the domain you want to use the JavaScript on and then check out the screenshot API documentation for JavaScript to find out all the ways you can use GrabzIt's API.

<script src="https://cdn.jsdelivr.net/npm/@grabzit/js@3.5.2/grabzit.min.js"></script>
<script>
GrabzIt("Sign in to view your Application Key").ConvertURL("https://www.tesla.com").Create();
</script>

The example code below shows how easy it is to create a website screenshot using Node.js. To start creating screenshots just download the Node.js Package. Then get your API Key and Secret and then use the demo contained within. Then check out the screenshot API documentation for Node.js to find out all the ways you can use GrabzIt's API.

var grabzit = require('grabzit');

var client = new grabzit("Sign in to view your Application Key", "Sign in to view your Application Secret");
client.url_to_image("https://www.tesla.com");
client.save_to("images/result.jpg", function (error, id){
    if (error != null){
        throw error;
    }
});

The example code below shows how easy it is to create a website screenshot using Perl. To start creating screenshots just download the Perl Library. Then get your API Key and Secret and then use the demo contained within. Then check out the screenshot API documentation for Perl to find out all the ways you can use GrabzIt's API.

#!/usr/bin/perl

use GrabzItClient;

$grabzIt = GrabzItClient->new("Sign in to view your Application Key", "Sign in to view your Application Secret");
$grabzIt->URLToImage("https://www.tesla.com");
$grabzIt->SaveTo("images/result.jpg");

The example code below shows how easy it is to create a website screenshot using PHP. To start creating screenshots just download the PHP Library. Then get your API Key and Secret and then use the demo contained within. Then check out the screenshot API documentation for PHP to find out all the ways you can use GrabzIt's API.

include("GrabzItClient.php");

$grabzIt = new \GrabzIt\GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
$grabzIt->URLToImage("https://www.tesla.com"); 
$grabzIt->SaveTo("images/result.jpg");

The example code below shows how easy it is to create a website screenshot using Python. To start creating screenshots just download the Python Library. Then get your API Key and Secret and then use the demo contained within. Then check out the screenshot API documentation for Python to find out all the ways you can use GrabzIt's API.

from GrabzIt import GrabzItClient

grabzIt = GrabzItClient.GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret")
grabzIt.URLToImage("https://www.tesla.com") 
grabzIt.SaveTo("images/result.jpg") 

The example code below shows how easy it is to create a website screenshot using our RESTful API. To start creating screenshots just call the below URL. Then check out the screenshot API documentation for our REST API to find out all the ways you can customize your screenshots.

https://api.grabz.it/services/convert?key=Sign in to view your Application Key&format=jpg&url=https%3A%2F%2Fwww.spacex.com%2F	

The example code below shows how easy it is to create a website screenshot using Ruby. To start creating screenshots just download the Ruby Gem. Then get your API Key and Secret and then use the demo contained within. Then check out the screenshot API documentation for Ruby to find out all the ways you can use GrabzIt's API.

require 'grabzit'

grabzItClient = GrabzIt::Client.new("Sign in to view your Application Key", "Sign in to view your Application Secret")
grabzItClient.url_to_image("https://www.tesla.com")	
grabzItClient.save_to("images/result.jpg") 	

Other ways to Screenshot Websites

Most users just want to take screenshots of individual webpages. However some people want to screenshot an entire website. GrabzIt makes this possible by providing this special web scraper template. The web scrape will then follow all the links on the entire website and screenshot every URL found.

Alternatively you can screenshot many webpages without writing any code. By importing the URLs you wish to screenshot into GrabzIt's Screenshot Tool.

If you don't want to convert URLs you can also use our API to convert HTML directly into images.