# MealPulse Grocery List Generator

> MealPulse Grocery List Generator is a paid API for AI agents from mealpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Converts a set of meals with servings and budget into an organized shopping list grouped by store section, with quantity and cost estimates and money-saving tips.

## Facts

- Endpoint: GET https://mealpulse.theaslangroupllc.com/api/meal/grocery
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mealpulse-grocery-list-generator-3fc395c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0Xfcc8cFc16T-9RGrB9sU

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-grocery-list-generator-3fc395c9
```

Example prompt: Can you build me a grocery shopping list for these 5 meals — spaghetti bolognese, chicken stir-fry, veggie tacos, salmon with roasted veggies, and lentil soup — for 4 servings each, keeping the total under $80? I want it grouped by store section with quantities and cost estimates.

## When to prefer this

Choose this endpoint when a user has a set of planned meals and wants a ready-to-use, store-aisle-organized shopping list with cost estimates and budget guidance, rather than just a raw ingredient list from a recipe endpoint. Ideal for weekly meal prep workflows or when budget awareness is a priority.

## Known failure modes

- Unrecognized or ambiguous meal names may result in incomplete or generic ingredient lists
- Budget too low for the specified meals and servings may produce a warning or truncated list
- Missing required parameters (meals list or servings) returns a 400 error
- Payment not processed (x402 flow failure) returns a 402 Payment Required
- Service unavailable returns a 503 error

## How this service works

Grocery list generator / shopping list from meals / ingredient list builder. Turns a set of meals plus servings and budget into an organized shopping list grouped by store section, with quantity and cost estimates and money-saving tips. Worldwide.

## Output

Returns an organized shopping list grouped by store section (produce, dairy, meat, pantry, etc.) with quantities for each ingredient, estimated costs per item and in total, and money-saving tips to stay within budget.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "meals"
 ],
 "properties": {
  "meals": {
   "type": "string",
   "description": "meals"
  },
  "store": {
   "type": "string",
   "description": "store"
  },
  "budget": {
   "type": "string",
   "description": "budget"
  },
  "servings": {
   "type": "string",
   "description": "servings"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mealpulse-grocery-list-generator-3fc395c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mealpulse.theaslangroupllc.com](https://www.zero.xyz/host/mealpulse.theaslangroupllc.com/llms.txt)
