← Entretenimiento

Cóctel aleatorio

GET /cocktails/random

Get a random cocktail recipe with full details: name, imagen, ingredients with measurements, mixing instructions, glass type, and category. Perfecto para 'surprise me' drink features, cocktail-of-the-day widgets, bartending practice tools, and social gathering apps. Data from TheCocktailDB que cubre hundreds of classic and modern cocktails.

Ejemplos de solicitudes

Uso basico
curl https://nordapi.ee/api/v1/cocktails/random

Respuesta en vivo

{
  "data": {
    "alcoholic": "Alcoholic",
    "category": "Ordinary Drink",
    "glass": "Collins glass",
    "id": "11989",
    "ingredients": [
      {
        "ingredient": "Red wine",
        "measure": "2 oz "
      },
      {
        "ingredient": "Grenadine",
        "measure": "1 oz "
      },
      {
        "ingredient": "Lemon-lime soda",
        "measure": null
      }
    ],
    "instructions": "Pour red wine and grenadine into a collins glass over ice cubes. Fill with lemon-lime soda, stir, and serve.",
    "name": "Queen Charlotte",
    "thumbnail": "https://www.thecocktaildb.com/images/media/drink/vqruyt1478963249.jpg"
  },
  "success": true
}