← 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": "Ordinary Drink",
    "glass": "Cocktail glass",
    "id": "11959",
    "ingredients": [
      {
        "ingredient": "Gin",
        "measure": "1 1/2 oz "
      },
      {
        "ingredient": "Creme de Cacao",
        "measure": "3/4 oz white "
      }
    ],
    "instructions": "Shake ingredients with ice, strain into a cocktail glass, and serve.",
    "name": "Poppy Cocktail",
    "thumbnail": "https://www.thecocktaildb.com/images/media/drink/cslw1w1504389915.jpg"
  },
  "success": true
}