# MealPulse Ingredient Substitution Guide

> MealPulse Ingredient Substitution Guide is a paid API for AI agents from mealpulse.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns exact substitution ratios and honest notes on how closely each substitute matches the original ingredient in cooking

## Facts

- Endpoint: GET https://mealpulse.vercel.app/api/meal/substitute
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mealpulse-ingredient-substitution-guide-f59360bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D3suYlcd0NV96ZFe1VwnN

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-ingredient-substitution-guide-f59360bd
```

Example prompt: I don't have heavy cream for my carbonara — what can I substitute for it, and what's the exact ratio I should use so the dish still comes out right?

## When to prefer this

Use this endpoint when a home cook or recipe agent needs to handle a missing ingredient at cook time, accommodate dietary restrictions, or adapt a recipe — especially when exact substitution ratios and quality notes matter more than a generic swap suggestion.

## Known failure modes

- Ingredient not recognized — returns error or empty results if the ingredient name is misspelled or too obscure
- No known substitutes exist for the requested ingredient — returns empty substitute list
- Missing required ingredient parameter — returns 400 bad request
- Payment not processed — returns 402 Payment Required if x402 payment is missing or insufficient

## How this service works

Ingredient substitute finder / what can I use instead of X / cooking swap calculator. Takes an ingredient and the reason (out of it, allergy, dietary) and returns replacement options with exact conversion ratios and honest notes on how close each substitute comes. Worldwide.

## Output

Returns a list of viable ingredient substitutes with exact ratios (e.g. '3/4 cup milk + 1/3 cup butter per 1 cup heavy cream'), plus honest notes on how closely each substitute replicates the original ingredient's flavor, texture, and behavior in cooking.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ingredient"
 ],
 "properties": {
  "reason": {
   "type": "string",
   "description": "reason"
  },
  "ingredient": {
   "type": "string",
   "description": "ingredient"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mealpulse-ingredient-substitution-guide-f59360bd/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)
