# Suverse Meal by Category

> Suverse Meal by Category 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-13).

Returns a list of meals filtered by category from TheMealDB, including thumbnails and meal IDs, without requiring an API key.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-meal-by-category
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-meal-by-category-a7c7039b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kuHOqXFpoCjEt6ZHeJGZQ

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-category-a7c7039b -d '<json body>'
```

Example prompt: Can you show me all the meals available in the 'Seafood' category, with their thumbnails and IDs?

## When to prefer this

Choose this endpoint when you need a quick, key-free way to browse meals by category from TheMealDB and want structured results with thumbnails and IDs suitable for display or further lookup. Prefer it over direct TheMealDB access when operating in an x402 payment-gated agentic context.

## Known failure modes

- Invalid or unrecognized category name returns an empty meals list
- Missing required category body parameter causes request failure
- Network or proxy timeout results in no response
- TheMealDB upstream downtime causes proxy to return an error

## How this service works

Recipes filtered by category from TheMealDB, no key. Returns meals in the category with thumbnails and ids. For AI agents browsing recipes by type.

## Output

Returns a list of meal objects in the specified category, each containing the meal name, a thumbnail image URL, and a unique meal ID sourced from TheMealDB.

## 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-category-a7c7039b/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)
