Planned — Submission parsing endpoints are being added to the v1 API. See the Roadmap for overall API direction.
Key Concepts
- Application parsing — extract structured quote fields from ACORD forms, custom applications, and other submission documents
- Loss history parsing — extract structured loss history from loss run documents, focused on tabular financial data
- Confidence scores — each extracted field includes a confidence score so your workflow can decide what needs manual review
Planned Endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/submissions/parse/application | Parse an application into structured quote fields |
| POST | /v1/submissions/parse/loss-history | Parse loss run documents into structured loss history |
| POST | /v1/submissions/parse | Best-effort parse of any document type |
How It Will Work
Application Parsing
- Upload an application document (ACORD form, custom application PDF)
- The system extracts structured field data matching your company’s configured quote fields
- The response includes extracted fields with confidence scores
- Feed the results into
POST /v1/quotesto create a pre-populated quote, or into the policy transaction APIs for endorsements and renewals
Loss History Parsing
- Upload a loss run document
- The system extracts structured loss history focused on tabular financial data
- The response includes extracted loss history with confidence scores
- Feed the results into a submission for underwriting review
General Parsing
- Upload any insurance document
- The system determines the document type and extracts whatever structured data it can
- Feed the results into a submission for review and processing
Example: Automated Intake Workflow
Submission parsing composes with the rest of the v1 API to support automated intake:- Parse an incoming application → structured fields
- Create a quote from the parsed fields →
POST /v1/quotes - Rate the quote →
POST /v1/quotes/{quoteId}/rate - Review — use confidence scores to flag fields for manual review
- Bind →
POST /v1/quotes/{quoteId}/bind
Related Resources
- Quotes API — create quotes from parsed application data
- Events API — create events from parsed loss run data
- Roadmap — overall API direction
