# Suverse Cocktail by Ingredient Lookup

> Suverse Cocktail by Ingredient 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-15).

Returns a list of cocktail recipes from TheCocktailDB that contain a specified ingredient, enabling agents to build drink menus around available ingredients.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-cocktail-by-ingredient
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-cocktail-by-ingredient-lookup-b8af6b2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JfQfW3taGb9iim6xOnIjw

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-cocktail-by-ingredient-lookup-b8af6b2a -d '<json body>'
```

Example prompt: What cocktails can I make with gin? Look up drinks that use gin as an ingredient and show me the list.

## When to prefer this

Choose this endpoint when an agent needs to discover cocktail recipes based on a specific ingredient the user has available. It is ideal for drink-planning features, bar inventory assistants, or recipe recommendation flows where the constraint is an ingredient rather than a cocktail name. Prefer this over a full cocktail database query when you want to filter by ingredient without needing an API key for TheCocktailDB.

## Known failure modes

- Ingredient name not found in TheCocktailDB — returns empty or null drinks array
- Misspelled ingredient name yields no results
- TheCocktailDB upstream outage causes request failure
- Rate limiting or payment failure at the proxy layer ($0.002 USDC per call)

## How this service works

Cocktails that use an ingredient from TheCocktailDB, no key. Returns drinks containing the ingredient. For AI agents building drinks around available ingredients.

## Output

A list of cocktails (drink names and associated details) from TheCocktailDB that contain the specified ingredient, allowing agents to present recipe options or filter further by other criteria.

## 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-cocktail-by-ingredient-lookup-b8af6b2a/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)
