Trusted by the world's best
The Optiic OCR API is powerful and flexible.
Optiic is available in Node.js or any other language via standard http post requests.
Optiic Node.js example
// First, initiate the Optiic lib
const Optiic = require('optiic');
const optiic = new Optiic({apiKey: 'your_api_key'});
// You can supply a remote url
optiic.process({
url: 'https://optiic.dev/assets/images/samples/we-love-optiic.png'
})
.then(result => console.log(result))
// You can also supply a local image file
optiic.process({
image: 'path/to/image.png'
})
.then(result => console.log(result))
Our helpful documentation has tons of examples and tutorials to help you get started Learn more
Optiic curl / http request example
# JSON Example
curl \
-d '{"apiKey": "your_api_key", "url": "https://optiic.dev/assets/images/samples/we-love-optiic.png"}' \
-H 'Content-Type: application/json' \
https://api.optiic.dev/process
# File upload example
curl \
-F "apiKey=your_api_key" \
-F "image=@/Users/ianwiedenman/Desktop/my-image.png" \
https://api.optiic.dev/process
Our helpful documentation has tons of examples and tutorials to help you get started Learn more
Find the right package for your business.
Our team uses cutting-edge technology to manage and deliver the best results.
Explore pricing