# MealPulse Recipe Generator

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

Generates a full recipe by dish name, including ingredients, step-by-step instructions, prep/cook time, servings, nutrition info, technique tips, substitutions, dietary tags, and storage guidance

## Facts

- Endpoint: GET https://mealpulse.theaslangroupllc.com/api/meal/recipe
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mealpulse-recipe-generator-052df788
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vIkfgFunaVw-gf3PnPNLf

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-recipe-generator-052df788
```

Example prompt: Can you give me a full recipe for chicken tikka masala, including the ingredient list, step-by-step instructions, nutrition info per serving, and any useful substitutions for common allergens?

## When to prefer this

Choose this endpoint when an agent needs a full, structured recipe with both culinary details (instructions, tips, substitutions) and nutritional data (macros, dietary tags) for a named dish. It is especially useful when the user wants a one-stop resource covering cooking guidance and health information together, and when worldwide cuisine coverage is needed.

## Known failure modes

- Dish name not recognized or too vague — returns empty or error response
- Very obscure or highly regional dish names may yield generic or inaccurate results
- Ambiguous dish names (e.g. 'curry') may return a default variant without user-specified cuisine context
- Payment failure or 402 not resolved — request blocked before reaching recipe generation

## How this service works

Recipe generator / recipe by dish name / cooking instructions with nutrition. Returns a full recipe (ingredients, step-by-step instructions, prep/cook time, servings) plus technique tips, ingredient substitutions, per-serving calories and protein/carbs/fat/fiber, dietary tags, and storage guidance. Worldwide cuisines.

## Output

Returns a complete recipe object with: full ingredient list with quantities, numbered step-by-step cooking instructions, prep and cook times, number of servings, per-serving macros (calories, protein, carbs, fat, fiber), technique tips, ingredient substitution suggestions, dietary tags (e.g. gluten-free, vegan, keto), and storage/leftover guidance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "dish"
 ],
 "properties": {
  "dish": {
   "type": "string",
   "description": "dish"
  },
  "dietary": {
   "type": "string",
   "description": "dietary"
  },
  "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-recipe-generator-052df788/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)
