REST-API für Profis

Auch für Ihre anderen Programme.

DocUnderstand bringt eine lokale REST-API mit. FileMaker, Xojo, Skripte oder eigene Tools schicken ein Dokument per HTTP und bekommen Dateiname, Finder-Tags und strukturierte Daten zurück.

Terminal / Skripte FileMaker Xojo
Terminal FileMaker · Skriptschritte Xojo · URLConnection
curl -X POST http://localhost:8787/process \  -H "Authorization: Bearer ••••••••" \  -H "Content-Type: application/json" \  -d '{"filename":"Rechnung.pdf", ...}'
// foto.jpg als Base64 kodierenSet Variable [ $data ; Base64EncodeRFC(...) ]Insert from URL [ $response ;  "http://localhost:8787/process" ]
' Vertrag.pdf als Base64 kodierenVar 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 auf Ihrem Mac
OCR & Analyse …
Antwort · JSON
{  "filename": "2026-08-10 T-Mobile…pdf",  "documentType": "Rechnung",  "tags": ["Rechnung", "Mobilfunk"],  "text": "Ihre Rechnung für August 2026 …",  "extraction": {    "invoiceNumber": "RG-2026-081045",    "grossAmount": 99.00  }}
{  "filename": "2026-07-14 Urlaub Strand.jpg",  "documentType": "Foto",  "tags": ["Foto", "Urlaub"],  "exif": {    "camera": "iPhone 16 Pro",    "dateTaken": "2026-07-14 16:32",    "gpsLocation": "43.71° N, 7.26° E"  }}
{  "filename": "2026-03-01 Acme Mietvertrag.pdf",  "documentType": "Vertrag",  "tags": ["Vertrag", "Miete"],  "text": "Mietvertrag zwischen der Acme GmbH …",  "extraction": {    "customerNumber": "K-88213",    "servicePeriod": "ab 2026-03-01"  }}