Bowmark AIdocs

NutriBullet (Capital Brands LLC)

NutriBullet's own "Which nutribullet is Best for Me?" product-recommendation quiz (nutribullet.com) — reads the real four-question quiz and runs the…

NutriBullet's own "Which nutribullet is Best for Me?" product-recommendation quiz (nutribullet.com) — reads the real four-question quiz and runs the site's own scoring logic to return the actual recommended blender(s), with no personal information required.

Domain: nutribullet.com

Also known as: NutriBullet, nutribullet, Nutribullet, Magic Bullet, Capital Brands, nutribullet.com, capitalbrands.com

Call it directly

bowmark.providers.capitalbrands.listQuizQuestions(): Promise<CapitalbrandsQuizQuestions>
bowmark.providers.capitalbrands.getBlenderRecommendation(arg: { answers: string[] }): Promise<CapitalbrandsRecommendation>

Functions

FunctionWhat it does
listQuizQuestionsReads NutriBullet's own product-recommendation quiz off its live page — all four questions, in order, with the exact option values and labels the site's own form submits.
getBlenderRecommendationRuns the site's own quiz-scoring logic for a real set of quiz answers and returns the actual recommended blender(s) — name, price and buy link — with no personal information required.

Types

interface CapitalbrandsQuizQuestion {
  step: number;
  title: string;
  allowsMultiple: boolean;
  options: Array<{ value: string; label: string }>;
}

interface CapitalbrandsQuizQuestions {
  questions: CapitalbrandsQuizQuestion[];
}

interface CapitalbrandsRecommendedProduct {
  name: string;
  price: string | null;
  url: string;
}

interface CapitalbrandsRecommendation {
  products: CapitalbrandsRecommendedProduct[];
}

Examples

const { questions } = await bowmark.providers.capitalbrands.listQuizQuestions();
// questions[0] -> { step: 1, title: "What are you interested in blending?", allowsMultiple: true,
//                   options: [{ value: "smoothies", label: "Smoothies" }, ...] }

const { products } = await bowmark.providers.capitalbrands.getBlenderRecommendation({
  answers: ["smoothies", "just-me", "budget", "at-home"],
});
// products -> [{ name: "nutribullet", price: "$49.99", url: "https://www.nutribullet.com/shop/blenders/nutribullet-600/" }, ...]