Bulletproof 360
Reads Bulletproof 360's own real-time Destini store locator directly — real nearby retailers (Target, Whole Foods, Sprouts and others) that actually carry…
Reads Bulletproof 360's own real-time Destini store locator directly — real nearby retailers (Target, Whole Foods, Sprouts and others) that actually carry Bulletproof products near a US ZIP, distance-ranked, never a guess at which national chains might stock it.
Domain: bulletproof.com
Also known as: Bulletproof, Bulletproof 360, Bulletproof Coffee, bulletproof.com
Call it directly
bowmark.providers.bulletproof.findStores(zip: string, maxItems?: number): Promise<BulletproofNearbyStores>Functions
| Function | What it does |
|---|---|
findStores | Runs Bulletproof 360's own real-time Destini store locator for a US ZIP and returns real nearby retailers that carry Bulletproof products, distance-ranked (miles), nearest first — from the… |
Types
interface BulletproofStore {
id: string;
name: string;
address1: string;
address2: string;
city: string;
state: string;
zip: string;
phone: string;
latitude: number;
longitude: number;
distanceMiles: number;
dataSource: string;
}
interface BulletproofNearbyStores {
zip: string;
maxItems: number;
stores: BulletproofStore[];
}