Bowmark AIdocs

Executive Home Care

Non-medical senior/home-care franchise network. findLocalOffice is live — the same ZIP-to-franchise lookup the site's "Find a Location" widget runs, given…

Non-medical senior/home-care franchise network. findLocalOffice is live — the same ZIP-to-franchise lookup the site's "Find a Location" widget runs, given a ZIP: which local office covers it (name, locality, phone, email, street address, "Contact Us" URL), or that the ZIP is outside the franchise network.

Domain: executivehomecare.com

Also known as: Executive Home Care, Executive Care, executivehomecare.com

Call it directly

bowmark.providers.executivehomecare.findLocalOffice(args: object): Promise<FindLocalOfficeResult>

Functions

FunctionWhat it does
findLocalOfficeLooks up the Executive Home Care franchise office that covers a US ZIP (zip, a 5-digit string, e.g. "90210") — the same ZIP-to-office lookup the site's own "Find a Location" widget runs.

Types

interface ExecutivehomecareOffice {
  host: string;
  url: string;
  locality: string | null;
  phone: string | null;
  email: string | null;
  streetAddress: string | null;
  contactUrl: string | null;
}

interface FindLocalOfficeResult {
  zip: string;
  inServiceArea: boolean;
  office: ExecutivehomecareOffice | null;
}