Sit Means Sit
Reads Sit Means Sit's own real-time Dog Training Locator directly (the same admin-ajax endpoint the site's /locations/ map runs) — the nearest real…
Reads Sit Means Sit's own real-time Dog Training Locator directly (the same admin-ajax endpoint the site's /locations/ map runs) — the nearest real franchise locations to a US zip, each with its own contact name, phone, reciprocity level and a handoff URL to that location's page.
Domain: sitmeanssit.com
Also known as: Sit Means Sit, Sit Means Sit Dog Training, sitmeanssit.com
Call it directly
bowmark.providers.sitmeanssit.findNearestLocations(zip: string, limit?: number): Promise<SitmeanssitNearestLocationsResult>Functions
| Function | What it does |
|---|---|
findNearestLocations | Ranks every real Sit Means Sit dog-training location by distance from a US zip and returns the nearest limit (default 5, matching the site's own /locations/ map), each with its real… |
Types
interface SitmeanssitLocation {
name: string;
contactName: string;
phone: string;
email: string;
reciprocity: string;
handoffUrl: string;
distanceMiles: number;
}
interface SitmeanssitNearestLocationsResult {
zip: string;
locations: SitmeanssitLocation[];
}