Bowmark AIdocs

Carole Fabrics

Carole Fabrics' own CaroleNet trade-catalog search (carolenet.com) — a live keyword search over their real fabric or trim catalog, returning actual…

Carole Fabrics' own CaroleNet trade-catalog search (carolenet.com) — a live keyword search over their real fabric or trim catalog, returning actual matching patterns/colorways with SKU, book and any active promotion. Public, no login required.

Domain: carolenet.com (Carole Fabrics' own CaroleNet trade catalog)

Also known as: Carole Fabrics, carole fabrics, CaroleNet, carolenet, carolefabrics.com, carolenet.com

Call it directly

bowmark.providers.carolefabrics.search(args: CarolefabricsSearchArgs): Promise<CarolefabricsSearchResult>

Functions

FunctionWhat it does
searchRuns a keyword search against CaroleNet's live fabric or trim catalog and returns the real matching patterns/colorways — pattern name, colorway, SKU, book, image and any active promotion —…

Types

interface CarolefabricsSearchArgs {
  category: "fabric" | "trim";
  keyword: string;
}
interface CarolefabricsItem {
  patternName: string;
  colorName: string | null;
  sku: string;
  book: string;
  imageUrl: string;
  promoCode: string | null;
  promoLabel: string | null;
}
interface CarolefabricsSearchResult {
  category: "fabric" | "trim";
  keyword: string;
  items: CarolefabricsItem[];
  totalMatches: number;
}

Examples

const { items, totalMatches } = await bowmark.providers.carolefabrics.search({ category: "fabric", keyword: "floral" });
// items[0] -> { patternName: "Act Of Kindness", colorName: "Natural", sku: "1125811001", book: "CC",
//               imageUrl: "https://www.carolenet.com/files/?actofkindnessnaturalt.jpg", promoCode: null, promoLabel: null }
// totalMatches -> 254 (items.length is only the site's own first page, 50)