Bowmark AIdocs

Teladoc Health

Virtual-care company: searches its public Health Library and self-pay visit pricing.

Virtual-care company: searches its public Health Library and self-pay visit pricing. Booking a visit requires a member login and is out of scope.

Domain: teladochealth.com

Also known as: Teladoc, Teladoc Health, teladoc.com, teladochealth.com

Call it directly

bowmark.providers.teladoc.getPricing(): Promise<teladocPricing>
bowmark.providers.teladoc.getInsurancePricing(): Promise<teladocInsuranceCoverage>

Functions

FunctionWhat it does
getPricingReturns Teladoc's published self-pay (no-insurance) visit pricing — the per-visit dollar amount for each service line (24/7 Urgent Care, Nutrition, Dermatology, Mental Health), the unit…
getInsurancePricingReturns the with-insurance side of /start/no-insurance — the page's own headline figure (a literal '$0*' on the live page, since the per-plan price lives behind member.teladoc.com and is…

Types

interface teladocRow {
  id: string;
}

interface teladocPricingRow {
  service: string;
  priceUsd: number;
  unit: "visit" | "review" | null;
  href: string | null;
}

interface teladocPricing {
  source: string;
  disclaimer: string;
  services: teladocPricingRow[];
}

interface teladocInsuranceCoverage {
  source: string;
  headline: string;
  headlinePriceUsd: number;
  services: string[];
  disclaimer: string;
}