Node.js OCR SDK
Mindee API Helper Library for Node.js
Quick Start
npm install mindee@^5.0.0Loading a File and Parsing It
const mindee = require("mindee");
// for TS or modules:
// import * as mindee from "mindee";
// Init a new client
const mindeeClient = new mindee.v1.Client({ apiKey: "my-api-key" });
// Load a file from disk
const filePath = "/path/to/the/file.ext";
const inputSource = new mindee.PathInput({ inputPath: filePath });
// Parse it on the API of your choice
const apiResponse = mindeeClient.parse(
mindee.v1.product.InvoiceV4, inputSource
);Handling the Return
Additional Options
Further Reading
License
Last updated
Was this helpful?

