How to Convert Web to PDF Using Java?

WEB TO PDF Conversion

APITier extract web content as PDF from web url or html content. The APITier is converting web URLs or HTML content to PDF files. It is a very simple, easy-to-integrate, self-explanatory API that will get you up and running in under 10 minutes. Web to PDF Conversion API is easy to use and fast API.

You can easily call this API using java code. We’ve provided below in Java code. Below are two steps for how to convert web to pdf using java.

Step 1

Users can need to create an account and register without providing Card Details. Users can register for Free with a username (email) and password. Get a free API KEY

The registered user gets the Unique API KEY, to access the API. API KEY can be used to access endpoints of the WEB Conversion API.

Step 2

Create your Java Project and install their all dependencies. After that add this code. In this code need to add

  • Your Web URL or HTML content. For Example – https://www.apitier.com
  • Your APITier API KEY. For Example – hv90CBlVBN9R6Tbfx4wsg3CxRTXyk9CA6bvx2f11
OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n    \"url\": \"https://www.apitier.com\"\n}");
Request request = new Request.Builder()
  .url("https://web.apitier.com/convert/url/to/pdf?x-api-key=hv90CBlVBN9R6Tbfx4wsg3CxRTXyk9CA6bvx2f11")
  .method("POST", body)
  .addHeader("Content-Type", "application/json")
  .build();
Response response = client.newCall(request).execute();

Get Started In 3 Easy Steps

1. Get a Free API Key 2. Test & Integrate API 3. Go Live