# MealPulse Weekly Meal Plan

> MealPulse Weekly Meal Plan is a paid API for AI agents from mealpulse.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-16).

Generates a personalized 7-day meal plan with recipes, nutrition information, and estimated cost based on dietary needs and budget

## Facts

- Endpoint: GET https://mealpulse.vercel.app/api/meal/plan
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mealpulse-weekly-meal-plan-1de037a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GYEr5nY7f8QOl21M568nX

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mealpulse-weekly-meal-plan-1de037a1
```

Example prompt: Can you build me a 7-day meal plan for a vegetarian diet with a weekly budget of $80, including recipes and nutrition info for each meal?

## When to prefer this

Choose this endpoint when a user needs a complete, ready-to-use weekly meal plan with recipe details, nutrition data, and cost estimates in one call — especially when dietary restrictions and budget are key constraints. Prefer over generic recipe APIs when the full 7-day planning scope with cost estimation is needed.

## Known failure modes

- Invalid or unsupported dietary type returns an error or empty plan
- Budget value too low to generate realistic meals may return minimal or error response
- Missing required parameters may result in a 400 bad request
- Payment failure via x402 protocol results in 402 Payment Required
- Service unavailability on Vercel deployment may return 503

## How this service works

Meal plan generator / weekly meal planner / diet meal plan (keto, vegan, vegetarian, paleo, gluten-free) with macro and calorie planning. Builds a 7-day plan (breakfast/lunch/dinner) with recipes, per-meal calories, average daily protein/carbs/fat grams, and estimated cost, tailored to dietary needs, servings, and budget. Worldwide.

## Output

A structured 7-day meal plan including daily recipes, per-meal nutrition data (calories, macros), and an estimated total weekly cost broken down by dietary profile and budget constraints.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "budget": {
   "type": "string",
   "description": "budget"
  },
  "cuisine": {
   "type": "string",
   "description": "cuisine"
  },
  "dietary": {
   "type": "string",
   "description": "dietary"
  },
  "servings": {
   "type": "string",
   "description": "servings"
  },
  "preferences": {
   "type": "string",
   "description": "preferences"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mealpulse-weekly-meal-plan-1de037a1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mealpulse.vercel.app](https://www.zero.xyz/host/mealpulse.vercel.app/llms.txt)
