Bowmark AIdocs

AJ Madison

AJ Madison's real appliance catalog — search runs the site's own category + facet filter (brand, size/capacity, price band, style, availability) and…

AJ Madison's real appliance catalog — search runs the site's own category + facet filter (brand, size/capacity, price band, style, availability) and returns real, currently-listed products with their live selling price and the product's own AJ Madison URL.

Domain: ajmadison.com

Also known as: AJ Madison, AJMadison

Call it directly

bowmark.providers.ajmadison.search(args: AjmadisonSearchArgs): Promise<AjmadisonSearchResult[]>

Functions

FunctionWhat it does
searchRuns AJ Madison's own category + facet filter and returns real, currently-listed products (name, real current price, the crossed-out 'was' price when shown, the product's own AJ Madison…

Types

interface AjmadisonSearchArgs {
  category: string;              // the site's own category slug, e.g. "refrigerators"
  filters?: Record<string, string>; // the site's own facet query params, verbatim
  limit?: number;                 // default 25, clamped to [1, 60]
}

interface AjmadisonSearchResult {
  sku: string;
  name: string;
  price: number;             // real, current selling price
  wasPrice: number | null;   // the crossed-out "was" price, when shown
  url: string;                // this product's own AJ Madison URL
}