# Suverse Cocktail Search

> Suverse Cocktail Search 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).

Search cocktails by name from TheCocktailDB, returning full drink details including ingredients, measures, glassware, and preparation instructions.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-cocktail-search
- 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-cocktail-search-ab36eb7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_if-JQCwwoI77Mr7AeL3gG

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-search-ab36eb7b -d '<json body>'
```

Example prompt: Can you look up the full recipe for a Margarita — ingredients, measurements, glass type, and how to make it?

## When to prefer this

Choose this endpoint when you need structured cocktail recipe data including ingredients, measures, glassware, and instructions by name, without needing a TheCocktailDB API key. Ideal for bartending apps, beverage recommendation agents, or any AI workflow that needs drink recipe lookups at low cost per call.

## Known failure modes

- No matching cocktail found for the given name — returns empty drinks array
- Misspelled or ambiguous cocktail name returns partial or no results
- TheCocktailDB upstream service unavailable — request fails or times out
- Payment verification failure for x402 protocol — 402 response before data is returned

## How this service works

Search cocktails by name from TheCocktailDB, no key. Returns drinks with ingredients, measures, glass, and instructions. For AI agents in bartending and beverage apps.

## Output

Returns a list of matching drink objects from TheCocktailDB, each containing the drink name, category, glass type, preparation instructions, and a list of ingredients with their corresponding measures.

## 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-search-ab36eb7b/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)
