Bowmark AIdocs

UnitedHealthcare Small Business

UnitedHealthcare's small-business store — real level-funded and fully-insured group health plan premiums for a ZIP and employee count, no sign-in required.

Domain: smallbusiness.uhc.com

Also known as: UnitedHealthcare, UHC, UnitedHealthcare Small Business

Call it directly

bowmark.providers.uhc_smallbusiness.getGroupHealthQuote(zip: string, employeeCount: number): Promise<UhcSmallbusinessQuote>

Functions

FunctionWhat it does
getGroupHealthQuoteReal level-funded and fully-insured small-group health plan premiums for a ZIP code and employee count — the same 'Explore Top Selling <State> Plans' list smallbusiness.uhc.com shows after…

Types

interface UhcSmallbusinessPlan {
  planCode: string;
  planName: string;
  fullName: string;
  planMarketType: "LEVEL_FUNDED" | "FULLY_INSURED";
  metalLevel: string | null;
  planType: string | null;
  legalEntity: string | null;
  perEmployeeMonthlyPremium: number;
  totalMonthlyPremium: number;
  deductibleIndividual: string | null;
  deductibleFamily: string | null;
  outOfPocketIndividual: string | null;
  outOfPocketFamily: string | null;
  primaryCareVisit: string | null;
  findYourDoctorUrl: string | null;
}

interface UhcSmallbusinessQuote {
  zip: string;
  state: string;
  county: string;
  effectiveDate: string;
  employerContributionShare: number;
  plans: UhcSmallbusinessPlan[];
  warnings: string[];
}