Extract invoice, contract &
email data instantly.

Send a PDF or URL — get structured JSON back in seconds. Runs on your infrastructure. Zero cloud data exposure.

Start free trial — €19/mo Ask a question
📄

Invoice Extraction

Vendor name, date, total, currency, and line items — extracted from any PDF or web page, returned as clean JSON.

📝

Contract Summary

Key obligations, parties, and red flags surfaced automatically. Know what you're signing before you sign it.

📧

Email Classification

Category, urgency, and suggested action — route high-priority messages automatically without reading every inbox.

🔐

Your Data Stays Yours

Processing runs locally via Ollama. No document ever leaves your server. GDPR-safe by architecture.

Simple REST API

POST a job, GET the result. Webhook callbacks supported. JSON in, JSON out. Integrate in an afternoon.

📊

Confidence Scoring

Every result includes a confidence score. Low-confidence extractions are flagged for manual review automatically.

Simple pricing

One plan. Cancel anytime. First month is a trial.

Beta
€19/month
Start free trial

How it works

# 1. Submit a document
curl -X POST https://api.inksky.net/backoffice/jobs \
  -H "X-API-Key: your_key" \
  -H "Content-Type: application/json" \
  -d '{"type": "invoice_extraction", "input_url": "https://yoursite.com/invoice.pdf"}'

# → {"job_id": "abc123", "status": "queued"}

# 2. Get the result (usually ready in <30s)
curl https://api.inksky.net/backoffice/jobs/abc123/result \
  -H "X-API-Key: your_key"

# → {
#     "vendor_name": "Acme GmbH",
#     "invoice_date": "2026-03-01",
#     "total_amount": "1240.00",
#     "currency": "EUR",
#     "line_items": [...],
#     "confidence": 0.95,
#     "needs_review": false
#   }

Questions? Not sure if this fits your workflow?

contact@inksky.net