← Underhållning

Slumpmässig cocktail

GET /cocktails/random

Get a slumpmässig cocktail recipe med fullständig detaljer: namn, bild, ingredienser med measurements, mixing instructions, glass type, and category. Perfekt för 'surprise me' drink funktioner, cocktail-of-the-day widgetar, bartending practice verktyg, and social gathering appar. Data från TheCocktailDB som täcker hundreds of klassisk and modern cocktails.

Exempelförfrågningar

Grundläggande användning
curl https://nordapi.ee/api/v1/cocktails/random

Livesvar

{
  "data": {
    "alcoholic": "Alcoholic",
    "category": "Punch / Party Drink",
    "glass": "Hurricane glass",
    "id": "16991",
    "ingredients": [
      {
        "ingredient": "Fruit punch",
        "measure": "2 part "
      },
      {
        "ingredient": "Sprite",
        "measure": "1 part "
      },
      {
        "ingredient": "Tequila",
        "measure": "2 shots "
      },
      {
        "ingredient": "151 proof rum",
        "measure": "Float Bacardi "
      }
    ],
    "instructions": "Start with the Sprite. Next comes the tequila. After that, add the Minute Maid Fruit Punch, then float the 151. Rocks optional.",
    "name": "Downshift",
    "thumbnail": "https://www.thecocktaildb.com/images/media/drink/y36z8c1503563911.jpg"
  },
  "success": true
}