# Suverse Meal Lookup

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

Fetches a full recipe by TheMealDB meal ID, returning ingredients, measures, and cooking instructions without requiring an API key.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-meal-lookup
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-meal-lookup-2ba6ca2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xMuifeGJM6xV2Tj-vMnAb

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-lookup-2ba6ca2c -d '<json body>'
```

Example prompt: Can you fetch me the full recipe details from TheMealDB for meal ID 52772 — I need the ingredient list, measurements, and cooking instructions?

## When to prefer this

Choose this endpoint when you have a specific TheMealDB meal ID and need the full recipe details — ingredients, measures, and instructions — without managing your own TheMealDB API key. Ideal for AI agents that have already identified a meal and need to hydrate its full data in a single call.

## Known failure modes

- Invalid or non-existent TheMealDB meal ID returns empty or null meal result
- Malformed POST body or missing required fields returns a 400-level error
- TheMealDB upstream unavailability causes a timeout or 5xx error
- Payment failure (x402) blocks the request before it reaches the lookup service

## How this service works

Look up a full recipe by its TheMealDB id, no key. Returns the meal with ingredients, measures, and instructions. For AI agents fetching a specific recipe.

## Output

Returns a meal object containing the meal name, full ingredient list with corresponding measurements, and complete cooking instructions as sourced from TheMealDB, identified by the provided meal ID.

## 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-lookup-2ba6ca2c/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)
