CarePatrol
CarePatrol's own zip/state locator (carepatrol.com/locations/) — given a US ZIP code, returns the matched local CarePatrol senior-care-placement…
CarePatrol's own zip/state locator (carepatrol.com/locations/) — given a US ZIP code, returns the matched local CarePatrol senior-care-placement advisor(s), each with owner name, direct phone and a real Request Consultation link.
Domain: carepatrol.com
Also known as: CarePatrol, carepatrol.com
Call it directly
bowmark.providers.carepatrol.findLocalAdvisor(arg: { zipCode: string }): Promise<CarePatrolFindLocalAdvisorResult>Functions
| Function | What it does |
|---|---|
findLocalAdvisor | Runs the site's own zip locator: a US ZIP code, returns the matched local CarePatrol senior-care advisor office(s), with owner, phone and consultation link. |
Types
interface CarePatrolOffice {
name: string;
ownerName: string;
phone: string;
url: string;
teamMembersUrl: string;
servicesUrl: string;
distanceMiles: number | null;
}
interface CarePatrolFindLocalAdvisorResult {
zipCode: string;
isLocalMatch: boolean;
offices: CarePatrolOffice[];
}Examples
const result = await bowmark.providers.carepatrol.findLocalAdvisor({ zipCode: "85296" });
// result.offices[0] -> { name: "CarePatrol of Chandler/Gilbert", ownerName: "Lee Thompson", phone: "(480) 295-5656", ... }