Boost Insurance

Boost Insurance is an insurance-as-a-service / embedded-insurance infrastructure platform that packages compliance, capital, and technology into a turnkey, white-labeled program accessible through a modern RESTful API. The Boost Policy Admin System (PAS) lets partners quote, bind, issue, endorse, cancel, and manage claims for admitted and surplus-lines products using JSON over OAuth 2.0.

6 APIs 0 Features
InsuranceEmbedded InsuranceInsurance-as-a-ServicePolicy AdministrationClaims

APIs

Boost Insurance Programs API

Insurance programs and products configured on the Boost Policy Admin System (Pet, Small Business Cyber, Renters, and partner programs) that define the forms, coverages, and rati...

Boost Insurance Quotes API

Rate and quote insurance coverage by POSTing applicant and coverage data to the /quotes endpoint, then manage quote state, modifications, documents, and referral handling prior ...

Boost Insurance Policies API

Bind and issue a policy by POSTing a Quote ID to the /policies endpoint; Boost generates and delivers the policy with all coverages, dates, and entity information, and manages t...

Boost Insurance Claims API

First Notice of Loss (FNOL) and claims API that lets customers file claims tied to a policy; Boost handles adjudication in-house or via TPA partners and acts as the single sourc...

Boost Insurance Endorsements API

Midterm endorsements and policy modifications, including coverage changes, cancellations, and voids applied to an in-force policy.

Boost Insurance Webhooks API

Outbound webhook notifications that alert partners when policies are delivered or when a claim is updated, so they can pull the latest information and stay in sync with Boost ad...

Collections

Pricing Plans

Rate Limits

Boost Insurance Rate Limits

1 limits

RATE LIMITS

FinOps

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Boost Insurance API
  version: '1.0'
request:
  auth:
    type: oauth2
    oauth2:
      grantType: client_credentials
      accessTokenUrl: https://api.insurtech.dev/auth/oauth2/token
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Request an OAuth 2.0 access token.
      type: http
    http:
      method: POST
      url: https://api.insurtech.dev/auth/oauth2/token
      body:
        type: json
        data: '{}'
    docs: Exchange a Client ID and Client Secret for a bearer access token using the OAuth 2.0 Client Credentials grant.
- info:
    name: Quotes
    type: folder
  items:
  - info:
      name: Create a quote.
      type: http
    http:
      method: POST
      url: https://api.insurtech.dev/quotes
      body:
        type: json
        data: '{}'
    docs: Rate and quote insurance coverage by submitting applicant, coverage, and program data.
- info:
    name: Policies
    type: folder
  items:
  - info:
      name: Bind and issue a policy from a quote.
      type: http
    http:
      method: POST
      url: https://api.insurtech.dev/policies
      body:
        type: json
        data: '{}'
    docs: Transition a Quote into a Policy by submitting the Quote ID; Boost generates and delivers the Policy.
- info:
    name: Claims
    type: folder
  items:
  - info:
      name: File a First Notice of Loss (FNOL).
      type: http
    http:
      method: POST
      url: https://api.insurtech.dev/claims
      body:
        type: json
        data: '{}'
    docs: Submit FNOL data tied to a Policy; Boost begins adjudication and acts as the single source of truth for claim status.