← 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": "Beer",
    "glass": "Pint glass",
    "id": "14378",
    "ingredients": [
      {
        "ingredient": "Beer",
        "measure": "3/4 bottle "
      },
      {
        "ingredient": "Amaretto",
        "measure": "1 shot "
      },
      {
        "ingredient": "Orange juice",
        "measure": "1 oz "
      }
    ],
    "instructions": "Fill a pint glass almost full with beer. Then fill the rest with orange juice (careful not to fill it to the top). Then take the shot of Amaretto and drop it in.",
    "name": "Lunch Box",
    "thumbnail": "https://www.thecocktaildb.com/images/media/drink/qywpvt1454512546.jpg"
  },
  "success": true
}