REST API untuk profesional

Juga untuk program lain Anda.

DocUnderstand dilengkapi REST API lokal. FileMaker, Xojo, skrip, atau alat Anda sendiri mengirim dokumen melalui HTTP dan menerima kembali nama file, tag Finder, dan data terstruktur.

Terminal / Skrip FileMaker Xojo
Terminal FileMaker · Langkah Skrip Xojo · URLConnection
curl -X POST http://localhost:8787/process \  -H "Authorization: Bearer ••••••••" \  -H "Content-Type: application/json" \  -d '{"filename":"Faktur.pdf", ...}'
// Kodekan foto.jpg sebagai Base64Set Variable [ $data ; Base64EncodeRFC(...) ]Insert from URL [ $response ;  "http://localhost:8787/process" ]
' Kodekan Kontrak.pdf sebagai Base64Var req As New URLConnectionreq.SetRequestContent(json, "application/json")Var antwort As String = req.SendSync("POST", _  "http://localhost:8787/process")
DocUnderstand App-Icon
DocUnderstand
localhost:8787 · 100% lokal di Mac Anda
OCR & analisis …
Respons · JSON
{  "filename": "2026-08-10 T-Mobile…pdf",  "documentType": "Faktur",  "tags": ["Faktur", "Seluler"],  "text": "Faktur Anda untuk Agustus 2026 …",  "extraction": {    "invoiceNumber": "RG-2026-081045",    "grossAmount": 99.00  }}
{  "filename": "2026-07-14 Pantai Liburan.jpg",  "documentType": "Foto",  "tags": ["Foto", "Liburan"],  "exif": {    "camera": "iPhone 16 Pro",    "dateTaken": "2026-07-14 16:32",    "gpsLocation": "43.71° N, 7.26° E"  }}
{  "filename": "2026-03-01 Acme Kontrak Sewa.pdf",  "documentType": "Kontrak",  "tags": ["Kontrak", "Sewa"],  "text": "Kontrak sewa antara Acme GmbH …",  "extraction": {    "customerNumber": "K-88213",    "servicePeriod": "mulai 2026-03-01"  }}