← Entertainment

Random Cocktail

GET /cocktails/random

Get a random cocktail recipe with full details: name, image, ingredients with measurements, mixing instructions, glass type, and category. Perfect for 'surprise me' drink features, cocktail-of-the-day widgets, bartending practice tools, and social gathering apps. Data from TheCocktailDB covering hundreds of classic and modern cocktails.

See it visualized

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/cocktails/random

Live Response

{
  "data": {
    "alcoholic": "Alcoholic",
    "category": "Shot",
    "glass": "Whiskey sour glass",
    "id": "16942",
    "ingredients": [
      {
        "ingredient": "Chambord raspberry liqueur",
        "measure": "1 shot "
      },
      {
        "ingredient": "Vodka",
        "measure": "1 shot "
      },
      {
        "ingredient": "Soda water",
        "measure": "Fill with "
      }
    ],
    "instructions": "Fill glass with rocks, add straw before putting in liquor. Then add the ingredients in order, trying to keep layered as much as possible (i.e. Chambord on bottom, then Vodka, Then soda on top).",
    "name": "Zipperhead",
    "thumbnail": "https://www.thecocktaildb.com/images/media/drink/r2qzhu1485620235.jpg"
  },
  "success": true
}