Everything you need to call an OleeVision extractor from your own app. One endpoint in, clean JSON out.
Create an extractor in the app, copy its API key from the extractor page, then POST a document image to your endpoint.
POST https://vision.oleon.io/api/v1/extract/YOUR_API_KEY
curl -X POST \ "https://vision.oleon.io/api/v1/extract/YOUR_API_KEY" \ -F "image=@document.jpg"
curl -X POST \
"https://vision.oleon.io/api/v1/extract/YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "image_url": "https://example.com/doc.jpg" }'{
"success": true,
"data": {
"invoice_no": "INV-2048",
"date": "2026-06-14",
"vendor": "Acme Supplies",
"total": 1987.20
}
}