Data
Random cocktail API
Return a random cocktail recipe via TheCocktailDB (keyless, free) with ingredients+measures as clean arrays, glass, alcoholic flag, and instructions split into steps. Answers 'give me a random cocktail', 'surprise me with a drink', 'what should I make at the bar', 'pick a random drink'.
Price$0.01per request
MethodPOST
Route/v1/data/food-cocktail-random
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
drinkcocktailrandomrecipebarthecocktaildbmixologyinspiration
API URL
Integration docshttps://x402.hexl.dev/v1/data/food-cocktail-randomExample request
{}Example response
{
"drink": {
"id": "11007",
"name": "Margarita",
"category": "Ordinary Drink",
"iba": "Contemporary Classics",
"alcoholic": "Alcoholic",
"glass": "Cocktail glass",
"ingredients": [
{
"name": "Tequila",
"measure": "1 1/2 oz"
}
],
"instructions": "Rub the rim of the glass with the lime slice...",
"steps": [
"Rub the rim of the glass with the lime slice"
],
"tags": [
"IBA",
"ContemporaryClassic"
],
"thumbnail": "https://www.thecocktaildb.com/images/media/drink/5noda61589575158.jpg"
}
}Input schema
{
"type": "object",
"properties": {}
}Output schema
{
"type": "object",
"additionalProperties": true
}