Bowmark AIdocs

Ollie

Fresh dog food subscription. getMealPlan is live — the same weight/activity/neuter-status-driven meal plan and REAL per-plan weekly price the site's own…

Fresh dog food subscription. getMealPlan is live — the same weight/activity/neuter-status-driven meal plan and REAL per-plan weekly price the site's own onboarding quiz computes, given a dog's weight, activity level and neuter status. Returns all four plan tiers (Fresh, Baked, Mixed, Half Fresh) with this dog's own computed starting price, plus a checkout link that carries the answers forward.

Domain: myollie.com

Also known as: Ollie, Ollie Pets, myollie.com, ollie.com

Call it directly

bowmark.providers.myollie.getMealPlan(args: object): Promise<GetMealPlanResult>

Functions

FunctionWhat it does
getMealPlanComputes Ollie's personalized fresh-food meal plan and REAL weekly price for a dog, given weightLbs (number, e.g. 45), activityLevel ("Low"|"Moderate"|"High"), isNeutered (boolean)…

Types

interface OllieMealPlanOption {
  planType: string;
  planTypeName: string;
  startingPricePerWeek: number;
  availableCadences: number[];
  defaultCadence: number;
}

interface GetMealPlanResult {
  weightLbs: number;
  activityLevel: "Low" | "Moderate" | "High";
  plans: OllieMealPlanOption[];
  checkoutUrl: string;
}