# Suverse Random Cocktail

> Suverse Random Cocktail 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 single random cocktail from TheCocktailDB including full ingredient list and preparation instructions

## Facts

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

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-random-cocktail-a730756f -d '<json body>'
```

Example prompt: Surprise me — pull a completely random cocktail recipe right now and tell me what's in it and how to make it.

## When to prefer this

Use this endpoint when you need a zero-configuration random cocktail suggestion without managing a TheCocktailDB API key. It's ideal for AI agents handling drink recommendations on the fly, daily inspiration features, or any scenario where a single random recipe with full details (ingredients, instructions, glassware) is sufficient and no filtering by ingredient or category is needed.

## Known failure modes

- TheCocktailDB upstream unavailable — may return a 502 or timeout
- Payment not fulfilled (x402 flow) — request rejected before proxying
- Malformed POST body — returns validation error if required input fields are missing
- Occasionally returns a non-alcoholic drink or obscure regional cocktail that may not match user expectations

## How this service works

A random cocktail from TheCocktailDB, no key. Returns one drink with full ingredients and instructions. For AI agents suggesting drinks.

## Output

A single randomly selected cocktail object containing the drink name, category, glass type, thumbnail image URL, full ingredient list with measurements, and step-by-step preparation instructions as sourced from TheCocktailDB.

## 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-random-cocktail-a730756f/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)
