> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aiinsurance.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Roadmap

> Where the v1 API is headed — upcoming capabilities and how the pieces fit together

The v1 API is built to make AI Insurance fully programmable. Every part of the platform — configuration, submissions, quoting, rating, policy management, claims, reporting, and document generation — is accessible through APIs. This makes it straightforward to get data into and out of the system, integrate with external platforms, and build automated workflows including AI-powered ones.

Today, the v1 API covers configuration, exposures, quotes, policy transactions, events, custom objects, and reporting. Below is how these pieces fit together, and what's coming next.

## How the Pieces Fit Together

The API surface maps to the insurance lifecycle. Each capability is a composable building block — use the ones you need, in whatever combination fits your workflow. The system is configuration-driven, so the same endpoints work for any line of business, any field schema, any document template.

<Steps>
  <Step title="Configure">
    Define fields, exposure types, coverage types, custom objects, and form templates via API. **Available today** via the [Configuration API](/api-v1-reference/configuration/overview).
  </Step>

  <Step title="Submit">
    Create submissions that group related quotes for a single applicant. **Planned** — [Submissions](/api-v1-reference/submissions/overview).
  </Step>

  <Step title="Quote">
    Create and iterate on quotes with configurable field data. **Available today** via the [Quotes API](/api-v1-reference/quotes/overview).
  </Step>

  <Step title="Rate">
    Invoke AI Insurance's hosted rating engine via API. If you use your own rating engine, the existing quote endpoints already support writing rating results directly. **Planned** — [Rating](/api-v1-reference/rating/overview).
  </Step>

  <Step title="Document">
    Generate quote and policy documents from uploaded templates using smart tags. **Planned** — [Document Generation](/api-v1-reference/documents/overview).
  </Step>

  <Step title="Bind">
    Convert a quote into a policy via the transaction model. **Planned** — a v1 bind endpoint that creates a new-business transaction from a quote.
  </Step>

  <Step title="Manage">
    Endorse, cancel, reinstate, and renew policies via the immutable transaction model. **Available today** via the [Policy API](/api-v1-reference/policies/overview).
  </Step>

  <Step title="Report">
    Earned premium, bordereau exports, and financial reporting. **Available today** via the [Policy Reporting API](/api-v1-reference/policies/overview).
  </Step>

  <Step title="Claims">
    Create and manage events linked to policies. **Available today** via the [Events API](/api-v1-reference/events/overview).
  </Step>

  <Step title="Parse">
    Submit unstructured documents (applications, loss runs) and receive structured data. **Planned** — [Submission Parsing](/api-v1-reference/parsing/overview).
  </Step>
</Steps>

***

## What's Available Today

| Capability                                                                                     | API                                                                  |
| ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- |
| Configuration (field definitions, option sets, exposure types, coverage types, custom objects) | [Configuration Management](/api-v1-reference/configuration/overview) |
| Exposure CRUD with configurable fields                                                         | [Exposures](/api-v1-reference/exposures/overview)                    |
| Quote lifecycle (create, update, send)                                                         | [Quotes](/api-v1-reference/quotes/overview)                          |
| Policy transactions (new business, endorse, cancel, reinstate, renew)                          | [Policies](/api-v1-reference/policies/overview)                      |
| Policy version history and audit trail                                                         | [Policy Concepts](/api-v1-reference/policies/concepts)               |
| Earned premium and bordereau reporting                                                         | [Policies — Reporting](/api-v1-reference/policies/overview)          |
| Event (claims) CRUD with configurable fields                                                   | [Events](/api-v1-reference/events/overview)                          |
| Custom object CRUD with typed relationships                                                    | [Custom Objects](/api-v1-reference/custom-objects/overview)          |

***

## What's Coming

### Submissions

v1-native submission endpoints for grouping related quotes. Submission types include new business, renewal, endorsement, cancellation, and reinstatement.

[View Submissions documentation](/api-v1-reference/submissions/overview)

### Rating

New endpoints to invoke AI Insurance's hosted rating engine for a quote or endorsement. If you use your own rating engine, the existing [Quotes](/api-v1-reference/quotes/overview) and [Policy](/api-v1-reference/policies/overview) APIs are built to support writing rating results directly.

[View Rating documentation](/api-v1-reference/rating/overview)

### Document Generation

API-driven document generation using smart tag templates:

* Upload and manage DOCX form templates with smart tags
* Generate populated PDF documents for quotes and policies
* Download generated documents via signed URLs

[View Document Generation documentation](/api-v1-reference/documents/overview)

### Submission Parsing

AI-powered structured extraction from unstructured insurance documents:

* Parse applications (ACORD forms, custom applications) into structured quote fields
* Parse loss run documents into structured loss history

[View Submission Parsing documentation](/api-v1-reference/parsing/overview)
