Overview
Render is an easy to use HTML to PDF renderer. To integrate you'll just need to send over the html, height and width of the desired PDF document to our render create endpoint. You'll then receive a link to your pdf content in the response.
This guide will walk you through the process of rendering and retrieving your first html document
The first thing you'll need to do is create an account. If you don't already have one follow this link to create one: https://app.inkit.com/signup
Authentication
Render uses API Keys to authenticate requests. To view and manage your API keys, log in and navigate to or create a project. Each project has its own API Key. You can also generate new keys and deactivate old ones.
To use the API Key in your request place it in the X-Inkit-API-Token header
Errors
Inkit uses conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted). Codes in the 5xx range indicate an error with Inkit's servers (these are rare).
Updated 14 days ago