Bennington Marine
Bennington's pontoon/tritoon model catalog — length, beam and standard-feature specs read off each model's own page (S, SX today).
Domain: benningtonmarine.com
Also known as: Bennington, Bennington Marine, Bennington Pontoon, Bennington Pontoon Boats
Call it directly
bowmark.providers.bennington.search(args?: { model?: string }): Promise<{ models: BenningtonModel[]; warnings: string[] }>Functions
| Function | What it does |
|---|---|
search | Lists Bennington's pontoon/tritoon model series with their published length overall, beam and feature specs, read off each model's own page. |
Types
interface BenningtonModel {
slug: string;
name: string;
url: string;
lengthOverall: string | null;
beam: string | null;
specText: string;
}Examples
// what pontoon models does Bennington sell, and what are their specs?
const { models, warnings } = await bowmark.providers.bennington.search();
log(models.map(m => `${m.name}: LOA ${m.lengthOverall ?? "?"}, beam ${m.beam ?? "?"}`).join("\n"));
if (warnings.length) log("incomplete: " + warnings.join(" "));