Ingest anything
PDFs, scans, exports, whatever landed in the inbox. Post them to the API or drop them in a watched folder. If someone photographed it on a phone, OCR picks it up.
api - watched folder - ocrResumes, contracts, invoices, licences. Capture pulls out the fields that matter and tells you how sure it is about each one, so your team stops re-typing and only checks what is actually in doubt.
Core Features
Three things every document team asks for,
and most parsers quietly skip
PDFs, scans, exports, whatever landed in the inbox. Post them to the API or drop them in a watched folder. If someone photographed it on a phone, OCR picks it up.
api - watched folder - ocrSonar reads the document and scores itself as it goes. Where it is unsure, it says so. Where it has nothing, it returns null. It will not invent a value to fill a gap.
confidence: { field: 0.91 }Validated JSON goes straight into your ATS, CRM or warehouse over a documented REST API and signed webhooks. Nobody re-types anything.
-> ATS - CRM - warehouse# one call, any document
curl -X POST \
https://api.parsinglab.blue-iq.ai/api/v1/parse \
-H "X-API-Key: cap_live_..." \
-F "file=@contract.pdf"// 200 OK
{
"status": "completed",
"data": { "parties", "term", "total"... },
"confidence": { "overall": 0.94 },
"fabricated": false
}A generic model flattens a credential into word salad and fills the gaps with something plausible. Capture reads the documents your business actually runs on, and puts a number on its own certainty.
Every value carries a number. Review the weak ones, ship the rest.
No value beats a wrong value. Unsure fields come back null, flagged.
Pick a threshold. Anything under it goes to a person. Everything over it just goes.
{
"profession": "RN",
"specialty_id": "88",
"confidence": 0.94
}JSON that matches your schema on arrival. Not a wall of text to untangle later.
Clinical histories, signed agreements, salary lines. What you send us is not test data, and the handling reflects that.
TLS 1.3
api.parsinglab.blue-iq.ai
TLS on every request, authenticated by a per-workspace key you can rotate whenever you like.
acme
globex
no shared access
Documents and keys never leave their workspace. Role-based access and SSO on top.
Switch on zero retention and the document is parsed in memory and gone. Nothing stored is nothing to leak.
We log that a parse happened, how long it took and what it cost. Never a word of what it said.
The messy scan. The seven-page contract. The resume with three job titles crammed into one line. We will run it live and show you exactly what comes back.
1 field flagged - nothing invented