Bowmark AIdocs

Blackstone Products

Reads Blackstone Products' own real-time Stockist dealer locator directly — real authorized dealers that actually carry Blackstone griddles,…

Reads Blackstone Products' own real-time Stockist dealer locator directly — real authorized dealers that actually carry Blackstone griddles, distance-ranked from a US ZIP, never a guess at which big-box chains might stock them.

Domain: blackstoneproducts.com

Also known as: Blackstone, Blackstone Products, Blackstone Griddles, blackstoneproducts.com

Call it directly

bowmark.providers.blackstoneproducts.findNearbyDealers(zip: string, radiusMiles?: number): Promise<BlackstoneNearbyDealers>

Functions

FunctionWhat it does
findNearbyDealersRuns Blackstone's own real-time Stockist dealer locator for a US ZIP and returns real nearby authorized dealers that carry Blackstone griddles, distance-ranked (miles), from the brand's own…

Types

interface BlackstoneDealer {
  id: string;
  name: string;
  addressLine1: string;
  addressLine2: string;
  city: string;
  state: string;
  postalCode: string;
  country: string;
  phone: string;
  website: string;
  latitude: number;
  longitude: number;
  distanceMiles: number;
}
interface BlackstoneNearbyDealers {
  zip: string;
  radiusMiles: number;
  dealers: BlackstoneDealer[];
}