Bowmark AIdocs

Audibel

Audibel's own find-a-clinic locator — a ZIP/city/address search returning the real network hearing clinics nearest that point, sorted by distance, each…

Audibel's own find-a-clinic locator — a ZIP/city/address search returning the real network hearing clinics nearest that point, sorted by distance, each with its full address, phone and hours.

Domain: audibel.com

Also known as: Audibel, audibel, AUDIBEL

Call it directly

bowmark.providers.audibel.findClinics(query: string): Promise<AudibelClinicSearch>

Functions

FunctionWhat it does
findClinicsRuns the real find-a-clinic search for a ZIP code, city or address and returns Audibel's network clinics nearest that point, distance-sorted, with address/phone/hours.

Types

interface AudibelClinic {
  name: string;
  address: string;
  city: string;
  state: string;
  zip: string;
  phone: string | null;
  distanceMiles: number | null;  // miles from the searched point, nearest-first
  url: string;                   // the clinic's own page on audibel.com
  hours: Record<string, { open: string; close: string }>;
}

interface AudibelClinicSearch {
  search: string;
  lat: number;
  lng: number;
  clinics: AudibelClinic[];      // sorted nearest-first
}