Bowmark AIdocs

Xpress Wellness Urgent Care

Reads Xpress Wellness Urgent Care's clinic roster and each clinic's live healow wait-time / check-in widget — no key, no browser.

Domain: xpresswellnessurgentcare.com

Also known as: Xpress Wellness Urgent Care, Xpress Wellness, xpresswellnessurgentcare, xpresswellnessurgentcare.com

Call it directly

bowmark.providers.xpresswellnessurgentcare.listFacilities(): Promise<XpressFacility[]>
bowmark.providers.xpresswellnessurgentcare.checkWaitTime(facilityId: string): Promise<XpressWaitTime>

Functions

FunctionWhat it does
listFacilitiesLists every Xpress Wellness Urgent Care clinic — 40 locations across Oklahoma, Kansas and one Texas site — with name, address, phone, the clinic's own detail page and the healow check-in…
checkWaitTimeReads one clinic's live estimated wait time, hours-today status and confirmed identity straight off its healow openaccess widget. facilityId is the numeric id listFacilities returns (e.g.…

Types

interface XpressFacility {
  facilityId: string;       // healow facility_id — what checkWaitTime takes
  name: string;              // e.g. "Manhattan, KS"
  address: string | null;
  phone: string | null;
  detailsUrl: string | null; // the clinic's own page on the marketing site
  checkinUrl: string;        // the healow openaccess widget URL
}
interface XpressWaitTime {
  facilityId: string;
  facilityName: string;      // confirmed by the widget's own dataLayer, not assumed
  address: string | null;
  phone: string | null;
  waitTimeText: string;      // the site's own bucketed phrase, e.g. "Under 30 mins"
  hoursText: string | null;  // e.g. "OPEN - Until 8 PM"
  url: string;
}