Bowmark AIdocs

Goodway Technologies

Goodway's own pressure-washer catalog — real listed prices, or a quote-required flag for call-for-price units, and the site's own product page as the…

Goodway's own pressure-washer catalog — real listed prices, or a quote-required flag for call-for-price units, and the site's own product page as the buy/quote handoff.

Domain: goodway.com

Also known as: Goodway, Goodway Technologies

Call it directly

bowmark.providers.goodway.searchProducts(): Promise<GoodwayProductSummary[]>
bowmark.providers.goodway.getProduct({ slug }: { slug: string }): Promise<GoodwayProduct>

Functions

FunctionWhat it does
searchProductsReads Goodway's pressure-washer catalog grid — every listed model, its SKU, its live price (or null if quote-required) and its product page.
getProductReads one product's detail page for its real current price and whether it buys online or needs a written quote.

Types

interface GoodwayProductSummary {
  sku: string;
  title: string;
  url: string;
  price: string | null; // null = call for price / quote required
}
interface GoodwayProduct extends GoodwayProductSummary {
  purchaseType: "buy" | "quote";
}