Bowmark AIdocs

Embroker

Embroker's own coverage catalog and live self-serve quote-wizard entry points for tech/startup, law firm, cyber, BOP, crime and professional-liability…

Embroker's own coverage catalog and live self-serve quote-wizard entry points for tech/startup, law firm, cyber, BOP, crime and professional-liability business insurance.

Domain: embroker.com

Also known as: Embroker, embroker.com

Call it directly

bowmark.providers.embroker.listCoverageLines(): Promise<EmbrokerCoverageCatalog>
bowmark.providers.embroker.getQuoteEntryPoint(args: { product: string }): Promise<EmbrokerQuoteEntryPoint>

Functions

FunctionWhat it does
listCoverageLinesReturns Embroker's real coverage-line and policy-product-type catalog.
getQuoteEntryPointReturns the live, confirmed-reachable entry URL for one of Embroker's self-serve quote-wizard products.

Types

interface EmbrokerCoverageCatalog {
  coverageLines: string[];
  productTypes: string[];
}

interface EmbrokerQuoteEntryPoint {
  product: string;
  productLabel: string;
  url: string;
  reachable: boolean;
}

Examples

const catalog = await bowmark.providers.embroker.listCoverageLines();
const entry = await bowmark.providers.embroker.getQuoteEntryPoint({ product: "esp_eo" });