# MealPulse Ingredient Substitute Finder

> MealPulse Ingredient Substitute Finder is a paid API for AI agents from mealpulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns ingredient substitution options with exact conversion ratios and fidelity notes given an ingredient and the reason for substitution (out of stock, allergy, or dietary preference).

## Facts

- Endpoint: GET https://mealpulse.theaslangroupllc.com/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-substitute-finder-2d45f2f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pz2xbAzSgv0vu6LUKH_QT

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-substitute-finder-2d45f2f8
```

Example prompt: I'm out of buttermilk and I also need a dairy-free option — what can I substitute and in what ratio? The reason is I'm out of it and also trying to go dairy-free.

## When to prefer this

Use this endpoint when a user needs to substitute a specific ingredient due to being out of it, a food allergy, or a dietary restriction (e.g. vegan, keto, gluten-free), and requires precise conversion ratios rather than vague suggestions. Prefer this over a general recipe API when the user's core need is a like-for-like ingredient swap with honest accuracy notes.

## Known failure modes

- Unknown or misspelled ingredient returns no results or an error
- Unsupported reason enum value causes a validation error
- Exotic or hyper-regional ingredients may return limited substitution options
- Network or payment failure returns a 402 or 5xx error

## 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

A list of substitute ingredients for the queried ingredient, each with an exact conversion ratio (e.g. '1 cup buttermilk = 1 cup oat milk + 1 tbsp vinegar') and an honest note on how closely each substitute approximates the original in flavor, texture, and cooking performance.

## 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-substitute-finder-2d45f2f8/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)
