This guide will show you how to get started using Butler's OCR APIs with Node.js.

Get API Key

In order to use the API, the first thing you'll need to do is retrieve your API Key.

You can find your API Key in the *Settings > API Key section of the Butler app:

1868

Copy this API Key down for use in your code.

Install Dependencies

Make sure to install all the necessary dependencies for in your code:

// We'll use axios for making all the necessary API calls
npm install axios
npm install form-data

You're now ready to start using the API!