Bowmark AIdocs

Louver Shop Shutters

Window treatments (interior/exterior shutters, blinds, shades) dealer network. findLocalDealer is live — the same lookup the site's own…

Window treatments (interior/exterior shutters, blinds, shades) dealer network. findLocalDealer is live — the same lookup the site's own free-quote/consultant-locator forms run before showing a booking path, given a ZIP. requestConsultation (submitting the actual in-home consultation request) is a stub — see its notImplemented reason.

Domain: louvershop.com

Also known as: Louver Shop, Louver Shop Shutters, louvershop.com

Call it directly

bowmark.providers.louvershop.findLocalDealer(args: object): Promise<FindLocalDealerResult>

Functions

FunctionWhat it does
findLocalDealerLooks up the Louver Shop dealer/branch that covers a US ZIP (zip, a 4-5 digit string, e.g. "30301") — the same lookup the site's own "Free In-Home Design Consultation" form and "Find a…

Types

interface LouvershopBranch {
  id: number;
  name: string;
  link: string;
  tel: string;
}

interface LouvershopLocalArea {
  zip: string;
  city: string;
  state: string;
  stateCode: string;
}

interface LouvershopConsultant {
  id: number;
  name: string;
  link: string;
}

interface LouvershopAvailability {
  exteriorDecorative: boolean;
  exteriorSecurity: boolean;
}

interface FindLocalDealerResult {
  zip: string;
  inServiceArea: boolean;
  branch: LouvershopBranch | null;
  area: LouvershopLocalArea | null;
  consultants: LouvershopConsultant[];
  availability: LouvershopAvailability | null;
}