# MealPulse Pantry Meal Finder

> MealPulse Pantry Meal Finder 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).

Takes a list of ingredients you have on hand plus optional dietary needs and returns meals you can cook right now with minimal or no extra shopping.

## Facts

- Endpoint: GET https://mealpulse.theaslangroupllc.com/api/meal/pantry
- 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-pantry-meal-finder-f1ed37ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8vIwqIuoGo-tr7qx8hgD1

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-pantry-meal-finder-f1ed37ab
```

Example prompt: I have chicken thighs, garlic, canned tomatoes, onion, and olive oil in my pantry — what meals can I make right now without buying anything extra? I'm gluten-free.

## When to prefer this

Use this endpoint when the user wants to cook a meal using ingredients they already have at home and wants to avoid or minimize extra shopping. Prefer this over a general recipe search when the constraint is ingredient availability rather than dish preference.

## Known failure modes

- No matching meals found for extremely sparse or unusual ingredient lists
- Unrecognized ingredient names return no results or partial matches
- Dietary filter conflicts with all available pantry recipes, returning empty set
- Malformed ingredient list causes 400 bad request
- Service unavailable returns 503 with no meal suggestions

## How this service works

Recipe by ingredients / what can I cook with what I have / pantry meal finder. Takes the ingredients on hand (plus optional dietary needs) and returns meals you can make now with minimal or no extra shopping. Worldwide.

## Output

A list of meals that can be prepared using the provided ingredients, including recipe names, brief descriptions, any missing ingredients needed, and filtering based on dietary restrictions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ingredients"
 ],
 "properties": {
  "dietary": {
   "type": "string",
   "description": "dietary"
  },
  "ingredients": {
   "type": "string",
   "description": "ingredients"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mealpulse-pantry-meal-finder-f1ed37ab/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)
