Benelli USA
Runs Benelli USA's own dealer locator by ZIP code and returns real Premier Dealer records — name, address, phone, distance, map link.
Domain: benelliusa.com
Also known as: Benelli, Benelli USA, benelliusa.com
Call it directly
bowmark.providers.benelliusa.findDealers(zip: string): Promise<benelliusaDealer[]>Functions
| Function | What it does |
|---|---|
findDealers | Runs Benelli USA's own "Find A Benelli Dealer" locator for a 5-digit US ZIP and returns every dealer it lists, nearest first: name, street address, city/state/zip, phone (null on the… |
Types
interface benelliusaDealer {
name: string;
address: string;
city: string;
state: string;
postalCode: string;
phone: string | null;
distanceMiles: number;
mapUrl: string;
premierDealer: boolean;
latitude: number | null;
longitude: number | null;
}