Andersen Windows & Doors
Andersen Windows & Doors' certified-dealer locator — find the local dealer a homeowner would be routed to for a real window/door quote, since Andersen…
Andersen Windows & Doors' certified-dealer locator — find the local dealer a homeowner would be routed to for a real window/door quote, since Andersen never prices online.
Domain: andersenwindows.com
Also known as: Andersen, Andersen Windows, Andersen Windows & Doors, Andersen Corporation
Call it directly
bowmark.providers.andersenwindows.findDealers(args: { zip: string; radiusMiles?: number; limit?: number }): Promise<AndersenDealer[]>Functions
| Function | What it does |
|---|---|
findDealers | Finds Andersen-certified dealers and contractors near a US ZIP code — the entry point to a real Andersen quote, since Andersen prices windows and doors only through a local dealer, never… |
Types
interface AndersenDealerAddress {
street: string;
city: string;
state: string;
postalCode: string;
country: string;
}
interface AndersenDealer {
id: string;
name: string;
address: AndersenDealerAddress;
phone: string | null;
tier: string;
accountType: string;
distanceMiles: number;
lat: number;
lng: number;
url: string;
}Examples
// which Andersen dealers are near this ZIP, for a window quote?
const dealers = await bowmark.providers.andersenwindows.findDealers({ zip: "55403" });
log(dealers.slice(0, 5).map(d => `${d.name} — ${d.tier} — ${d.phone ?? "no phone listed"} — ${d.distanceMiles.toFixed(1)}mi`).join("\n"));