← 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": "Cocktail",
    "glass": "Highball glass",
    "id": "178340",
    "ingredients": [
      {
        "ingredient": "Gin",
        "measure": "30 ml"
      },
      {
        "ingredient": "Campari",
        "measure": "30 ml"
      },
      {
        "ingredient": "Orange Juice",
        "measure": "90 ml"
      },
      {
        "ingredient": "Orange Peel",
        "measure": "Garnish with"
      }
    ],
    "instructions": "Mix together in a shaker and garnish with a simple orange slice. Fill your vitamin C and cocktail fix at the same time!",
    "name": "Garibaldi Negroni",
    "thumbnail": "https://www.thecocktaildb.com/images/media/drink/kb4bjg1604179771.jpg"
  },
  "success": true
}