Quickstart
PolDex turns insurance documents or customer-provided parsed output into structured JSON with evidence, truth states, conflicts, exports, agent-ready delivery surfaces, and 99%+ benchmarked accuracy across the full 56-schema insurance universe.
Get an API key
Initialize access at /initialize. The key is shown once. Store it securely, then load credits at /credits.
Submit extraction
curl -X POST https://poldex-api.plain-water-cd0f.workers.dev/v1/extract \
-H "x-api-key: pd_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: ik_unique_per_request" \
-d '{
"document_url": "https://your.host/policy.pdf",
"schema": "commercial_gl",
"webhook_url": "https://your.app/webhook"
}'Poll result
curl https://poldex-api.plain-water-cd0f.workers.dev/v1/jobs/job_01hx4mz9p3kqa8 \ -H "x-api-key: pd_live_YOUR_KEY"
curl https://poldex-api.plain-water-cd0f.workers.dev/v1/jobs/job_01hx4mz9p3kqa8/artifacts \ -H "x-api-key: pd_live_YOUR_KEY"
Completed jobs return canonical JSON plus signed export links when available. Webhooks are preferred for production delivery. Result payloads are scoped to the requested schema, so a Commercial GL run does not include unrelated personal-auto, homeowners, life, or other line facts.
No-code option
Use /processor to estimate, process, review extracted facts, inspect evidence snippets, save reviewer notes, mark decisions, and download JSON, CSV, XLSX, and ZIP outputs without writing code.