InsurerDist
Documentation

Guides and reference for building insurance workflows end-to-end

Learn the lifecycle from product setup to quoting, binding, servicing, and events—designed for reliable, production integrations.

Getting started

Authentication, environments, and a working first request.

Core lifecycle

Products, quotes, binds, policies, and servicing.

Events & reliability

Webhooks, retries, idempotency, and operational safety.

What you’ll build

  • Quote flows that match your product rules
  • Bind and issuance with predictable error handling
  • Servicing actions for policy lifecycle changes
  • Event-driven integrations for back-office systems

Recommended reading path

  1. Authentication and environment setup
  2. Core resources and data model
  3. Webhooks and event handling
  4. Testing scenarios in Workbench

Example request

A minimal quote request example to validate your authentication and connectivity.

curl https://api.example.com/v1/quotes \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"product":"example","customer":{}}'