← 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.

Example Requests

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

Live Response

{
  "data": {
    "alcoholic": "Alcoholic",
    "category": "Ordinary Drink",
    "glass": "Collins glass",
    "id": "11462",
    "ingredients": [
      {
        "ingredient": "Vodka",
        "measure": "1 oz "
      },
      {
        "ingredient": "Galliano",
        "measure": "1/2 oz "
      },
      {
        "ingredient": "Orange juice",
        "measure": "4 oz "
      }
    ],
    "instructions": "Stir the vodka and orange juice with ice in the glass, then float the Galliano on top. Garnish and serve.",
    "name": "Harvey Wallbanger",
    "thumbnail": "https://www.thecocktaildb.com/images/media/drink/7os4gs1606854357.jpg"
  },
  "success": true
}