← 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": "Shot glass",
    "id": "14610",
    "ingredients": [
      {
        "ingredient": "151 proof rum",
        "measure": "1 oz Bacardi "
      },
      {
        "ingredient": "Wild Turkey",
        "measure": "1 oz "
      }
    ],
    "instructions": "Poor in the 151 first followed by the 101 served with a Coke or Dr Pepper chaser.",
    "name": "ACID",
    "thumbnail": "https://www.thecocktaildb.com/images/media/drink/xuxpxt1479209317.jpg"
  },
  "success": true
}