Bowmark AIdocs

Kitchen Tune-Up

Kitchen Tune-Up's own AI Design Tool — the live cabinet door/color/finish catalog, and photo-in/AI-visualization-out generation, run the way…

Kitchen Tune-Up's own AI Design Tool — the live cabinet door/color/finish catalog, and photo-in/AI-visualization-out generation, run the way kitchentuneup.com/design-tool/ does.

Domain: kitchentuneup.com

Also known as: Kitchen Tune-Up, KitchenTuneUp, Kitchen Tune Up

Call it directly

bowmark.providers.kitchentuneup.listCabinetStyles(): Promise<KitchentuneupCabinetStyle[]>
bowmark.providers.kitchentuneup.visualizeKitchen(args: { photoBase64: string, photoFileName?: string, featureDefinitionIds: number[] }): Promise<KitchentuneupVisualization>

Functions

FunctionWhat it does
listCabinetStylesReads Kitchen Tune-Up's own AI Design Tool catalog off its visualizer vendor's API — every cabinet door style / color / finish feature currently enabled for the kitchen visualizer, with the…
visualizeKitchenRuns a photo through Kitchen Tune-Up's own AI Design Tool the way kitchentuneup.com/design-tool/ does — uploads the photo plus one or more chosen cabinet features (from listCabinetStyles)…

Types

interface KitchentuneupCabinetStyle {
  featureDefinitionId: number;
  name: string;
  group: string | null;
  thumbnailUrl: string | null;
}

interface KitchentuneupVisualization {
  resultImageUrl: string;
  appliedFeatureIds: number[];
}