# Suverse Meal By Ingredient

> Suverse Meal By Ingredient is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-14).

Looks up recipes from TheMealDB that feature a specified main ingredient, returning a list of matching meals

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-meal-by-ingredient
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-meal-by-ingredient-dfa802bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L-iaoaF11dTLe5j5Xp7DS

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 suverse-meal-by-ingredient-dfa802bd -d '<json body>'
```

Example prompt: I have chicken in the fridge — can you find me some recipes that use chicken as the main ingredient?

## When to prefer this

Use this endpoint when an agent needs to discover meal ideas based on a specific ingredient on hand, without requiring an API key. Ideal for pantry/fridge-based meal planning workflows, cooking assistant agents, or any scenario where the user wants recipe inspiration grounded in what they already have. Prefer over raw TheMealDB calls when operating in an x402-compatible agentic environment.

## Known failure modes

- Ingredient name not recognized by TheMealDB returns empty meals array
- Misspelled or non-English ingredient names may return no results
- Very obscure or regional ingredients may have no matches in TheMealDB database
- Payment failure via x402 protocol returns 402 status with no data
- Malformed request body returns a 400-level error

## How this service works

Recipes that use a main ingredient from TheMealDB, no key. Returns meals containing the ingredient. For AI agents building recipes around what is on hand.

## Output

A list of meals from TheMealDB that feature the given ingredient, typically including meal names, meal IDs, and thumbnail image URLs for each matching recipe.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-meal-by-ingredient-dfa802bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
