Profesyoneller için REST API

Diğer programlarınız için de.

DocUnderstand yerel bir REST API sunar. FileMaker, Xojo, betikler veya kendi araçlarınız bir belgeyi HTTP üzerinden gönderir ve dosya adı, Finder etiketleri ile yapılandırılmış verileri geri alır.

Terminal / Betikler FileMaker Xojo
Terminal FileMaker · Betik Adımları Xojo · URLConnection
curl -X POST http://localhost:8787/process \  -H "Authorization: Bearer ••••••••" \  -H "Content-Type: application/json" \  -d '{"filename":"Fatura.pdf", ...}'
// foto.jpg'yi Base64 olarak kodlaSet Variable [ $data ; Base64EncodeRFC(...) ]Insert from URL [ $response ;  "http://localhost:8787/process" ]
' Sözleşme.pdf'yi Base64 olarak kodlaVar 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 · Mac'inizde %100 yerel
OCR ve analiz …
Yanıt · JSON
{  "filename": "2026-08-10 T-Mobile…pdf",  "documentType": "Fatura",  "tags": ["Fatura", "Mobil Hat"],  "text": "Ağustos 2026 faturanız …",  "extraction": {    "invoiceNumber": "RG-2026-081045",    "grossAmount": 99.00  }}
{  "filename": "2026-07-14 Tatil Plajı.jpg",  "documentType": "Fotoğraf",  "tags": ["Fotoğraf", "Tatil"],  "exif": {    "camera": "iPhone 16 Pro",    "dateTaken": "2026-07-14 16:32",    "gpsLocation": "43.71° N, 7.26° E"  }}
{  "filename": "2026-03-01 Acme Kira Sözleşmesi.pdf",  "documentType": "Sözleşme",  "tags": ["Sözleşme", "Kira"],  "text": "Acme GmbH ile yapılan kira sözleşmesi …",  "extraction": {    "customerNumber": "K-88213",    "servicePeriod": "2026-03-01'den itibaren"  }}