Turn images & PDFs into clean, usable APIs.

Cloudforge is the OCR company that converts documents into structured JSON—tables, fields, and layout preserved.

Structured JSON
Tables, keys, and layout preserved.
Simple API
Upload → parse → webhooks or poll.
Fast & accurate
Optimized for receipts, docs, forms.
Privacy first
EU hosting & anonymization options.
API demo
# Upload a file and get structured JSON
curl -X POST https://api.cloudforge.example/ocr \
  -H "Authorization: Bearer <token>" \
  -F "file=@invoice.pdf" \
  -F "modes=ocr,tables,layout"

# Response
{ "id":"job_9f3a","status":"succeeded","document":{"type":"invoice","pages":2,"tables":[...],"text":"...","fields":{"invoice_number":"INV-1024","total":256.80,"currency":"EUR"}}}

Webhook

Set callback_url for instant results.

Formats

JSON by default; CSV/TSV for tables.

Input

Images / PDFs

Output

Clean JSON via API