├── .gitignore ├── db.json ├── index.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- 1 | { 2 | "products": [ 3 | { 4 | "id": 10000, 5 | "name": "Bacon,Egg & Cheese Biscuit", 6 | "images": [ 7 | { 8 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Bacon-Egg-Cheese-Biscuit-Regular-Size-Biscuit-1:1-4-product-tile-desktop" 9 | }, 10 | { 11 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Bacon-Egg-Cheese-Biscuit-Regular-Size-Biscuit-1:product-header-desktop?wid=829&hei=455&dpr=off" 12 | } 13 | ], 14 | "desc": "The McDonald's Bacon, Egg & Cheese Biscuit breakfast sandwich features a warm, buttermilk biscuit brushed with real butter, thick cut Applewood smoked bacon, a fluffy folded egg, and a slice of melty American cheese. There are 460 calories in a Bacon, Egg & Cheese Biscuit at McDonald's. ", 15 | "ingredients": [ 16 | { 17 | "id": 1, 18 | "name": "Biscuit", 19 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/biscuit" 20 | }, 21 | { 22 | "id": 2, 23 | "name": "Folded Egg", 24 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/folded_egg" 25 | }, 26 | { 27 | "id": 3, 28 | "name": "Pasteurized Process American Cheese", 29 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180" 30 | }, 31 | { 32 | "id": 4, 33 | "name": "Thick Cut Applewood Smoked Bacon", 34 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/applewood_bacon" 35 | }, 36 | { 37 | "id": 5, 38 | "name": "Salted Butter", 39 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted" 40 | }, 41 | { 42 | "id": 6, 43 | "name": "Clarified Butter", 44 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter" 45 | } 46 | ], 47 | "price": 3.23, 48 | "veg": false 49 | }, 50 | { 51 | "id": 1010, 52 | "name": "Egg McMuffin", 53 | "images": [ 54 | { 55 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Egg-McMuffin-1:1-4-product-tile-desktop" 56 | }, 57 | { 58 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Egg-McMuffin-1:product-header-mobile?wid=768&hei=443&dpr=off" 59 | } 60 | ], 61 | "desc": "Our Egg McMuffin® breakfast sandwich is an excellent source of protein and oh so delicious. We place a freshly cracked Grade A egg on a toasted English Muffin topped with real butter and add lean Canadian bacon and melty American cheese. There are 310 calories in an Egg McMuffin®.", 62 | "ingredients": [ 63 | { 64 | "id": 1, 65 | "name": "English Muffin", 66 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/english_muffin" 67 | }, 68 | { 69 | "id": 2, 70 | "name": "Egg", 71 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/round_egg" 72 | }, 73 | { 74 | "id": 3, 75 | "name": "Canadian Bacon", 76 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/canadian_bacon" 77 | }, 78 | { 79 | "id": 4, 80 | "name": "Pasteurized Process American Cheese", 81 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180" 82 | }, 83 | { 84 | "id": 5, 85 | "name": "Salted Butter", 86 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted" 87 | }, 88 | { 89 | "id": 6, 90 | "name": "Clarified Butter", 91 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter" 92 | } 93 | ], 94 | "price": 5, 95 | "veg": false 96 | }, 97 | { 98 | "id": 1030, 99 | "name": "Sausage McMuffin", 100 | "images": [ 101 | { 102 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-McMuffin:1-4-product-tile-desktop" 103 | }, 104 | { 105 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-McMuffin:product-header-mobile?wid=768&hei=441&dpr=off" 106 | } 107 | ], 108 | "desc": "McDonald's Sausage McMuffin® recipe features a warm, freshly toasted English muffin, topped with a savory hot sausage patty and a slice of melty American cheese. There are 400 calories in a Sausage McMuffin® at McDonald's. ", 109 | "ingredients": [ 110 | { 111 | "id": 1, 112 | "name": "English Muffin", 113 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/english_muffin" 114 | }, 115 | { 116 | "id": 2, 117 | "name": "Sausage Patty", 118 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage" 119 | }, 120 | { 121 | "id": 3, 122 | "name": "Salted Butter", 123 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted" 124 | }, 125 | { 126 | "id": 4, 127 | "name": "Clarified Butter", 128 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter" 129 | } 130 | ], 131 | "price": 12, 132 | "veg": false 133 | }, 134 | { 135 | "id": 1040, 136 | "name": "Sausage McMuffin® with Egg", 137 | "images": [ 138 | { 139 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-McMuffin-with-Egg:1-4-product-tile-desktop" 140 | }, 141 | { 142 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-McMuffin-with-Egg:product-header-mobile?wid=768&hei=443&dpr=off" 143 | } 144 | ], 145 | "desc": "McDonald’s Sausage McMuffin® with Egg features a savory hot sausage, a slice of melty American cheese, and a delicious freshly cracked egg all on a freshly toasted English muffin. There are 480 calories in Sausage McMuffin® with Egg at McDonald's.", 146 | "ingredients": [ 147 | { 148 | "id": 1, 149 | "name": "English Muffin", 150 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/english_muffin" 151 | }, 152 | { 153 | "id": 2, 154 | "name": "Sausage Patty", 155 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage" 156 | }, 157 | { 158 | "id": 3, 159 | "name": "Egg", 160 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/round_egg" 161 | }, 162 | { 163 | "id": 4, 164 | "name": "Pasteurized Process American Cheese", 165 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180" 166 | }, 167 | { 168 | "id": 5, 169 | "name": "Salted Butter", 170 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted" 171 | }, 172 | { 173 | "id": 6, 174 | "name": "Clarified Butter", 175 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter" 176 | } 177 | ], 178 | "price": 5.6, 179 | "veg": false 180 | }, 181 | { 182 | "id": 1050, 183 | "name": "Sausage Biscuit", 184 | "images": [ 185 | { 186 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Biscuit-Regular-Size-Biscuit-1:1-4-product-tile-desktop" 187 | }, 188 | { 189 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Biscuit-Regular-Size-Biscuit-1:product-header-mobile?wid=768&hei=443&dpr=off" 190 | } 191 | ], 192 | "desc": "McDonald’s Sausage Biscuit is the perfect sausage breakfast sandwich, made with sizzling hot sausage on a warm buttermilk biscuit that’s topped with real butter and baked to perfection. There are 460 calories in a McDonald's Sausage Biscuit.", 193 | "ingredients": [ 194 | { 195 | "id": 1, 196 | "name": "Biscuit", 197 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/biscuit" 198 | }, 199 | { 200 | "id": 2, 201 | "name": "Sausage Patty", 202 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage" 203 | }, 204 | { 205 | "id": 5, 206 | "name": "Salted Butter", 207 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted" 208 | } 209 | ], 210 | "price": 12, 211 | "veg": false 212 | }, 213 | { 214 | "id": 1060, 215 | "name": "Sausage Biscuit with Egg", 216 | "images": [ 217 | { 218 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Biscuit-with-Egg-Regular-Size-Biscuit-1:1-4-product-tile-desktop" 219 | }, 220 | { 221 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Biscuit-with-Egg-Regular-Size-Biscuit-1:product-header-mobile?wid=768&hei=441&dpr=off" 222 | } 223 | ], 224 | "desc": "McDonald's Sausage and Egg Biscuit features a warm, flaky biscuit brushed with real butter, a sizzling hot pork sausage patty, and a classic McDonald's folded egg. It's the perfect savory breakfast sandwich when you're looking for a quick, easy breakfast.", 225 | "ingredients": [ 226 | { 227 | "id": 1, 228 | "name": "Biscuit", 229 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/biscuit" 230 | }, 231 | { 232 | "id": 2, 233 | "name": "Folded Egg", 234 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/folded_egg" 235 | }, 236 | { 237 | "id": 3, 238 | "name": "Sausage Patty", 239 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage" 240 | }, 241 | { 242 | "id": 4, 243 | "name": "Salted Butter", 244 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted" 245 | }, 246 | { 247 | "id": 5, 248 | "name": "Clarified Butter", 249 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter" 250 | } 251 | ], 252 | "price": 4.6, 253 | "veg": false 254 | }, 255 | { 256 | "id": 1070, 257 | "name": "Bacon, Egg & Cheese McGriddles®", 258 | "images": [ 259 | { 260 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Egg-Cheese-McGriddles-1:1-4-product-tile-desktop" 261 | }, 262 | { 263 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Egg-Cheese-McGriddles:product-header-mobile?wid=768&hei=441&dpr=off" 264 | } 265 | ], 266 | "desc": "Sausage, Egg & Cheese McGriddles® feature soft, warm griddle cakes—with the sweet taste of maple—that hold a fluffy folded egg, savory sausage, and melty American cheese. McGriddles® cakes have no artificial preservatives or flavors and no colors from artificial sources. There are 550 calories in a Sausage, Egg, and Cheese McGriddles®.", 267 | "ingredients": [ 268 | { 269 | "id": 1, 270 | "name": "Griddle Cakes", 271 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/McGriddles_top" 272 | }, 273 | { 274 | "id": 2, 275 | "name": "Sausage Patty", 276 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage" 277 | }, 278 | { 279 | "id": 3, 280 | "name": "Folded Egg", 281 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/folded_egg" 282 | }, 283 | { 284 | "id": 4, 285 | "name": "Pasteurized Process American Cheese", 286 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180" 287 | }, 288 | { 289 | "id": 5, 290 | "name": "Clarified Butter", 291 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter" 292 | } 293 | ], 294 | "price": 12, 295 | "veg": false 296 | }, 297 | { 298 | "id": 1080, 299 | "name": "Crispy Chicken Sandwich", 300 | "images": [ 301 | { 302 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-crispy-chicken-sandwich:1-4-product-tile-desktop" 303 | }, 304 | { 305 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-crispy-chicken-sandwich:product-header-mobile?wid=768&hei=443&dpr=off" 306 | } 307 | ], 308 | "desc": "McDonald's Crispy Chicken Sandwich is a southern style fried chicken sandwich that's crispy, juicy and tender perfection. It’s topped with crinkle-cut pickles and served on a toasted, buttered potato roll. The Crispy Chicken sandwich has 470 calories.", 309 | "ingredients": [ 310 | { 311 | "id": 1, 312 | "name": "Crispy Chicken Fillet", 313 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crispy-chicken-fillet" 314 | }, 315 | { 316 | "id": 2, 317 | "name": "Potato Roll", 318 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-potato-roll" 319 | }, 320 | { 321 | "id": 3, 322 | "name": "Crinkle Cut Pickle", 323 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crinkle-cut-pickle" 324 | }, 325 | { 326 | "id": 4, 327 | "name": "Salted Butter", 328 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted" 329 | } 330 | ], 331 | "price": 8, 332 | "veg": false 333 | }, 334 | { 335 | "id": 1090, 336 | "name": "Deluxe Crispy Chicken Sandwich", 337 | "images": [ 338 | { 339 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-deluxe-crispy-chicken-sandwich:1-4-product-tile-desktop" 340 | }, 341 | { 342 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-deluxe-crispy-chicken-sandwich:product-header-mobile?wid=768&hei=443&dpr=off" 343 | } 344 | ], 345 | "desc": "Get a little extra with toppings. Go deluxe with shredded lettuce, Roma tomatoes and mayo to take crispy, juicy and tender to the next level. The Deluxe Crispy Chicken sandwich has 530 calories.", 346 | "ingredients": [ 347 | { 348 | "id": 1, 349 | "name": "Crispy Chicken Fillet", 350 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crispy-chicken-fillet" 351 | }, 352 | { 353 | "id": 2, 354 | "name": "Potato Roll", 355 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-potato-roll" 356 | }, 357 | { 358 | "id": 3, 359 | "name": "Roma Tomato", 360 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/Ingredients_Tomato_180x180" 361 | }, 362 | { 363 | "id": 4, 364 | "name": "Shredded Lettuce", 365 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce" 366 | }, 367 | { 368 | "id": 5, 369 | "name": "Mayonnaise", 370 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/mayonnaise" 371 | } 372 | ], 373 | "price": 10, 374 | "veg": false 375 | }, 376 | { 377 | "id": 10100, 378 | "name": "Spicy Crispy Chicken Sandwich", 379 | "images": [ 380 | { 381 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-spicy-crispy-chicken-sandwich:1-4-product-tile-desktop" 382 | }, 383 | { 384 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-spicy-crispy-chicken-sandwich:product-header-mobile?product-header-desktop&wid=768&hei=443&dpr=off" 385 | } 386 | ], 387 | "desc": "With our Spicy Pepper Sauce topping the southern style fried chicken fillet on a toasted potato roll, this sandwich was made for those who like it crispy, juicy, tender and hot. The Spicy Crispy Chicken sandwich has 530 calories.", 388 | "ingredients": [ 389 | { 390 | "id": 1, 391 | "name": "Crispy Chicken Fillet", 392 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crispy-chicken-fillet" 393 | }, 394 | { 395 | "id": 2, 396 | "name": "Potato Roll", 397 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-potato-roll" 398 | }, 399 | { 400 | "id": 3, 401 | "name": "Spicy Pepper Sauce", 402 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-original-spicy-sauce" 403 | }, 404 | { 405 | "id": 4, 406 | "name": "Crinkle Cut Pickle", 407 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crinkle-cut-pickle" 408 | } 409 | ], 410 | "price": 9.6, 411 | "veg": false 412 | }, 413 | { 414 | "id": 10110, 415 | "name": "Spicy Deluxe Crispy Chicken Sandwich", 416 | "images": [ 417 | { 418 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-spicy-deluxe-crispy-chicken-sandwich:1-4-product-tile-desktop" 419 | }, 420 | { 421 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-spicy-deluxe-crispy-chicken-sandwich:product-header-mobile?wid=768&hei=441&dpr=off" 422 | } 423 | ], 424 | "desc": "The Spicy Deluxe Crispy Chicken is big on everything, including heat. Our southern-style fried chicken fillet on a potato roll, topped with shredded lettuce, Roma tomatoes and Spicy Pepper Sauce kicks crispy, juicy and tender up to the highest level. The Spicy Deluxe Crispy Chicken sandwich has 540 calories.", 425 | "ingredients": [ 426 | { 427 | "id": 1, 428 | "name": "Crispy Chicken Fillet", 429 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crispy-chicken-fillet" 430 | }, 431 | { 432 | "id": 2, 433 | "name": "Potato Roll", 434 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-potato-roll" 435 | }, 436 | { 437 | "id": 3, 438 | "name": "Roma Tomato", 439 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/Ingredients_Tomato_180x180" 440 | }, 441 | { 442 | "id": 4, 443 | "name": "Spicy Pepper Sauce", 444 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/t-original-spicy-sauce" 445 | }, 446 | { 447 | "id": 5, 448 | "name": "Shredded Lettuce", 449 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce" 450 | } 451 | ], 452 | "price": 15, 453 | "veg": false 454 | }, 455 | { 456 | "id": 10120, 457 | "name": "Filet-O-Fish®", 458 | "images": [ 459 | { 460 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Filet-O-Fish-1:1-4-product-tile-desktop" 461 | }, 462 | { 463 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Filet-O-Fish-1:product-header-mobile?wid=768&hei=443&dpr=off" 464 | } 465 | ], 466 | "desc": "Dive into our wild-caught Filet-O-Fish®! This McDonald’s fish sandwich has fish sourced from sustainably managed fisheries, on melty American cheese and topped with creamy McDonald’s tartar sauce, all served on a soft, steamed bun. There are 390 calories in McDonald's Filet-O-Fish.", 467 | "ingredients": [ 468 | { 469 | "id": 1, 470 | "name": "Fish Filet Patty", 471 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/fish" 472 | }, 473 | { 474 | "id": 2, 475 | "name": "Regular Bun", 476 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/regular_bun" 477 | }, 478 | { 479 | "id": 3, 480 | "name": "Tartar Sauce", 481 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/default_logo" 482 | }, 483 | { 484 | "id": 4, 485 | "name": "Pasteurized Process American Cheese Half Slice", 486 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/american_cheese_half" 487 | }, 488 | { 489 | "id": 5, 490 | "name": "Shredded Lettuce", 491 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce" 492 | } 493 | ], 494 | "price": 7, 495 | "veg": false 496 | }, 497 | { 498 | "id": 10130, 499 | "name": "McChicken®", 500 | "images": [ 501 | { 502 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-McChicken-1:1-4-product-tile-desktop" 503 | }, 504 | { 505 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-McChicken-1:product-header-mobile?wid=768&hei=443&dpr=off" 506 | } 507 | ], 508 | "desc": "It’s a classic for a reason. Savor the satisfying crunch of our juicy chicken patty, topped with shredded lettuce and just the right amount of creamy mayonnaise, all served on a perfectly toasted bun.* The McChicken® has 400 calories.", 509 | "ingredients": [ 510 | { 511 | "id": 1, 512 | "name": "McChicken Patty", 513 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/mcchicken" 514 | }, 515 | { 516 | "id": 2, 517 | "name": "Regular Bun", 518 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/regular_bun" 519 | }, 520 | { 521 | "id": 3, 522 | "name": "Shredded Lettuce", 523 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce" 524 | }, 525 | { 526 | "id": 4, 527 | "name": "Mayonnaisee", 528 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/mayonnaisef" 529 | } 530 | ], 531 | "price": 8, 532 | "veg": false 533 | }, 534 | { 535 | "id": 10140, 536 | "name": "Big Mac®", 537 | "images": [ 538 | { 539 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Big-Mac-1:1-4-product-tile-desktop" 540 | }, 541 | { 542 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Big-Mac-1:product-header-mobile?wid=768&hei=441&dpr=off" 543 | } 544 | ], 545 | "desc": "Ever wondered what's on a Big Mac®? The McDonald's Big Mac® is a 100% beef burger with a taste like no other. The mouthwatering perfection starts with two 100% pure all beef patties and Big Mac® sauce sandwiched between a sesame seed bun. It’s topped off with pickles, crisp shredded lettuce, finely chopped onion, and a slice of American cheese. It contains no artificial flavors, preservatives, or added colors from artificial sources. Our pickle contains an artificial preservative, so skip it if you like. There are 550 calories in a Big Mac® from McDonald's. Pair it with any of our beverages or grab a Big Mac® Combo Meal with our World Famous Fries® and Coca-Cola® or any of your favorite fountain drinks.", 546 | "ingredients": [ 547 | { 548 | "id": 1, 549 | "name": "Big Mac Bun", 550 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/big_mac_bun" 551 | }, 552 | { 553 | "id": 2, 554 | "name": "100% Beef Patty", 555 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/10_1_patty" 556 | }, 557 | { 558 | "id": 3, 559 | "name": "Shredded Lettuce", 560 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce" 561 | }, 562 | { 563 | "id": 4, 564 | "name": "Big Mac Sauce", 565 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/big_mac_sauce" 566 | }, 567 | { 568 | "id": 5, 569 | "name": "Pasteurized Process American Cheese", 570 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180" 571 | }, 572 | { 573 | "id": 6, 574 | "name": "Pickle Slices", 575 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/pickles" 576 | }, 577 | { 578 | "id": 7, 579 | "name": "Onions", 580 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/reconstituted_onions" 581 | } 582 | ], 583 | "price": 10.45, 584 | "veg": false 585 | }, 586 | { 587 | "id": 10150, 588 | "name": "Quarter Pounder®* with Cheese", 589 | "images": [ 590 | { 591 | "sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Quarter-Pounder-with-Cheese-1:1-4-product-tile-desktop" 592 | }, 593 | { 594 | "lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Quarter-Pounder-with-Cheese-1:product-header-mobile?wid=768&hei=443&dpr=off" 595 | } 596 | ], 597 | "desc": "Each Quarter Pounder® with Cheese burger features a ¼ lb.* of 100% fresh beef that’s hot, deliciously juicy and cooked when you order. It’s seasoned with just a pinch of salt and pepper, sizzled on a flat iron grill, then topped with slivered onions, tangy pickles and two slices of melty American cheese on a sesame seed bun. Our QPC® contains no artificial flavors, preservatives or added colors from artificial sources. **Our pickle contains an artificial preservative, so skip it if you like. A Quarter Pounder® with Cheese has 520 Calories. ", 598 | "ingredients": [ 599 | { 600 | "id": 1, 601 | "name": "Quarter Pound 100% Beef Patty", 602 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/default_logo" 603 | }, 604 | { 605 | "id": 2, 606 | "name": "Quarter Pound Bun", 607 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/quarter_pounder_bun" 608 | }, 609 | { 610 | "id": 3, 611 | "name": "Pasteurized Process American Cheese", 612 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180" 613 | }, 614 | { 615 | "id": 4, 616 | "name": "Ketchup", 617 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/ketchup" 618 | }, 619 | { 620 | "id": 5, 621 | "name": "Pickle Slices", 622 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/pickles" 623 | }, 624 | { 625 | "id": 6, 626 | "name": "Onions", 627 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/slivered_onions" 628 | }, 629 | { 630 | "id": 7, 631 | "name": "Mustard", 632 | "img": "https://s7d1.scene7.com/is/image/mcdonalds/mustard" 633 | } 634 | ], 635 | "price": 6, 636 | "veg": false 637 | } 638 | ], 639 | "food": [ 640 | { 641 | "id": "ea43ffb8500c4bc8a32faffa", 642 | "spirit_id": "gin", 643 | "cocktail_name": "20th Century", 644 | "description": "The 20th Century Cocktail made with gin, Lillet blanc, white creme de cacao and lemon juice. According to the book \"Cafe Royal Cocktail Book\" by William J. Tarling, The cocktail was created by British bartender C.A. Tuck and named for the luxurious 20th Century Limited passenger train that ran between New York City and Chicago from 1902 to 1967.", 645 | "additional_tips": "", 646 | "alcoholic": true, 647 | "price": "12", 648 | "img": "https://products3.imgix.drizly.com/ci-jameson-black-barrel-23ea6e770bbc32f3.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 649 | "garnish": "lemon twist", 650 | "ingredients": [ 651 | { 652 | "list_order": 1, 653 | "amount": "1 1/2 ounces (45ml)", 654 | "ingredient": { 655 | "name": "gin", 656 | "description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.", 657 | "id": "gin" 658 | } 659 | }, 660 | { 661 | "list_order": 2, 662 | "amount": "1/2 ounce (15ml)", 663 | "ingredient": { 664 | "name": "Lillet blanc", 665 | "description": "Lillet is a French wine-based aperitif from Podensac. Classed as an aromatised wine Lillet Blanc a sweeter variant of the white-wine-based version with reduced quinine content.", 666 | "id": "lilletblanc" 667 | } 668 | }, 669 | { 670 | "list_order": 3, 671 | "amount": "1/2 ounce (15ml)", 672 | "ingredient": { 673 | "name": "white creme de cacao", 674 | "description": "Crème de Cacao is a sweet alcoholic liqueur (chocolate bean) flavored liqueur, often scented with a hint of vanilla. It is different from chocolate liqueur, which is usually sweeter and more syrupy. It comes in 2 varieties, dark and white.", 675 | "id": "whitecremedecacao" 676 | } 677 | }, 678 | { 679 | "list_order": 4, 680 | "amount": "3/4 ounce (22.5ml)", 681 | "ingredient": { 682 | "name": "lemon juice", 683 | "description": "Lemon juice is made from freshly squeezed lemons.", 684 | "id": "lemonjuice" 685 | } 686 | } 687 | ], 688 | "steps": [ 689 | { 690 | "step": 1, 691 | "instructions": "Add the gin, Lillet blanc, white creme de cacao and lemon juice to a shaker with ice and shake until well-chilled." 692 | }, 693 | { 694 | "step": 2, 695 | "instructions": "Fine-strain into a chilled coupe." 696 | }, 697 | { 698 | "step": 3, 699 | "instructions": "Garnish with a lemon twist." 700 | } 701 | ], 702 | "glasses": [ 703 | { 704 | "list_order": 1, 705 | "glass": { 706 | "name": "Champagne Saucer (Coupe)", 707 | "description": "The Champagne saucer is also called a coupe glass. With a flatter, rounder bowl, it is a more traditional glass design for serving sparkling wines. It holds around 6 to 8 ounces.", 708 | "image_url": "https://rapid.drinks.digital/static/coupe.png", 709 | "id": "coupe" 710 | } 711 | }, 712 | { 713 | "list_order": 2, 714 | "glass": { 715 | "name": "Cocktail (or Martini) Glass", 716 | "description": "The familiar conical shape of the cocktail glass makes most people think of a martini. Cocktail glasses are used for drinks between 3 and 6 ounces. Cocktail glasses are also a good alternative to margarita glasses.", 717 | "image_url": "https://rapid.drinks.digital/static/cocktail.png", 718 | "id": "cocktail" 719 | } 720 | } 721 | ], 722 | "tags": [ 723 | { 724 | "list_order": 1, 725 | "tag": { 726 | "id": "dessert", 727 | "name": "Dessert Cocktails" 728 | } 729 | } 730 | ], 731 | "created_at": "2022-12-04T02:31:08.290136+00:00", 732 | "updated_at": null 733 | }, 734 | { 735 | "id": "e2677dfe0cc14bcfa9e0e5ed", 736 | "spirit_id": "gin", 737 | "cocktail_name": "50/50 Martini", 738 | "description": "The martini is a cocktail made with gin and vermouth, and garnished with an olive or a lemon twist. A 50/50 martini uses equal amounts of gin and vermouth.", 739 | "additional_tips": "", 740 | "alcoholic": true, 741 | "price": "33", 742 | "img": "https://products1.imgix.drizly.com/ci-the-glenlivet-14-year-cognac-cask-edition-3f28d819a520951c.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 743 | "garnish": "lemon twist", 744 | "ingredients": [ 745 | { 746 | "list_order": 1, 747 | "amount": "1 1/2 ounces (45ml)", 748 | "ingredient": { 749 | "name": "gin", 750 | "description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.", 751 | "id": "gin" 752 | } 753 | }, 754 | { 755 | "list_order": 2, 756 | "amount": "1 1/2 ounces (45ml)", 757 | "ingredient": { 758 | "name": "dry vermouth", 759 | "description": "Vermouth is an aromatized fortified wine, sweet vermouth has a higher amount of sugar added and is often brownish red from caramel coloring.", 760 | "id": "dryvermouth" 761 | } 762 | }, 763 | { 764 | "list_order": 3, 765 | "amount": "1 dash", 766 | "ingredient": { 767 | "name": "orange bitters", 768 | "description": "Orange bitters is a form of bitters, a cocktail flavoring made from such ingredients as the peels of Seville oranges, cardamom, caraway seed, coriander, anise, and burnt sugar in an alcohol base.", 769 | "id": "orangebitters" 770 | } 771 | } 772 | ], 773 | "steps": [ 774 | { 775 | "step": 1, 776 | "instructions": "In a mixing glass add the gin, dry vermouth and orange bitters. Fill with ice and stir until well-chilled." 777 | }, 778 | { 779 | "step": 2, 780 | "instructions": "Strain into a chilled cocktail glass." 781 | }, 782 | { 783 | "step": 3, 784 | "instructions": "Garnish with a lemon twist." 785 | } 786 | ], 787 | "glasses": [ 788 | { 789 | "list_order": 1, 790 | "glass": { 791 | "name": "Cocktail (or Martini) Glass", 792 | "description": "The familiar conical shape of the cocktail glass makes most people think of a martini. Cocktail glasses are used for drinks between 3 and 6 ounces. Cocktail glasses are also a good alternative to margarita glasses.", 793 | "image_url": "https://rapid.drinks.digital/static/cocktail.png", 794 | "id": "cocktail" 795 | } 796 | }, 797 | { 798 | "list_order": 2, 799 | "glass": { 800 | "name": "Champagne Saucer (Coupe)", 801 | "description": "The Champagne saucer is also called a coupe glass. With a flatter, rounder bowl, it is a more traditional glass design for serving sparkling wines. It holds around 6 to 8 ounces.", 802 | "image_url": "https://rapid.drinks.digital/static/coupe.png", 803 | "id": "coupe" 804 | } 805 | }, 806 | { 807 | "list_order": 3, 808 | "glass": { 809 | "name": "Nick and Nora Glass", 810 | "description": "Named after Nick and Nora Charles, the main characters in the 1934 comedy-mystery film, The Thin Man, this type of cocktail glass is a specialty alternative to the champagne saucer. It features a bell-shaped bowl that sits on top of a long stem—slightly resembling the design of a white wine glass. Nick and Nora glasses are most commonly used to serve drinks that are shaken or stirred. They are also used to serve any beverage that's otherwise served in a martini glass.", 811 | "image_url": "https://rapid.drinks.digital/static/nick.png", 812 | "id": "nick" 813 | } 814 | } 815 | ], 816 | "tags": [ 817 | { 818 | "list_order": 1, 819 | "tag": { 820 | "id": "classic", 821 | "name": "Classic Cocktails" 822 | } 823 | } 824 | ], 825 | "created_at": "2022-12-06T00:07:09.939403+00:00", 826 | "updated_at": null 827 | }, 828 | { 829 | "id": "82869651ce2140288fcbea2e", 830 | "spirit_id": "whiskey", 831 | "cocktail_name": "7 and 7", 832 | "description": "A 7 and 7 is a highball cocktail, a mixed alcoholic drink containing Seagram's Seven Crown and 7 Up. It is typically served with ice. It was one of the most popular drinks in the United States during the 1970s.", 833 | "additional_tips": "", 834 | "alcoholic": true, 835 | "price": "76", 836 | "img": "https://products0.imgix.drizly.com/ci-the-glenlivet-18-year-old-338aefcb8222e3e3.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 837 | "garnish": "", 838 | "ingredients": [ 839 | { 840 | "list_order": 1, 841 | "amount": "1 1/2 ounces (45ml)", 842 | "ingredient": { 843 | "name": "Seagram’s 7 Crown whiskey", 844 | "description": "Seagram’s 7 Crown is blended American whiskey aged in oak.", 845 | "id": "seagrams7" 846 | } 847 | }, 848 | { 849 | "list_order": 2, 850 | "amount": "4 ounces (120ml)", 851 | "ingredient": { 852 | "name": "7UP", 853 | "description": "7 Up (stylized as 7up outside North America) is an American brand of lemon-lime-flavored non-caffeinated soft drink. The brand and formula is owned by Keurig Dr Pepper although the beverage is internationally distributed by PepsiCo. 7 Up competes primarily against The Coca-Cola Company's Sprite.", 854 | "id": "7up" 855 | } 856 | } 857 | ], 858 | "steps": [ 859 | { 860 | "step": 1, 861 | "instructions": "Fill a highball glass with ice." 862 | }, 863 | { 864 | "step": 2, 865 | "instructions": "Add the whiskey and top with 7UP and stir gently." 866 | } 867 | ], 868 | "glasses": [ 869 | { 870 | "list_order": 1, 871 | "glass": { 872 | "name": "Highball Glass", 873 | "description": "They can be used for tall drinks ,though that can be anywhere from 8 to 16 ounces. The collins glass tends to be taller and narrower, more of a chimney shape.", 874 | "image_url": "https://rapid.drinks.digital/static/highball.png", 875 | "id": "highball" 876 | } 877 | }, 878 | { 879 | "list_order": 2, 880 | "glass": { 881 | "name": "Collins Glass", 882 | "description": "Tall glasses are essential in any bar. They're used for tall mixed drinks. The highball is typically more stout and tops off at 10 ounces.", 883 | "image_url": "https://rapid.drinks.digital/static/collins.png", 884 | "id": "collins" 885 | } 886 | } 887 | ], 888 | "tags": [ 889 | { 890 | "list_order": 1, 891 | "tag": { 892 | "id": "highball", 893 | "name": "Highball" 894 | } 895 | } 896 | ], 897 | "created_at": "2022-12-07T03:20:27.596039+00:00", 898 | "updated_at": null 899 | }, 900 | { 901 | "id": "300f86d70ea54ab5a9d40c20", 902 | "spirit_id": "vodka", 903 | "cocktail_name": "Adios Motherfucker", 904 | "description": "Adios Motherfucker or AMF (also known as Boston tea party) is considered a variation of the Long Island Iced Tea with Blue Curaçao substituting for the triple sec, and with lemon-lime soda substituting for the cola.", 905 | "additional_tips": "", 906 | "price": "87", 907 | "img": "https://products0.imgix.drizly.com/ci-the-glenlivet-15-year-old-french-oak-reserve-2ee34ffa65a6e163.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 908 | "alcoholic": true, 909 | "garnish": "lemon wedge and a brandied cherry", 910 | "ingredients": [ 911 | { 912 | "list_order": 1, 913 | "amount": "1/2 ounce (15ml)", 914 | "ingredient": { 915 | "name": "vodka", 916 | "description": "Vodka is a clear distilled alcoholic beverage originated in Poland, Russia, and Sweden. Vodka is composed mainly of water and ethanol but sometimes with traces of impurities and flavourings. Traditionally, it is made by distilling liquid from fermented cereal grains. Potatoes have been used in more recent times, and some modern brands use fruits, honey, or maple sap as the base.", 917 | "id": "vodka" 918 | } 919 | }, 920 | { 921 | "list_order": 2, 922 | "amount": "1/2 ounce (15ml)", 923 | "ingredient": { 924 | "name": "rum", 925 | "description": "Rum is a liquor made by fermenting and then distilling sugarcane molasses or sugarcane juice. The distillate, a clear liquid, is usually aged in oak barrels.", 926 | "id": "rum" 927 | } 928 | }, 929 | { 930 | "list_order": 3, 931 | "amount": "1/2 ounce (15ml)", 932 | "ingredient": { 933 | "name": "gin", 934 | "description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.", 935 | "id": "gin" 936 | } 937 | }, 938 | { 939 | "list_order": 4, 940 | "amount": "1/2 ounce (15ml)", 941 | "ingredient": { 942 | "name": "tequila", 943 | "description": "Tequila is a distilled beverage made from the blue agave plant.", 944 | "id": "tequila" 945 | } 946 | }, 947 | { 948 | "list_order": 5, 949 | "amount": "1/2 ounce (15ml)", 950 | "ingredient": { 951 | "name": "blue curaçao", 952 | "description": "Curaçao is a liqueur flavored with the dried peel of the bitter orange laraha, a citrus fruit grown on the Dutch island of Curaçao. Curaçao can be sold in numerous forms, though the most common are the orange-hued dry Curaçao and blue Curaçao, which is dyed bright blue.", 953 | "id": "bluecuracao" 954 | } 955 | }, 956 | { 957 | "list_order": 6, 958 | "amount": "3/4 ounce (22.5ml)", 959 | "ingredient": { 960 | "name": "lemon juice", 961 | "description": "Lemon juice is made from freshly squeezed lemons.", 962 | "id": "lemonjuice" 963 | } 964 | }, 965 | { 966 | "list_order": 7, 967 | "amount": "3/4 ounce (22.5ml)", 968 | "ingredient": { 969 | "name": "simple syrup", 970 | "description": "Inverted sugar syrup, also known as simple syrup, is a basic sugar-and-water syrup. It is used by bartenders as a sweetener to make cocktails. The ratio of sugar to water is 1:1 by volume for normal simple syrup.", 971 | "id": "simplesyrup" 972 | } 973 | }, 974 | { 975 | "list_order": 8, 976 | "amount": "3 ounces (90ml)", 977 | "ingredient": { 978 | "name": "lemon-lime soda", 979 | "description": "Lemon-lime drinks, also known colloquially as lemonade in the United Kingdom, Australia and New Zealand and as cider in Japan and Korea, are carbonated soft drinks with lemon and lime flavoring. Popular brands include Sprite, 7 Up, and Sierra Mist.", 980 | "id": "lemonlimesoda" 981 | } 982 | } 983 | ], 984 | "steps": [ 985 | { 986 | "step": 1, 987 | "instructions": "Add vodka, rum, gin, tequila, blue curaçao, lemon juice and simple syrup into a cocktail shaker with ice and shake until well-chilled." 988 | }, 989 | { 990 | "step": 2, 991 | "instructions": "Strain into a highball glass filled with ice." 992 | }, 993 | { 994 | "step": 3, 995 | "instructions": "Top with lemon-lime soda and garnish with a lemon wheel." 996 | } 997 | ], 998 | "glasses": [ 999 | { 1000 | "list_order": 1, 1001 | "glass": { 1002 | "name": "Highball Glass", 1003 | "description": "They can be used for tall drinks ,though that can be anywhere from 8 to 16 ounces. The collins glass tends to be taller and narrower, more of a chimney shape.", 1004 | "image_url": "https://rapid.drinks.digital/static/highball.png", 1005 | "id": "highball" 1006 | } 1007 | }, 1008 | { 1009 | "list_order": 2, 1010 | "glass": { 1011 | "name": "Collins Glass", 1012 | "description": "Tall glasses are essential in any bar. They're used for tall mixed drinks. The highball is typically more stout and tops off at 10 ounces.", 1013 | "image_url": "https://rapid.drinks.digital/static/collins.png", 1014 | "id": "collins" 1015 | } 1016 | } 1017 | ], 1018 | "tags": [ 1019 | { 1020 | "list_order": 1, 1021 | "tag": { 1022 | "id": "highball", 1023 | "name": "Highball" 1024 | } 1025 | } 1026 | ], 1027 | "created_at": "2022-12-07T04:25:46.110588+00:00", 1028 | "updated_at": null 1029 | }, 1030 | { 1031 | "id": "0b7ccfbaab3048a290f75070", 1032 | "spirit_id": "other", 1033 | "cocktail_name": "Adonis", 1034 | "description": "The Adonis is a sherry and vermouth-based cocktail, with equal parts of both. The cocktail was created in honor of the 1884 musical Adonis after the show reached the milestone of more than 500 shows on Broadway. The Adonis has been described as being a lower alcohol, easier drinking cocktail.", 1035 | "additional_tips": "", 1036 | "price": "43", 1037 | "img": "https://products1.imgix.drizly.com/ci-ardbeg-10-year-d6ee359b9ebab294.png?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1038 | "alcoholic": true, 1039 | "garnish": "orange twist", 1040 | "ingredients": [ 1041 | { 1042 | "list_order": 1, 1043 | "amount": "1 1/2 ounces (45ml)", 1044 | "ingredient": { 1045 | "name": "fino sherry", 1046 | "description": "Sherry is a fortified wine made from white grapes that are grown near the city of Jerez de la Frontera in Andalusia, Spain. Fino is the traditional dry sherry, typically bottled around 3 to 5 years.", 1047 | "id": "finosherry" 1048 | } 1049 | }, 1050 | { 1051 | "list_order": 2, 1052 | "amount": "1 1/2 ounces (45ml)", 1053 | "ingredient": { 1054 | "name": "sweet vermouth", 1055 | "description": "Vermouth is an aromatized fortified wine, dry vermouth are lighter in body known for being used in the Martini. It has little to no sugar added and will taste more herbaceous but less bitter.", 1056 | "id": "sweetvermouth" 1057 | } 1058 | } 1059 | ], 1060 | "steps": [ 1061 | { 1062 | "step": 1, 1063 | "instructions": "In a mixing glass filled with ice, add the fino sherry and the sweet vermouth and stir until well-chilled." 1064 | }, 1065 | { 1066 | "step": 2, 1067 | "instructions": "Strain into a chilled coupe glass." 1068 | }, 1069 | { 1070 | "step": 3, 1071 | "instructions": "Garnish with an orange peel." 1072 | } 1073 | ], 1074 | "glasses": [ 1075 | { 1076 | "list_order": 1, 1077 | "glass": { 1078 | "name": "Champagne Saucer (Coupe)", 1079 | "description": "The Champagne saucer is also called a coupe glass. With a flatter, rounder bowl, it is a more traditional glass design for serving sparkling wines. It holds around 6 to 8 ounces.", 1080 | "image_url": "https://rapid.drinks.digital/static/coupe.png", 1081 | "id": "coupe" 1082 | } 1083 | }, 1084 | { 1085 | "list_order": 2, 1086 | "glass": { 1087 | "name": "Cocktail (or Martini) Glass", 1088 | "description": "The familiar conical shape of the cocktail glass makes most people think of a martini. Cocktail glasses are used for drinks between 3 and 6 ounces. Cocktail glasses are also a good alternative to margarita glasses.", 1089 | "image_url": "https://rapid.drinks.digital/static/cocktail.png", 1090 | "id": "cocktail" 1091 | } 1092 | }, 1093 | { 1094 | "list_order": 3, 1095 | "glass": { 1096 | "name": "Nick and Nora Glass", 1097 | "description": "Named after Nick and Nora Charles, the main characters in the 1934 comedy-mystery film, The Thin Man, this type of cocktail glass is a specialty alternative to the champagne saucer. It features a bell-shaped bowl that sits on top of a long stem—slightly resembling the design of a white wine glass. Nick and Nora glasses are most commonly used to serve drinks that are shaken or stirred. They are also used to serve any beverage that's otherwise served in a martini glass.", 1098 | "image_url": "https://rapid.drinks.digital/static/nick.png", 1099 | "id": "nick" 1100 | } 1101 | } 1102 | ], 1103 | "tags": [ 1104 | { 1105 | "list_order": 1, 1106 | "tag": { 1107 | "id": "classic", 1108 | "name": "Classic Cocktails" 1109 | } 1110 | } 1111 | ], 1112 | "created_at": "2022-12-07T04:59:08.628966+00:00", 1113 | "updated_at": null 1114 | }, 1115 | { 1116 | "id": "a85ea97848a949f39d76f6c6", 1117 | "spirit_id": "other", 1118 | "cocktail_name": "Alabama Slammer", 1119 | "description": " An Alabama Slammer is a cocktail made with amaretto, Southern Comfort, sloe gin, and orange juice. It is served in a Collins glass. It is also sometimes known as a Southern Slammer. It is claimed to have been made famous by quarterback Brett Favre; however, this drink was popular with college crowds as early as the 1980s, when it was served as a shaker shot in many bars and was also available as a \"pitcher\" in T.G.I. Friday's and other chain restaurants.", 1120 | "additional_tips": "", 1121 | "price": "32", 1122 | "img": "https://products0.imgix.drizly.com/ci-the-glenlivet-18-year-old-338aefcb8222e3e3.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1123 | "alcoholic": true, 1124 | "garnish": "orange wedge", 1125 | "ingredients": [ 1126 | { 1127 | "list_order": 1, 1128 | "amount": "1 ounce (30ml)", 1129 | "ingredient": { 1130 | "name": "Southern Comfort", 1131 | "description": "Southern Comfort (often abbreviated SoCo) is an American, naturally fruit-flavored, whiskey liqueur with fruit and spice accents. The brand was created by bartender Martin Wilkes Heron in New Orleans in 1874, using whiskey as the base spirit.", 1132 | "id": "southerncomfort" 1133 | } 1134 | }, 1135 | { 1136 | "list_order": 2, 1137 | "amount": "1 ounce (30ml)", 1138 | "ingredient": { 1139 | "name": "Sloe gin", 1140 | "description": "Sloe gin is a British red liqueur made with gin and sloes. Sloes are the fruit (drupe) of Prunus spinosa, the blackthorn plant, a relative of the plum.", 1141 | "id": "sloegin" 1142 | } 1143 | }, 1144 | { 1145 | "list_order": 3, 1146 | "amount": "1 ounce (30ml)", 1147 | "ingredient": { 1148 | "name": "amaretto", 1149 | "description": "Amaretto (Italian for a little bitter\") is a sweet Italian liqueur that originated in Saronno. Depending on the brand", 1150 | "id": "amaretto" 1151 | } 1152 | }, 1153 | { 1154 | "list_order": 4, 1155 | "amount": "3 ounces (90ml)", 1156 | "ingredient": { 1157 | "name": "orange juice", 1158 | "description": "Orange juice is a liquid extract of the orange fruit, produced by squeezing or reaming oranges.", 1159 | "id": "orangejuice" 1160 | } 1161 | } 1162 | ], 1163 | "steps": [ 1164 | { 1165 | "step": 1, 1166 | "instructions": "Add Southern Comfort, sloe gin, amaretto and orange juice to a shaker with ice and shake until well-chilled." 1167 | }, 1168 | { 1169 | "step": 2, 1170 | "instructions": "Strain into a highball glass over fresh ice. Or, if serving as a shot, divide among shot glasses." 1171 | }, 1172 | { 1173 | "step": 3, 1174 | "instructions": "Garnish with an orange wedge." 1175 | } 1176 | ], 1177 | "glasses": [ 1178 | { 1179 | "list_order": 1, 1180 | "glass": { 1181 | "name": "Highball Glass", 1182 | "description": "They can be used for tall drinks ,though that can be anywhere from 8 to 16 ounces. The collins glass tends to be taller and narrower, more of a chimney shape.", 1183 | "image_url": "https://rapid.drinks.digital/static/highball.png", 1184 | "id": "highball" 1185 | } 1186 | }, 1187 | { 1188 | "list_order": 2, 1189 | "glass": { 1190 | "name": "Collins Glass", 1191 | "description": "Tall glasses are essential in any bar. They're used for tall mixed drinks. The highball is typically more stout and tops off at 10 ounces.", 1192 | "image_url": "https://rapid.drinks.digital/static/collins.png", 1193 | "id": "collins" 1194 | } 1195 | } 1196 | ], 1197 | "tags": [ 1198 | { 1199 | "list_order": 1, 1200 | "tag": { 1201 | "id": "highball", 1202 | "name": "Highball" 1203 | } 1204 | } 1205 | ], 1206 | "created_at": "2022-12-07T20:26:17.917802+00:00", 1207 | "updated_at": null 1208 | }, 1209 | { 1210 | "id": "39563742f10e4365a699e844", 1211 | "spirit_id": "other", 1212 | "cocktail_name": "Americano", 1213 | "description": "Made with Campari, sweet vermouth, and for the sparkling version, club soda and garnished with a slice of lemon. The cocktail was first served in creator Gaspare Campari's bar, Caffè Campari in Milan, in the 1860s. It is the direct descendant of the \"Milano-Torino\" which consisted of Campari, the bitter liqueur from Milan (Milano) and Punt e Mes, the vermouth from Turin (Torino) but lacked soda water.", 1214 | "additional_tips": "", 1215 | "price": "11", 1216 | "img": "https://products0.imgix.drizly.com/ci-the-macallan-sherry-oak-12-year-9b288faf6f65506f.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1217 | "alcoholic": true, 1218 | "garnish": "orange twist", 1219 | "ingredients": [ 1220 | { 1221 | "list_order": 1, 1222 | "amount": "1 1/2 ounces (45ml)", 1223 | "ingredient": { 1224 | "name": "Campari", 1225 | "description": "Campari is an Italian alcoholic liqueur, considered an apéritif, obtained from the infusion of herbs and fruit in alcohol and water. It is a type of bitters, characterised by its dark red colour.", 1226 | "id": "campari" 1227 | } 1228 | }, 1229 | { 1230 | "list_order": 2, 1231 | "amount": "1 1/2 ounces (45ml)", 1232 | "ingredient": { 1233 | "name": "sweet vermouth", 1234 | "description": "Vermouth is an aromatized fortified wine, dry vermouth are lighter in body known for being used in the Martini. It has little to no sugar added and will taste more herbaceous but less bitter.", 1235 | "id": "sweetvermouth" 1236 | } 1237 | }, 1238 | { 1239 | "list_order": 3, 1240 | "amount": "top with", 1241 | "ingredient": { 1242 | "name": "soda water", 1243 | "description": "Carbonated water is water containing dissolved carbon dioxide gas, either artificially injected under pressure or occurring due to natural geological processes. Carbonation causes small bubbles to form, giving the water an effervescent quality.", 1244 | "id": "sodawater" 1245 | } 1246 | } 1247 | ], 1248 | "steps": [ 1249 | { 1250 | "step": 1, 1251 | "instructions": "Fill a highball glass with ice, then add the Campari and sweet vermouth." 1252 | }, 1253 | { 1254 | "step": 2, 1255 | "instructions": "Top with the soda water and stir gently to combine." 1256 | }, 1257 | { 1258 | "step": 3, 1259 | "instructions": "Garnish with an orange twist." 1260 | } 1261 | ], 1262 | "glasses": [ 1263 | { 1264 | "list_order": 1, 1265 | "glass": { 1266 | "name": "Highball Glass", 1267 | "description": "They can be used for tall drinks ,though that can be anywhere from 8 to 16 ounces. The collins glass tends to be taller and narrower, more of a chimney shape.", 1268 | "image_url": "https://rapid.drinks.digital/static/highball.png", 1269 | "id": "highball" 1270 | } 1271 | }, 1272 | { 1273 | "list_order": 2, 1274 | "glass": { 1275 | "name": "Collins Glass", 1276 | "description": "Tall glasses are essential in any bar. They're used for tall mixed drinks. The highball is typically more stout and tops off at 10 ounces.", 1277 | "image_url": "https://rapid.drinks.digital/static/collins.png", 1278 | "id": "collins" 1279 | } 1280 | }, 1281 | { 1282 | "list_order": 3, 1283 | "glass": { 1284 | "name": "Old-Fashioned (or Rocks) Glass", 1285 | "description": "The old-fashioned glass is a short tumbler with a thick bottom. It's also called a \"lowball\" or \"rocks\" glass. Typically used for short mixed drinks-including the famous old-fashioned that are served on the rocks. Old-fashioned glasses hold between 6 and 8 ounces.", 1286 | "image_url": "https://rapid.drinks.digital/static/rocks.png", 1287 | "id": "rocks" 1288 | } 1289 | } 1290 | ], 1291 | "tags": [ 1292 | { 1293 | "list_order": 1, 1294 | "tag": { 1295 | "id": "classic", 1296 | "name": "Classic Cocktails" 1297 | } 1298 | }, 1299 | { 1300 | "list_order": 2, 1301 | "tag": { 1302 | "id": "iba", 1303 | "name": "International Bartenders Association Official Cocktails" 1304 | } 1305 | } 1306 | ], 1307 | "created_at": "2022-11-26T06:29:46.521283+00:00", 1308 | "updated_at": null 1309 | }, 1310 | { 1311 | "id": "debe5c0f508d44dc94fb6a31", 1312 | "spirit_id": "rum", 1313 | "cocktail_name": "Ancient Mariner", 1314 | "description": "The Ancient Mariner is a tiki drink created by Jeff \"Beachbum\" Berry and Annene Kaye. It first appeared in their 1998 drink guide Beachbum Berry's Grog Log and is named after Coleridge's 1798 The Rime of the Ancient Mariner because in Berry's words “by the time we finished with it, that’s how old we felt. Its signature ingredient is pimento flavored liqueur, which in the United States is most commonly referred to as \"pimento dram\" or \"allspice dram\" due to conflation of pimento and pimenta.", 1315 | "additional_tips": "", 1316 | "price": "34", 1317 | "img": "https://products2.imgix.drizly.com/ci-laphroaig-scotch-whiskey-10-year-562417958d635017.png?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1318 | "alcoholic": true, 1319 | "garnish": "lime wedge and mint sprig", 1320 | "ingredients": [ 1321 | { 1322 | "list_order": 1, 1323 | "amount": "1 ounce (30ml)", 1324 | "ingredient": { 1325 | "name": "151-proof demerara rum", 1326 | "description": "Deep Amber rum distilled from fermented molasses. Aged up to five years. This blend of aged Demerara rums is bottled at 151 proof to bring the full flavor to tiki and other cocktails that call for Demerara Overproof rum. Rich flavors of dark, stone fruit, smoky wood, burnt cane, treacle and brown spice.", 1327 | "id": "151proofrum" 1328 | } 1329 | }, 1330 | { 1331 | "list_order": 2, 1332 | "amount": "1 ounce (30ml)", 1333 | "ingredient": { 1334 | "name": "dark rum", 1335 | "description": "Dark rums, also known by their particular colour, such as brown, black, or red rums, are classes a grade darker than gold rums. They are usually made from caramelized sugar or molasses. They are generally aged longer, in heavily charred barrels.", 1336 | "id": "darkrum" 1337 | } 1338 | }, 1339 | { 1340 | "list_order": 3, 1341 | "amount": "1/4 ounce (7.5ml)", 1342 | "ingredient": { 1343 | "name": "pimento dram", 1344 | "description": "Pimento flavored liqueur, which in the United States is most commonly referred to as \"pimento dram\" or \"allspice dram\" due to conflation of pimento and pimenta.", 1345 | "id": "pimentodram" 1346 | } 1347 | }, 1348 | { 1349 | "list_order": 4, 1350 | "amount": "3/4 ounce (22.5ml)", 1351 | "ingredient": { 1352 | "name": "lime juice", 1353 | "description": "Lime juice is made from freshly squeezed limes.", 1354 | "id": "limejuice" 1355 | } 1356 | }, 1357 | { 1358 | "list_order": 5, 1359 | "amount": "1/2 ounce (15ml)", 1360 | "ingredient": { 1361 | "name": "white grapefruit juice", 1362 | "description": "Grapefruit juice is the juice from grapefruits. It is rich in vitamin C and ranges from sweet-tart to very sour. Variations include white grapefruit, pink grapefruit and ruby red grapefruit juice.", 1363 | "id": "whitegrapefruitjuice" 1364 | } 1365 | }, 1366 | { 1367 | "list_order": 6, 1368 | "amount": "1/2 ounce (15ml)", 1369 | "ingredient": { 1370 | "name": "simple syrup", 1371 | "description": "Inverted sugar syrup, also known as simple syrup, is a basic sugar-and-water syrup. It is used by bartenders as a sweetener to make cocktails. The ratio of sugar to water is 1:1 by volume for normal simple syrup.", 1372 | "id": "simplesyrup" 1373 | } 1374 | } 1375 | ], 1376 | "steps": [ 1377 | { 1378 | "step": 1, 1379 | "instructions": "Add all ingredients into a shaker with ice and shake until well-chilled." 1380 | }, 1381 | { 1382 | "step": 2, 1383 | "instructions": "Strain into a double rocks glass over crushed or pebble ice." 1384 | }, 1385 | { 1386 | "step": 3, 1387 | "instructions": "Garnish with a lime wedge and a mint sprig." 1388 | } 1389 | ], 1390 | "glasses": [ 1391 | { 1392 | "list_order": 1, 1393 | "glass": { 1394 | "name": "Old-Fashioned (or Rocks) Glass", 1395 | "description": "The old-fashioned glass is a short tumbler with a thick bottom. It's also called a \"lowball\" or \"rocks\" glass. Typically used for short mixed drinks-including the famous old-fashioned that are served on the rocks. Old-fashioned glasses hold between 6 and 8 ounces.", 1396 | "image_url": "https://rapid.drinks.digital/static/rocks.png", 1397 | "id": "rocks" 1398 | } 1399 | } 1400 | ], 1401 | "tags": [ 1402 | { 1403 | "list_order": 1, 1404 | "tag": { 1405 | "id": "tiki", 1406 | "name": "Tiki Cocktails" 1407 | } 1408 | } 1409 | ], 1410 | "created_at": "2022-12-07T20:58:10.198201+00:00", 1411 | "updated_at": null 1412 | }, 1413 | { 1414 | "id": "47347fe8b75f4d969e07fb5e", 1415 | "spirit_id": "gin", 1416 | "cocktail_name": "Angel Face", 1417 | "description": "The Angel Face is a cocktail made from gin, apricot brandy and Calvados in equal amounts. The cocktail first appears in the Savoy Cocktail Book compiled by Harry Craddock in 1930.", 1418 | "additional_tips": "", 1419 | "price": "19", 1420 | "img": "https://products1.imgix.drizly.com/ci-the-macallan-double-cask-15-years-old-532eedeb047ce812.png?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1421 | "alcoholic": true, 1422 | "garnish": "orange twist", 1423 | "ingredients": [ 1424 | { 1425 | "list_order": 1, 1426 | "amount": "1 ounce (30ml)", 1427 | "ingredient": { 1428 | "name": "gin", 1429 | "description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.", 1430 | "id": "gin" 1431 | } 1432 | }, 1433 | { 1434 | "list_order": 2, 1435 | "amount": "1 ounce (30ml)", 1436 | "ingredient": { 1437 | "name": "brandy", 1438 | "description": "Brandy is a liquor produced by distilling wine. Brandy generally contains 35-60% alcohol by volume or 70-120 proof. Fruit brandy is a distilled beverage produced from mash, juice, wine or residues of edible fruits. The term covers a broad class of spirits produced across the world, and typically excludes beverages made from grapes, which are referred to as plain brandy. Apples, pears, apricots, plums and cherries are the most commonly used fruits.", 1439 | "id": "brandy" 1440 | } 1441 | }, 1442 | { 1443 | "list_order": 3, 1444 | "amount": "1 ounce (30ml)", 1445 | "ingredient": { 1446 | "name": "Luxardo apricot", 1447 | "description": "Obtained from the infusion of apricots' pulp in sugar beet alcohol, Luxardo Apricot is very rich in taste with mild cinnamon spice and light almond finish.", 1448 | "id": "luxardoapricot" 1449 | } 1450 | } 1451 | ], 1452 | "steps": [ 1453 | { 1454 | "step": 1, 1455 | "instructions": "Pour the gin, applejack and apricot liqueur into a mixing glass with ice and stir until well-chilled." 1456 | }, 1457 | { 1458 | "step": 2, 1459 | "instructions": "Strain into a cocktail glass." 1460 | }, 1461 | { 1462 | "step": 3, 1463 | "instructions": "Garnish with an orange twist." 1464 | } 1465 | ], 1466 | "glasses": [ 1467 | { 1468 | "list_order": 1, 1469 | "glass": { 1470 | "name": "Cocktail (or Martini) Glass", 1471 | "description": "The familiar conical shape of the cocktail glass makes most people think of a martini. Cocktail glasses are used for drinks between 3 and 6 ounces. Cocktail glasses are also a good alternative to margarita glasses.", 1472 | "image_url": "https://rapid.drinks.digital/static/cocktail.png", 1473 | "id": "cocktail" 1474 | } 1475 | }, 1476 | { 1477 | "list_order": 2, 1478 | "glass": { 1479 | "name": "Champagne Saucer (Coupe)", 1480 | "description": "The Champagne saucer is also called a coupe glass. With a flatter, rounder bowl, it is a more traditional glass design for serving sparkling wines. It holds around 6 to 8 ounces.", 1481 | "image_url": "https://rapid.drinks.digital/static/coupe.png", 1482 | "id": "coupe" 1483 | } 1484 | } 1485 | ], 1486 | "tags": [ 1487 | { 1488 | "list_order": 1, 1489 | "tag": { 1490 | "id": "classic", 1491 | "name": "Classic Cocktails" 1492 | } 1493 | }, 1494 | { 1495 | "list_order": 2, 1496 | "tag": { 1497 | "id": "iba", 1498 | "name": "International Bartenders Association Official Cocktails" 1499 | } 1500 | } 1501 | ], 1502 | "created_at": "2022-11-26T06:37:47.088325+00:00", 1503 | "updated_at": null 1504 | }, 1505 | { 1506 | "id": "370160f845694672ab69f30d", 1507 | "spirit_id": "tequila", 1508 | "cocktail_name": "Aperol sunrise", 1509 | "description": "The Aperol sunrise is a variant of tequila sunrise which substitutes Aperol orange liqueur for grenadine.", 1510 | "additional_tips": "", 1511 | "price": "10", 1512 | "img": "https://products2.imgix.drizly.com/ci-johnnie-walker-double-black-label-b5cd812c81603400.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1513 | "alcoholic": true, 1514 | "garnish": "orange wedge", 1515 | "ingredients": [ 1516 | { 1517 | "list_order": 1, 1518 | "amount": "2 ounces (60ml)", 1519 | "ingredient": { 1520 | "name": "blanco tequila", 1521 | "description": "Tequila is a distilled beverage made from the blue agave plant. Silver/Blanco tequila provides the clearest form as little aging has occurred.", 1522 | "id": "blancotequila" 1523 | } 1524 | }, 1525 | { 1526 | "list_order": 2, 1527 | "amount": "4 ounces (120ml)", 1528 | "ingredient": { 1529 | "name": "orange juice", 1530 | "description": "Orange juice is a liquid extract of the orange fruit, produced by squeezing or reaming oranges.", 1531 | "id": "orangejuice" 1532 | } 1533 | }, 1534 | { 1535 | "list_order": 3, 1536 | "amount": "1/2 ounce (15ml)", 1537 | "ingredient": { 1538 | "name": "Aperol", 1539 | "description": "Aperol is an Italian bitter apéritif made of gentian, rhubarb and cinchona, among other ingredients. It has a vibrant orange hue. Its name comes from apero, an Italian slang word for apéritif.", 1540 | "id": "aperol" 1541 | } 1542 | } 1543 | ], 1544 | "steps": [ 1545 | { 1546 | "step": 1, 1547 | "instructions": "Add the tequila and then the orange juice to a chilled hurricane glass filled with ice." 1548 | }, 1549 | { 1550 | "step": 2, 1551 | "instructions": "Top with the Aperol to create a layered effect." 1552 | }, 1553 | { 1554 | "step": 3, 1555 | "instructions": "Garnish with an orange wedge." 1556 | } 1557 | ], 1558 | "glasses": [ 1559 | { 1560 | "list_order": 1, 1561 | "glass": { 1562 | "name": "Hurricane Glass", 1563 | "description": "The distinct pear-shaped curve of this glass is reminiscent of vintage hurricane lamps, which gave it its name. Typically holding between 10 and 12 ounces, it is used for the aptly named hurricane cocktail and often for piña coladas and other frozen drinks.", 1564 | "image_url": "https://rapid.drinks.digital/static/hurricane.png", 1565 | "id": "hurricane" 1566 | } 1567 | }, 1568 | { 1569 | "list_order": 2, 1570 | "glass": { 1571 | "name": "Highball Glass", 1572 | "description": "They can be used for tall drinks ,though that can be anywhere from 8 to 16 ounces. The collins glass tends to be taller and narrower, more of a chimney shape.", 1573 | "image_url": "https://rapid.drinks.digital/static/highball.png", 1574 | "id": "highball" 1575 | } 1576 | } 1577 | ], 1578 | "tags": [ 1579 | { 1580 | "list_order": 1, 1581 | "tag": { 1582 | "id": "summer", 1583 | "name": "Summer" 1584 | } 1585 | } 1586 | ], 1587 | "created_at": "2022-12-07T21:17:12.749219+00:00", 1588 | "updated_at": null 1589 | }, 1590 | { 1591 | "id": "9a21075a8b5b4482b81fe529", 1592 | "spirit_id": "vodka", 1593 | "cocktail_name": "Appletini", 1594 | "description": "An apple martini (appletini for short) is a cocktail containing vodka and one or more of apple juice, apple cider, apple liqueur, or apple brandy. It is not a true martini, but is one of many drinks that incorporate the term martini into their names. This drink, originally called an Adam's Apple Martini because the bartender who created it was named Adam, was created in 1996 at Lola's West Hollywood restaurant.", 1595 | "additional_tips": "", 1596 | "price": "21", 1597 | "img": "https://products0.imgix.drizly.com/ci-the-famous-grouse-c14b9fccab7f38a3.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1598 | "alcoholic": true, 1599 | "garnish": "brandied cherry and Granny Smith apple slices", 1600 | "ingredients": [ 1601 | { 1602 | "list_order": 1, 1603 | "amount": "1 1/4 ounces (37.5ml)", 1604 | "ingredient": { 1605 | "name": "vodka", 1606 | "description": "Vodka is a clear distilled alcoholic beverage originated in Poland, Russia, and Sweden. Vodka is composed mainly of water and ethanol but sometimes with traces of impurities and flavourings. Traditionally, it is made by distilling liquid from fermented cereal grains. Potatoes have been used in more recent times, and some modern brands use fruits, honey, or maple sap as the base.", 1607 | "id": "vodka" 1608 | } 1609 | }, 1610 | { 1611 | "list_order": 2, 1612 | "amount": "1 ounce (30ml)", 1613 | "ingredient": { 1614 | "name": "Calvados", 1615 | "description": "Calvados is a brandy from Normandy in France, made from apples or pears, or from apples with pears.", 1616 | "id": "calvados" 1617 | } 1618 | }, 1619 | { 1620 | "list_order": 3, 1621 | "amount": "1 1/4 ounces (37.5ml)", 1622 | "ingredient": { 1623 | "name": "Granny Smith apple juice", 1624 | "description": "The Granny Smith, also known as a green apple or sour apple, is an apple cultivar which originated in Australia in 1868. It is named after Maria Ann Smith, who propagated the cultivar from a chance seedling.", 1625 | "id": "grannysmithapplejuice" 1626 | } 1627 | }, 1628 | { 1629 | "list_order": 4, 1630 | "amount": "1/4 ounce (7.5ml)", 1631 | "ingredient": { 1632 | "name": "lemon juice", 1633 | "description": "Lemon juice is made from freshly squeezed lemons.", 1634 | "id": "lemonjuice" 1635 | } 1636 | }, 1637 | { 1638 | "list_order": 5, 1639 | "amount": "1/4 ounce (7.5ml)", 1640 | "ingredient": { 1641 | "name": "simple syrup", 1642 | "description": "Inverted sugar syrup, also known as simple syrup, is a basic sugar-and-water syrup. It is used by bartenders as a sweetener to make cocktails. The ratio of sugar to water is 1:1 by volume for normal simple syrup.", 1643 | "id": "simplesyrup" 1644 | } 1645 | } 1646 | ], 1647 | "steps": [ 1648 | { 1649 | "step": 1, 1650 | "instructions": "Add the vodka, Calvados, apple juice, lemon juice and simple syrup into a shaker with ice and shake until well-chilled." 1651 | }, 1652 | { 1653 | "step": 2, 1654 | "instructions": "Double-strain the mixture into the well-chilled cocktail glass." 1655 | }, 1656 | { 1657 | "step": 3, 1658 | "instructions": "Garnish with a skewered brandied cherry and 3 Granny Smith apple slices." 1659 | } 1660 | ], 1661 | "glasses": [ 1662 | { 1663 | "list_order": 1, 1664 | "glass": { 1665 | "name": "Cocktail (or Martini) Glass", 1666 | "description": "The familiar conical shape of the cocktail glass makes most people think of a martini. Cocktail glasses are used for drinks between 3 and 6 ounces. Cocktail glasses are also a good alternative to margarita glasses.", 1667 | "image_url": "https://rapid.drinks.digital/static/cocktail.png", 1668 | "id": "cocktail" 1669 | } 1670 | }, 1671 | { 1672 | "list_order": 2, 1673 | "glass": { 1674 | "name": "Champagne Saucer (Coupe)", 1675 | "description": "The Champagne saucer is also called a coupe glass. With a flatter, rounder bowl, it is a more traditional glass design for serving sparkling wines. It holds around 6 to 8 ounces.", 1676 | "image_url": "https://rapid.drinks.digital/static/coupe.png", 1677 | "id": "coupe" 1678 | } 1679 | } 1680 | ], 1681 | "tags": [ 1682 | { 1683 | "list_order": 1, 1684 | "tag": { 1685 | "id": "fruity", 1686 | "name": "Fruity" 1687 | } 1688 | } 1689 | ], 1690 | "created_at": "2022-12-08T00:26:34.103375+00:00", 1691 | "updated_at": null 1692 | }, 1693 | { 1694 | "id": "6714fb4c621a4a179a189889", 1695 | "spirit_id": "gin", 1696 | "cocktail_name": "Aviation", 1697 | "description": "The Aviation is a classic cocktail made with gin, maraschino liqueur, crème de violette, and lemon juice. Some recipes omit the crème de violette. It is served straight up, in a cocktail glass. The Aviation was created by Hugo Ensslin, head bartender at the Hotel Wallick in New York, in the early twentieth century. The first published recipe for the drink appeared in Ensslin's 1916 Recipes for Mixed Drinks. ", 1698 | "additional_tips": "", 1699 | "price": "34", 1700 | "img": "https://products1.imgix.drizly.com/ci-glenmorangie-18-year-1a27fe575a402cd0.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1701 | "alcoholic": true, 1702 | "garnish": "brandied cherry", 1703 | "ingredients": [ 1704 | { 1705 | "list_order": 1, 1706 | "amount": "1 1/2 ounces (45ml)", 1707 | "ingredient": { 1708 | "name": "gin", 1709 | "description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.", 1710 | "id": "gin" 1711 | } 1712 | }, 1713 | { 1714 | "list_order": 2, 1715 | "amount": "1/2 ounce (15ml)", 1716 | "ingredient": { 1717 | "name": "maraschino liqueur", 1718 | "description": "Maraschino is a liqueur obtained from the distillation of Marasca cherries. The small, slightly sour fruit of the Tapiwa cherry tree, which grows wild along parts of the Dalmatian coast in Croatia, lends the liqueur its unique aroma.", 1719 | "id": "maraschinoliqueur" 1720 | } 1721 | }, 1722 | { 1723 | "list_order": 3, 1724 | "amount": "1 teaspoon (5ml)", 1725 | "ingredient": { 1726 | "name": "creme de violette", 1727 | "description": "Crème de violette, also known as liqueur de violette, is a generic term for a liqueur with natural and/or artificial violet flower flavoring and coloring with either a brandy base, a neutral spirit base, or a combination of the two.", 1728 | "id": "cremedeviolette" 1729 | } 1730 | }, 1731 | { 1732 | "list_order": 4, 1733 | "amount": "1/2 ounce (15ml)", 1734 | "ingredient": { 1735 | "name": "lemon juice", 1736 | "description": "Lemon juice is made from freshly squeezed lemons.", 1737 | "id": "lemonjuice" 1738 | } 1739 | } 1740 | ], 1741 | "steps": [ 1742 | { 1743 | "step": 1, 1744 | "instructions": "Pour gin, maraschino liqueur, creme de violette and lemon juice into a cocktail shaker with ice and shake until well-chilled." 1745 | }, 1746 | { 1747 | "step": 2, 1748 | "instructions": "Strain into a cocktail or coupe glass." 1749 | }, 1750 | { 1751 | "step": 3, 1752 | "instructions": "Garnish with a brandied cherry." 1753 | } 1754 | ], 1755 | "glasses": [ 1756 | { 1757 | "list_order": 1, 1758 | "glass": { 1759 | "name": "Cocktail (or Martini) Glass", 1760 | "description": "The familiar conical shape of the cocktail glass makes most people think of a martini. Cocktail glasses are used for drinks between 3 and 6 ounces. Cocktail glasses are also a good alternative to margarita glasses.", 1761 | "image_url": "https://rapid.drinks.digital/static/cocktail.png", 1762 | "id": "cocktail" 1763 | } 1764 | }, 1765 | { 1766 | "list_order": 2, 1767 | "glass": { 1768 | "name": "Champagne Saucer (Coupe)", 1769 | "description": "The Champagne saucer is also called a coupe glass. With a flatter, rounder bowl, it is a more traditional glass design for serving sparkling wines. It holds around 6 to 8 ounces.", 1770 | "image_url": "https://rapid.drinks.digital/static/coupe.png", 1771 | "id": "coupe" 1772 | } 1773 | } 1774 | ], 1775 | "tags": [ 1776 | { 1777 | "list_order": 1, 1778 | "tag": { 1779 | "id": "classic", 1780 | "name": "Classic Cocktails" 1781 | } 1782 | }, 1783 | { 1784 | "list_order": 2, 1785 | "tag": { 1786 | "id": "iba", 1787 | "name": "International Bartenders Association Official Cocktails" 1788 | } 1789 | } 1790 | ], 1791 | "created_at": "2022-11-26T06:57:56.052853+00:00", 1792 | "updated_at": null 1793 | }, 1794 | { 1795 | "id": "002113297f074eff93b2c6d1", 1796 | "spirit_id": "vodka", 1797 | "cocktail_name": "B and B", 1798 | "description": "A \"B and B\" is made from equal parts of cognac (brandy) and Bénédictine. It is typically served on the rocks, but may also be served straight. The producers of Bénédictine market this cocktail ready-mixed under the label \"B & B.\" Chris Robinson of the Black Crowes mentions \"B & B and a little weed\" in the song Bad Luck Blue Eyes Goodbye.", 1799 | "additional_tips": "", 1800 | "alcoholic": true, 1801 | "price": "71", 1802 | "img": "https://products0.imgix.drizly.com/ci-jim-beam-double-oak-bourbon-whiskey-91dd7718a8f2a7a6.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1803 | "garnish": "", 1804 | "ingredients": [ 1805 | { 1806 | "list_order": 1, 1807 | "amount": "2 ounces (60ml)", 1808 | "ingredient": { 1809 | "name": "cognac", 1810 | "description": "Cognac is a variety of brandy named after the commune of Cognac, France. It is produced in the surrounding wine-growing region in the departments of Charente and Charente-Maritime.", 1811 | "id": "cognac" 1812 | } 1813 | }, 1814 | { 1815 | "list_order": 2, 1816 | "amount": "1 ounce (30ml)", 1817 | "ingredient": { 1818 | "name": "Benedictine liqueur", 1819 | "description": "Bénédictine (French pronunciation: ​[benediktin]) is a herbal liqueur produced in France. It was developed by wine merchant Alexandre Le Grand in the 19th century, and is reputedly flavored with twenty-seven flowers, berries, herbs, roots, and spices.", 1820 | "id": "benedictineliqueur" 1821 | } 1822 | } 1823 | ], 1824 | "steps": [ 1825 | { 1826 | "step": 1, 1827 | "instructions": "Add cognac, Bénédictine and simple syrup into a mixing glass with ice and stir until well-chilled." 1828 | }, 1829 | { 1830 | "step": 2, 1831 | "instructions": "Strain into a rocks glass over fresh ice." 1832 | } 1833 | ], 1834 | "glasses": [ 1835 | { 1836 | "list_order": 1, 1837 | "glass": { 1838 | "name": "Old-Fashioned (or Rocks) Glass", 1839 | "description": "The old-fashioned glass is a short tumbler with a thick bottom. It's also called a \"lowball\" or \"rocks\" glass. Typically used for short mixed drinks-including the famous old-fashioned that are served on the rocks. Old-fashioned glasses hold between 6 and 8 ounces.", 1840 | "image_url": "https://rapid.drinks.digital/static/rocks.png", 1841 | "id": "rocks" 1842 | } 1843 | } 1844 | ], 1845 | "tags": [ 1846 | { 1847 | "list_order": 1, 1848 | "tag": { 1849 | "id": "duos", 1850 | "name": "Duos" 1851 | } 1852 | } 1853 | ], 1854 | "created_at": "2022-12-08T03:00:16.546848+00:00", 1855 | "updated_at": null 1856 | }, 1857 | { 1858 | "id": "e52401ccfe1a4daa8167bbf6", 1859 | "spirit_id": "rum", 1860 | "cocktail_name": "Barracuda", 1861 | "description": "The barracuda is an alcoholic cocktail based on gold rum, Galliano liqueur, pineapple juice, fresh lime juice and topped with Prosecco, according to International Bartenders Association specified ingredients.", 1862 | "additional_tips": "", 1863 | "price": "51", 1864 | "img": "https://products3.imgix.drizly.com/ci-jack-daniels-old-no-7-92707d5e737cf4ac.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1865 | "alcoholic": true, 1866 | "garnish": "pineapple wedge and cherry", 1867 | "ingredients": [ 1868 | { 1869 | "list_order": 1, 1870 | "amount": "1 1/2 ounces (45ml)", 1871 | "ingredient": { 1872 | "name": "gold rum", 1873 | "description": "Gold rum might also be known as amber rum. It's essentially a little darker than light rum and a little lighter than black rum. It has an amber color and is a little sweeter to taste. The flavor is known as rich and sometimes buttery.", 1874 | "id": "goldrum" 1875 | } 1876 | }, 1877 | { 1878 | "list_order": 2, 1879 | "amount": "1/2 ounce (15ml)", 1880 | "ingredient": { 1881 | "name": "Galliano L'Autentico", 1882 | "description": "Liquore Galliano L'Autentico, known more commonly as Galliano, is a sweet herbal liqueur produced in Italy. It was created in 1896 by Tuscan distiller and brandy producer Arturo Vaccari and named after Giuseppe Galliano, an Italian officer of the Royal Italian Army of the First Italo-Ethiopian War.", 1883 | "id": "galliano" 1884 | } 1885 | }, 1886 | { 1887 | "list_order": 3, 1888 | "amount": "2 ounces (60ml)", 1889 | "ingredient": { 1890 | "name": "pineapple juice", 1891 | "description": "Pineapple juice is a liquid made from pressing the natural liquid from the pulp of the pineapple.", 1892 | "id": "pineapplejuice" 1893 | } 1894 | }, 1895 | { 1896 | "list_order": 4, 1897 | "amount": "1/4 ounce (7.5ml)", 1898 | "ingredient": { 1899 | "name": "lime juice", 1900 | "description": "Lime juice is made from freshly squeezed limes.", 1901 | "id": "limejuice" 1902 | } 1903 | }, 1904 | { 1905 | "list_order": 5, 1906 | "amount": "top with", 1907 | "ingredient": { 1908 | "name": "prosecco", 1909 | "description": "Prosecco is an Italian DOC or DOCG white wine produced in a large area spanning nine provinces in the Veneto and Friuli Venezia Giulia regions, and named after the village of Prosecco which is in the province of Trieste, Italy.", 1910 | "id": "prosecco" 1911 | } 1912 | } 1913 | ], 1914 | "steps": [ 1915 | { 1916 | "step": 1, 1917 | "instructions": "Add rum, Galliano, pineapple juice and lime juice to a cocktail shaker filled with ice, and shake until well-chilled." 1918 | }, 1919 | { 1920 | "step": 2, 1921 | "instructions": "Strain into a highball glass over fresh ice, and top with Prosecco." 1922 | }, 1923 | { 1924 | "step": 3, 1925 | "instructions": "Garnish with a pineapple wedge and cherry." 1926 | } 1927 | ], 1928 | "glasses": [ 1929 | { 1930 | "list_order": 1, 1931 | "glass": { 1932 | "name": "Highball Glass", 1933 | "description": "They can be used for tall drinks ,though that can be anywhere from 8 to 16 ounces. The collins glass tends to be taller and narrower, more of a chimney shape.", 1934 | "image_url": "https://rapid.drinks.digital/static/highball.png", 1935 | "id": "highball" 1936 | } 1937 | }, 1938 | { 1939 | "list_order": 2, 1940 | "glass": { 1941 | "name": "Collins Glass", 1942 | "description": "Tall glasses are essential in any bar. They're used for tall mixed drinks. The highball is typically more stout and tops off at 10 ounces.", 1943 | "image_url": "https://rapid.drinks.digital/static/collins.png", 1944 | "id": "collins" 1945 | } 1946 | } 1947 | ], 1948 | "tags": [ 1949 | { 1950 | "list_order": 1, 1951 | "tag": { 1952 | "id": "modern", 1953 | "name": "Modern Cocktails" 1954 | } 1955 | }, 1956 | { 1957 | "list_order": 2, 1958 | "tag": { 1959 | "id": "iba", 1960 | "name": "International Bartenders Association Official Cocktails" 1961 | } 1962 | } 1963 | ], 1964 | "created_at": "2022-11-29T22:23:12.225333+00:00", 1965 | "updated_at": null 1966 | }, 1967 | { 1968 | "id": "9a1726fda235454ca2252dd4", 1969 | "spirit_id": "vodka", 1970 | "cocktail_name": "Bay Breeze", 1971 | "description": "The Bay Breeze is a cocktail which has a Cape Codder as its base, with the addition of pineapple juice. The drink is also sometimes called a Downeaster, Hawaiian Sea Breeze, or a Paul Joseph. This cocktail is similar to the Sea Breeze, an IBA Official Cocktail with grapefruit juice (rather than pineapple).", 1972 | "additional_tips": "", 1973 | "price": "31", 1974 | "img": "https://products3.imgix.drizly.com/ci-high-west-double-rye-421a45abe5041aeb.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 1975 | "alcoholic": true, 1976 | "garnish": "lime wheel", 1977 | "ingredients": [ 1978 | { 1979 | "list_order": 1, 1980 | "amount": "1 1/2 ounces (45ml)", 1981 | "ingredient": { 1982 | "name": "vodka", 1983 | "description": "Vodka is a clear distilled alcoholic beverage originated in Poland, Russia, and Sweden. Vodka is composed mainly of water and ethanol but sometimes with traces of impurities and flavourings. Traditionally, it is made by distilling liquid from fermented cereal grains. Potatoes have been used in more recent times, and some modern brands use fruits, honey, or maple sap as the base.", 1984 | "id": "vodka" 1985 | } 1986 | }, 1987 | { 1988 | "list_order": 2, 1989 | "amount": "3 ounces (90ml)", 1990 | "ingredient": { 1991 | "name": "cranberry juice", 1992 | "description": "Cranberry juice is the liquid juice of the cranberry, typically manufactured to contain sugar, water, and other fruit juices. Cranberry is a fruit native to North America is recognized for its bright red color, tart taste, and versatility for product manufacturing.", 1993 | "id": "cranberryjuice" 1994 | } 1995 | }, 1996 | { 1997 | "list_order": 3, 1998 | "amount": "1 1/2 ounces (45ml)", 1999 | "ingredient": { 2000 | "name": "pineapple juice", 2001 | "description": "Pineapple juice is a liquid made from pressing the natural liquid from the pulp of the pineapple.", 2002 | "id": "pineapplejuice" 2003 | } 2004 | } 2005 | ], 2006 | "steps": [ 2007 | { 2008 | "step": 1, 2009 | "instructions": "Fill a highball glass with ice." 2010 | }, 2011 | { 2012 | "step": 2, 2013 | "instructions": "Add the vodka, cranberry juice and pineapple juice and stir briefly to combine." 2014 | }, 2015 | { 2016 | "step": 3, 2017 | "instructions": "Garnish with a lime wheel." 2018 | } 2019 | ], 2020 | "glasses": [ 2021 | { 2022 | "list_order": 1, 2023 | "glass": { 2024 | "name": "Highball Glass", 2025 | "description": "They can be used for tall drinks ,though that can be anywhere from 8 to 16 ounces. The collins glass tends to be taller and narrower, more of a chimney shape.", 2026 | "image_url": "https://rapid.drinks.digital/static/highball.png", 2027 | "id": "highball" 2028 | } 2029 | }, 2030 | { 2031 | "list_order": 2, 2032 | "glass": { 2033 | "name": "Collins Glass", 2034 | "description": "Tall glasses are essential in any bar. They're used for tall mixed drinks. The highball is typically more stout and tops off at 10 ounces.", 2035 | "image_url": "https://rapid.drinks.digital/static/collins.png", 2036 | "id": "collins" 2037 | } 2038 | } 2039 | ], 2040 | "tags": [ 2041 | { 2042 | "list_order": 1, 2043 | "tag": { 2044 | "id": "highball", 2045 | "name": "Highball" 2046 | } 2047 | } 2048 | ], 2049 | "created_at": "2022-12-15T05:37:08.961835+00:00", 2050 | "updated_at": null 2051 | }, 2052 | { 2053 | "id": "ae74ecfb007747809667de96", 2054 | "spirit_id": "gin", 2055 | "cocktail_name": "Bee's Knees", 2056 | "description": "A Bees Knees (or Bee's Knees) is a Prohibition Era cocktail made with gin, fresh lemon juice, and honey. It is served shaken and chilled, often with a lemon twist. The name comes from prohibition-era slang meaning \"the best\". The Bee's Knees was invented by Frank Meier, an Austrian-born, part Jewish bartender who was the first head bartender at the Ritz in Paris in 1921, when its Cafe Parisian opened its doors.", 2057 | "additional_tips": "", 2058 | "price": "21", 2059 | "img": "https://products0.imgix.drizly.com/ci-rittenhouse-rye-90f91e136374a268.png?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 2060 | "alcoholic": true, 2061 | "garnish": "lemon twist", 2062 | "ingredients": [ 2063 | { 2064 | "list_order": 1, 2065 | "amount": "1 3/4 ounces (52.5ml)", 2066 | "ingredient": { 2067 | "name": "gin", 2068 | "description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.", 2069 | "id": "gin" 2070 | } 2071 | }, 2072 | { 2073 | "list_order": 2, 2074 | "amount": "3/4 ounce (22.5ml)", 2075 | "ingredient": { 2076 | "name": "lemon juice", 2077 | "description": "Lemon juice is made from freshly squeezed lemons.", 2078 | "id": "lemonjuice" 2079 | } 2080 | }, 2081 | { 2082 | "list_order": 3, 2083 | "amount": "3/4 ounce (22.5ml)", 2084 | "ingredient": { 2085 | "name": "orange juice", 2086 | "description": "Orange juice is a liquid extract of the orange fruit, produced by squeezing or reaming oranges.", 2087 | "id": "orangejuice" 2088 | } 2089 | }, 2090 | { 2091 | "list_order": 4, 2092 | "amount": "1/2 ounce (15ml)", 2093 | "ingredient": { 2094 | "name": "honey syrup", 2095 | "description": "Commonly made in a 1:1 ratio 1 part honey and 1 part water.", 2096 | "id": "honeysyrup" 2097 | } 2098 | } 2099 | ], 2100 | "steps": [ 2101 | { 2102 | "step": 1, 2103 | "instructions": "Add the gin, lemon juice and honey syrup into a shaker with ice and shake until well-chilled." 2104 | }, 2105 | { 2106 | "step": 2, 2107 | "instructions": "Strain into a chilled cocktail glass." 2108 | }, 2109 | { 2110 | "step": 3, 2111 | "instructions": "Garnish with a lemon twist." 2112 | } 2113 | ], 2114 | "glasses": [ 2115 | { 2116 | "list_order": 1, 2117 | "glass": { 2118 | "name": "Champagne Saucer (Coupe)", 2119 | "description": "The Champagne saucer is also called a coupe glass. With a flatter, rounder bowl, it is a more traditional glass design for serving sparkling wines. It holds around 6 to 8 ounces.", 2120 | "image_url": "https://rapid.drinks.digital/static/coupe.png", 2121 | "id": "coupe" 2122 | } 2123 | }, 2124 | { 2125 | "list_order": 2, 2126 | "glass": { 2127 | "name": "Cocktail (or Martini) Glass", 2128 | "description": "The familiar conical shape of the cocktail glass makes most people think of a martini. Cocktail glasses are used for drinks between 3 and 6 ounces. Cocktail glasses are also a good alternative to margarita glasses.", 2129 | "image_url": "https://rapid.drinks.digital/static/cocktail.png", 2130 | "id": "cocktail" 2131 | } 2132 | } 2133 | ], 2134 | "tags": [ 2135 | { 2136 | "list_order": 1, 2137 | "tag": { 2138 | "id": "modern", 2139 | "name": "Modern Cocktails" 2140 | } 2141 | }, 2142 | { 2143 | "list_order": 2, 2144 | "tag": { 2145 | "id": "iba", 2146 | "name": "International Bartenders Association Official Cocktails" 2147 | } 2148 | } 2149 | ], 2150 | "created_at": "2022-11-30T00:22:17.619322+00:00", 2151 | "updated_at": null 2152 | }, 2153 | { 2154 | "id": "6617a28acaa345bd9853d924", 2155 | "spirit_id": "other", 2156 | "cocktail_name": "Bellini", 2157 | "description": "A Bellini is a cocktail made with Prosecco and peach purée or nectar. It originated in Venice, Italy.", 2158 | "additional_tips": "", 2159 | "price": "30", 2160 | "img": "https://products3.imgix.drizly.com/ci-basil-haydens-dark-rye-b5636540a31b33a4.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 2161 | "alcoholic": true, 2162 | "garnish": "peach slice", 2163 | "ingredients": [ 2164 | { 2165 | "list_order": 1, 2166 | "amount": "1 1/2 ounces (45ml)", 2167 | "ingredient": { 2168 | "name": "white peach puree", 2169 | "description": "Peach puree is simply peaches, with their skin removed, pureed until smooth.", 2170 | "id": "whitepeachpuree" 2171 | } 2172 | }, 2173 | { 2174 | "list_order": 2, 2175 | "amount": "top with", 2176 | "ingredient": { 2177 | "name": "prosecco", 2178 | "description": "Prosecco is an Italian DOC or DOCG white wine produced in a large area spanning nine provinces in the Veneto and Friuli Venezia Giulia regions, and named after the village of Prosecco which is in the province of Trieste, Italy.", 2179 | "id": "prosecco" 2180 | } 2181 | } 2182 | ], 2183 | "steps": [ 2184 | { 2185 | "step": 1, 2186 | "instructions": "Pour peach puree into the mixing glass with ice, add the Prosecco wine and stir gently." 2187 | }, 2188 | { 2189 | "step": 2, 2190 | "instructions": "Strain into a chilled champagne flute or similar glass." 2191 | }, 2192 | { 2193 | "step": 3, 2194 | "instructions": "Garnish with a peach slice." 2195 | } 2196 | ], 2197 | "glasses": [ 2198 | { 2199 | "list_order": 1, 2200 | "glass": { 2201 | "name": "Champagne Flute", 2202 | "description": "This tall, thin glass has a tapered rim that is designed to keep the Champagne's bubbles in the glass longer. Flutes typically hold between 7 and 11 ounces.", 2203 | "image_url": "https://rapid.drinks.digital/static/flute.png", 2204 | "id": "flute" 2205 | } 2206 | }, 2207 | { 2208 | "list_order": 2, 2209 | "glass": { 2210 | "name": "Champagne Saucer (Coupe)", 2211 | "description": "The Champagne saucer is also called a coupe glass. With a flatter, rounder bowl, it is a more traditional glass design for serving sparkling wines. It holds around 6 to 8 ounces.", 2212 | "image_url": "https://rapid.drinks.digital/static/coupe.png", 2213 | "id": "coupe" 2214 | } 2215 | } 2216 | ], 2217 | "tags": [ 2218 | { 2219 | "list_order": 1, 2220 | "tag": { 2221 | "id": "modernclassic", 2222 | "name": "Modern Classic Cocktails" 2223 | } 2224 | }, 2225 | { 2226 | "list_order": 2, 2227 | "tag": { 2228 | "id": "iba", 2229 | "name": "International Bartenders Association Official Cocktails" 2230 | } 2231 | } 2232 | ], 2233 | "created_at": "2022-11-28T07:20:58.861446+00:00", 2234 | "updated_at": null 2235 | }, 2236 | { 2237 | "id": "336776fc7a954241b5df226f", 2238 | "spirit_id": "brandy", 2239 | "cocktail_name": "Between the Sheets", 2240 | "description": "The Between the Sheets is a cocktail consisting of rum, cognac, triple sec, and lemon juice. The origin of the cocktail is usually credited to Harry MacElhone at Harry's New York Bar in Paris in the 1930s as a derivative of the sidecar. However, competing theories exist that claim the cocktail was created at The Berkeley in approximately 1921, or in French brothels as an apéritif for consumption by the prostitutes.", 2241 | "additional_tips": "Aged rum can be used instead of light rum.", 2242 | "alcoholic": true, 2243 | "img": "https://products3.imgix.drizly.com/ci-john-barr-black-reserve-scotch-5b46de3223703f82.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 2244 | "garnish": "orange peel", 2245 | "ingredients": [ 2246 | { 2247 | "list_order": 1, 2248 | "amount": "1 ounce (30ml)", 2249 | "ingredient": { 2250 | "name": "cognac", 2251 | "description": "Cognac is a variety of brandy named after the commune of Cognac, France. It is produced in the surrounding wine-growing region in the departments of Charente and Charente-Maritime.", 2252 | "id": "cognac" 2253 | } 2254 | }, 2255 | { 2256 | "list_order": 2, 2257 | "amount": "1 ounce (30ml)", 2258 | "ingredient": { 2259 | "name": "light rum", 2260 | "description": "Light rum, also referred to as \"silver\" or \"white\" rum, in general, have very little flavor aside from a general sweetness. Light rums are sometimes filtered after aging to remove any colour. The majority of light rums come from Puerto Rico. Their milder flavors make them popular for use in mixed drinks, as opposed to drinking them straight. Light rums are included in some of the most popular cocktails including the Mojito and the Daiquiri.", 2261 | "id": "lightrum" 2262 | } 2263 | }, 2264 | { 2265 | "list_order": 3, 2266 | "amount": "1 ounce (30ml)", 2267 | "ingredient": { 2268 | "name": "triple sec", 2269 | "description": "Triple sec is an orange-flavoured liqueur that originated in France. It usually contains 20–40% alcohol by volume. Triple sec is rarely consumed neat, but is used in preparing many mixed drinks such as margaritas, cosmopolitans, sidecars, Long Island iced teas, and mai tais.", 2270 | "id": "triplesec" 2271 | } 2272 | }, 2273 | { 2274 | "list_order": 4, 2275 | "amount": "1/2 ounce (15ml)", 2276 | "ingredient": { 2277 | "name": "lemon juice", 2278 | "description": "Lemon juice is made from freshly squeezed lemons.", 2279 | "id": "lemonjuice" 2280 | } 2281 | } 2282 | ], 2283 | "steps": [ 2284 | { 2285 | "step": 1, 2286 | "instructions": "Pour cognac, rum, triple sec and lemon juice into a cocktail shaker with ice and shake until well-chilled." 2287 | }, 2288 | { 2289 | "step": 2, 2290 | "instructions": "Strain into a chilled cocktail glass." 2291 | }, 2292 | { 2293 | "step": 3, 2294 | "instructions": "Express the oils from a orange peel over the top of the drink, then discard the peel before serving." 2295 | } 2296 | ], 2297 | "glasses": [ 2298 | { 2299 | "list_order": 1, 2300 | "glass": { 2301 | "name": "Cocktail (or Martini) Glass", 2302 | "description": "The familiar conical shape of the cocktail glass makes most people think of a martini. Cocktail glasses are used for drinks between 3 and 6 ounces. Cocktail glasses are also a good alternative to margarita glasses.", 2303 | "image_url": "https://rapid.drinks.digital/static/cocktail.png", 2304 | "id": "cocktail" 2305 | } 2306 | }, 2307 | { 2308 | "list_order": 2, 2309 | "glass": { 2310 | "name": "Champagne Saucer (Coupe)", 2311 | "description": "The Champagne saucer is also called a coupe glass. With a flatter, rounder bowl, it is a more traditional glass design for serving sparkling wines. It holds around 6 to 8 ounces.", 2312 | "image_url": "https://rapid.drinks.digital/static/coupe.png", 2313 | "id": "coupe" 2314 | } 2315 | } 2316 | ], 2317 | "tags": [ 2318 | { 2319 | "list_order": 1, 2320 | "tag": { 2321 | "id": "classic", 2322 | "name": "Classic Cocktails" 2323 | } 2324 | }, 2325 | { 2326 | "list_order": 2, 2327 | "tag": { 2328 | "id": "iba", 2329 | "name": "International Bartenders Association Official Cocktails" 2330 | } 2331 | } 2332 | ], 2333 | "created_at": "2022-11-26T18:37:27.044810+00:00", 2334 | "updated_at": null 2335 | }, 2336 | { 2337 | "id": "eb8f94dfe2734e028ad862ca", 2338 | "spirit_id": "vodka", 2339 | "cocktail_name": "Bijou", 2340 | "description": "A bijou is a mixed alcoholic drink composed of gin, vermouth, and chartreuse. This cocktail was invented by Harry Johnson, \"the father of professional bartending\", who called it bijou because it combined the colors of three jewels: gin for diamond, vermouth for ruby, and chartreuse for emerald. An original-style bijou is made stirred with ice as Johnson's 1900 New and Improved Bartender Manual states \"mix well with a spoon and serve.\" This recipe is also one of the oldest in the manual, dating back to the 1890s.", 2341 | "additional_tips": "", 2342 | "price": "42", 2343 | "img": "https://products2.imgix.drizly.com/ci-jameson-irish-whiskey-83c0830f276cf30a.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 2344 | "alcoholic": true, 2345 | "garnish": "maraschino cherry (optional)", 2346 | "ingredients": [ 2347 | { 2348 | "list_order": 1, 2349 | "amount": "1 ounce (30ml)", 2350 | "ingredient": { 2351 | "name": "gin", 2352 | "description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.", 2353 | "id": "gin" 2354 | } 2355 | }, 2356 | { 2357 | "list_order": 2, 2358 | "amount": "1 ounce (30ml)", 2359 | "ingredient": { 2360 | "name": "sweet vermouth", 2361 | "description": "Vermouth is an aromatized fortified wine, dry vermouth are lighter in body known for being used in the Martini. It has little to no sugar added and will taste more herbaceous but less bitter.", 2362 | "id": "sweetvermouth" 2363 | } 2364 | }, 2365 | { 2366 | "list_order": 3, 2367 | "amount": "1 ounce (30ml)", 2368 | "ingredient": { 2369 | "name": "Green Chartreuse", 2370 | "description": "Green Chartreuse (110 proof or 55% ABV) is a naturally green liqueur made from 130 herbs and other plants macerated in alcohol and steeped for about eight hours. A last maceration of plants gives its color to the liqueur. The first version of the liqueur was devised in 1825, with the modern version first released in 1840.", 2371 | "id": "greenchartreuse" 2372 | } 2373 | }, 2374 | { 2375 | "list_order": 4, 2376 | "amount": "2 dashes", 2377 | "ingredient": { 2378 | "name": "orange bitters", 2379 | "description": "Orange bitters is a form of bitters, a cocktail flavoring made from such ingredients as the peels of Seville oranges, cardamom, caraway seed, coriander, anise, and burnt sugar in an alcohol base.", 2380 | "id": "orangebitters" 2381 | } 2382 | } 2383 | ], 2384 | "steps": [ 2385 | { 2386 | "step": 1, 2387 | "instructions": "Add all ingredients into a mixing glass with ice and stir until well-chilled." 2388 | }, 2389 | { 2390 | "step": 2, 2391 | "instructions": "Strain into a chilled Nick & Nora or coupe glass." 2392 | }, 2393 | { 2394 | "step": 3, 2395 | "instructions": "Garnish with a maraschino cherry, if desired." 2396 | } 2397 | ], 2398 | "glasses": [ 2399 | { 2400 | "list_order": 1, 2401 | "glass": { 2402 | "name": "Cocktail (or Martini) Glass", 2403 | "description": "The familiar conical shape of the cocktail glass makes most people think of a martini. Cocktail glasses are used for drinks between 3 and 6 ounces. Cocktail glasses are also a good alternative to margarita glasses.", 2404 | "image_url": "https://rapid.drinks.digital/static/cocktail.png", 2405 | "id": "cocktail" 2406 | } 2407 | }, 2408 | { 2409 | "list_order": 2, 2410 | "glass": { 2411 | "name": "Nick and Nora Glass", 2412 | "description": "Named after Nick and Nora Charles, the main characters in the 1934 comedy-mystery film, The Thin Man, this type of cocktail glass is a specialty alternative to the champagne saucer. It features a bell-shaped bowl that sits on top of a long stem—slightly resembling the design of a white wine glass. Nick and Nora glasses are most commonly used to serve drinks that are shaken or stirred. They are also used to serve any beverage that's otherwise served in a martini glass.", 2413 | "image_url": "https://rapid.drinks.digital/static/nick.png", 2414 | "id": "nick" 2415 | } 2416 | } 2417 | ], 2418 | "tags": [ 2419 | { 2420 | "list_order": 1, 2421 | "tag": { 2422 | "id": "classic", 2423 | "name": "Classic Cocktails" 2424 | } 2425 | } 2426 | ], 2427 | "created_at": "2022-12-16T01:28:33.506006+00:00", 2428 | "updated_at": null 2429 | }, 2430 | { 2431 | "id": "6487a09a25db43fbb99e951d", 2432 | "spirit_id": "vodka", 2433 | "cocktail_name": "Black Russian", 2434 | "description": "The Black Russian is a cocktail of vodka and coffee liqueur. It contains vodka and coffee liqueur. The drink is made by pouring the vodka and coffee liqueur over ice cubes or cracked ice in an old-fashioned glass and stirring. The Black Russian cocktail first appeared in 1949 and is ascribed to Gustave Tops, a Belgian barman, who created it at the Hotel Metropole in Brussels in honor of Perle Mesta, then United States Ambassador to Luxembourg. The cocktail owes its name to the use of vodka, a typical Russian spirit, and the blackness of the coffee liqueur.", 2435 | "additional_tips": "", 2436 | "alcoholic": true, 2437 | "price": "27", 2438 | "img": "https://products1.imgix.drizly.com/ci-proper-twelve-irish-whiskey-24628987a7c6bc9e.jpeg?auto=format%2Ccompress&ch=Width%2CDPR&dpr=2&fm=jpg&h=240&q=20", 2439 | "garnish": "", 2440 | "ingredients": [ 2441 | { 2442 | "list_order": 1, 2443 | "amount": "2 ounces (60ml)", 2444 | "ingredient": { 2445 | "name": "vodka", 2446 | "description": "Vodka is a clear distilled alcoholic beverage originated in Poland, Russia, and Sweden. Vodka is composed mainly of water and ethanol but sometimes with traces of impurities and flavourings. Traditionally, it is made by distilling liquid from fermented cereal grains. Potatoes have been used in more recent times, and some modern brands use fruits, honey, or maple sap as the base.", 2447 | "id": "vodka" 2448 | } 2449 | }, 2450 | { 2451 | "list_order": 2, 2452 | "amount": "1 ounce (30ml)", 2453 | "ingredient": { 2454 | "name": "coffee liqueur", 2455 | "description": "Coffee liqueur is a alcoholic beverage that contains a spirit typically rum with addition of sugar and coffee.", 2456 | "id": "coffeeliqueur" 2457 | } 2458 | }, 2459 | { 2460 | "list_order": 3, 2461 | "amount": "1/4 ounce (7.5ml)", 2462 | "ingredient": { 2463 | "name": "simple syrup", 2464 | "description": "Inverted sugar syrup, also known as simple syrup, is a basic sugar-and-water syrup. It is used by bartenders as a sweetener to make cocktails. The ratio of sugar to water is 1:1 by volume for normal simple syrup.", 2465 | "id": "simplesyrup" 2466 | } 2467 | } 2468 | ], 2469 | "steps": [ 2470 | { 2471 | "step": 1, 2472 | "instructions": "Add vodka and coffee liqueur into a mixing glass with ice and stir until well-chilled." 2473 | }, 2474 | { 2475 | "step": 2, 2476 | "instructions": "Strain into a rocks glass over fresh ice." 2477 | } 2478 | ], 2479 | "glasses": [ 2480 | { 2481 | "list_order": 1, 2482 | "glass": { 2483 | "name": "Old-Fashioned (or Rocks) Glass", 2484 | "description": "The old-fashioned glass is a short tumbler with a thick bottom. It's also called a \"lowball\" or \"rocks\" glass. Typically used for short mixed drinks-including the famous old-fashioned that are served on the rocks. Old-fashioned glasses hold between 6 and 8 ounces.", 2485 | "image_url": "https://rapid.drinks.digital/static/rocks.png", 2486 | "id": "rocks" 2487 | } 2488 | } 2489 | ], 2490 | "tags": [ 2491 | { 2492 | "list_order": 1, 2493 | "tag": { 2494 | "id": "modernclassic", 2495 | "name": "Modern Classic Cocktails" 2496 | } 2497 | }, 2498 | { 2499 | "list_order": 2, 2500 | "tag": { 2501 | "id": "iba", 2502 | "name": "International Bartenders Association Official Cocktails" 2503 | } 2504 | } 2505 | ], 2506 | "created_at": "2022-11-28T17:53:08.830816+00:00", 2507 | "updated_at": null 2508 | } 2509 | ], 2510 | "pizza": [ 2511 | { 2512 | "id": 201, 2513 | "name": "Margherita", 2514 | "veg": true, 2515 | "price": 3, 2516 | "description": "Cheese", 2517 | "quantity": 1, 2518 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/margherita.90f9451fd66871fb6f9cf7d506053f18.1.jpg?width=550", 2519 | "sizeandcrust": [ 2520 | { 2521 | "mediumPan": [ 2522 | { 2523 | "price": 3 2524 | } 2525 | ], 2526 | "mediumstuffedcrustcheesemax": [ 2527 | { 2528 | "price": 5 2529 | } 2530 | ], 2531 | "mediumstuffedcrustvegkebab": [ 2532 | { 2533 | "price": 8 2534 | } 2535 | ] 2536 | } 2537 | ] 2538 | }, 2539 | { 2540 | "id": 202, 2541 | "name": "Tandoori Paneer", 2542 | "veg": true, 2543 | "price": 7, 2544 | "description": "Spiced paneeer, Onion,Green Capsicum & Red Paprika in Tandoori Sauce", 2545 | "quantity": 1, 2546 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/tandoori-paneer.4ef45717e972cf45b43c010e3cde5a22.1.jpg?width=550", 2547 | "sizeandcrust": [ 2548 | { 2549 | "mediumPan": [ 2550 | { 2551 | "price": 7 2552 | } 2553 | ], 2554 | "mediumstuffedcrustcheesemax": [ 2555 | { 2556 | "price": 9 2557 | } 2558 | ], 2559 | "medium stuffed crust-veg kebab": [ 2560 | { 2561 | "price": 12 2562 | } 2563 | ] 2564 | } 2565 | ] 2566 | }, 2567 | { 2568 | "id": 203, 2569 | "name": "Veggie Supreme", 2570 | "veg": true, 2571 | "price": 8, 2572 | "description": "Black Olives,Green Capsicum, Mushroom, Onion,Red Paprika, Sweet Corn", 2573 | "quantity": 1, 2574 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/veggie-supreme.bc8dd369182b636ff171077efa53c344.1.jpg?width=550", 2575 | "sizeandcrust": [ 2576 | { 2577 | "mediumPan": [ 2578 | { 2579 | "price": 8 2580 | } 2581 | ], 2582 | "mediumstuffedcrustcheesemax": [ 2583 | { 2584 | "price": 9 2585 | } 2586 | ], 2587 | "medium stuffed crust-veg kebab": [ 2588 | { 2589 | "price": 10 2590 | } 2591 | ] 2592 | } 2593 | ] 2594 | }, 2595 | { 2596 | "id": 204, 2597 | "name": "Double Paneer Supreme", 2598 | "veg": true, 2599 | "price": 6, 2600 | "description": "Spiced Paneer, Herbed Onion&Green Capsicum, Red Paprika", 2601 | "quantity": 1, 2602 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/double-paneer-supreme.3cb382529b41d14d4a041b5cc5e64341.1.jpg?width=550", 2603 | "sizeandcrust": [ 2604 | { 2605 | "mediumPan": [ 2606 | { 2607 | "price": 6 2608 | } 2609 | ], 2610 | "mediumstuffedcrustcheesemax": [ 2611 | { 2612 | "price": 7 2613 | } 2614 | ], 2615 | "medium stuffed crust-veg kebab": [ 2616 | { 2617 | "price": 9 2618 | } 2619 | ] 2620 | } 2621 | ] 2622 | }, 2623 | { 2624 | "id": 205, 2625 | "name": "Veggie Kebab Surprise", 2626 | "veg": true, 2627 | "price": 4, 2628 | "description": "Veg Kebab,Onion,Green Capsicum,Tomato & Sweet Corn in Tandoori Sauce", 2629 | "quantity": 1, 2630 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/veg-kebab-surprise.abab1dff179ab8cf95a59f30d6352297.1.jpg?width=550", 2631 | "sizeandcrust": [ 2632 | { 2633 | "mediumPan": [ 2634 | { 2635 | "price": 5 2636 | } 2637 | ], 2638 | "mediumstuffedcrustcheesemax": [ 2639 | { 2640 | "price": 6 2641 | } 2642 | ], 2643 | "medium stuffed crust-veg kebab": [ 2644 | { 2645 | "price": 8 2646 | } 2647 | ] 2648 | } 2649 | ] 2650 | }, 2651 | { 2652 | "id": 206, 2653 | "name": "Chicken Supreme", 2654 | "veg": false, 2655 | "price": 7, 2656 | "description": "Herbed Chicken,Schezwan Chicken Meatball,Chicken Tikka", 2657 | "quantity": 1, 2658 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/chicken-supreme.6d53f104f071d304a47440f2fffa7378.1.jpg?width=550", 2659 | "sizeandcrust": [ 2660 | { 2661 | "mediumPan": [ 2662 | { 2663 | "price": 7 2664 | } 2665 | ], 2666 | "mediumstuffedcrustcheesemax": [ 2667 | { 2668 | "price": 9 2669 | } 2670 | ], 2671 | "mediumstuffedcrustchickenseekhkebab": [ 2672 | { 2673 | "price": 12 2674 | } 2675 | ] 2676 | } 2677 | ] 2678 | }, 2679 | { 2680 | "id": 207, 2681 | "name": "Chicken Tikka Supreme", 2682 | "veg": false, 2683 | "price": 6, 2684 | "description": "Chicken Tikka,Chicken Malai Tikka,Onion,Red Paprika", 2685 | "quantity": 1, 2686 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/chicken-tikka-supreme.830de5a911ca95a30e4ca98e529f1b3a.1.jpg?width=550", 2687 | "sizeandcrust": [ 2688 | { 2689 | "mediumPan": [ 2690 | { 2691 | "price": 7 2692 | } 2693 | ], 2694 | "mediumstuffedcrustcheesemax": [ 2695 | { 2696 | "price": 9 2697 | } 2698 | ], 2699 | "mediumstuffedcrustchickenseekhkebab": [ 2700 | { 2701 | "price": 11 2702 | } 2703 | ] 2704 | } 2705 | ] 2706 | }, 2707 | { 2708 | "id": 208, 2709 | "name": "Triple Chicken Feast", 2710 | "veg": false, 2711 | "price": 8, 2712 | "description": "Schezwan Chicken Meatball Herbed Chicken,Chicken Sausage,Geen Capsicum, Onion,Red Paprika", 2713 | "quantity": 1, 2714 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/triple-chicken-feast.e4a546e7a8581a60952b99e3fe22987e.1.jpg?width=550", 2715 | "sizeandcrust": [ 2716 | { 2717 | "mediumPan": [ 2718 | { 2719 | "price": 8 2720 | } 2721 | ], 2722 | "mediumstuffedcrustcheesemax": [ 2723 | { 2724 | "price": 10 2725 | } 2726 | ], 2727 | "mediumstuffedcrustchickenseekhkebab": [ 2728 | { 2729 | "price": 13 2730 | } 2731 | ] 2732 | } 2733 | ] 2734 | }, 2735 | { 2736 | "id": 209, 2737 | "name": "Chicken Tikka", 2738 | "veg": false, 2739 | "price": 7, 2740 | "description": "Chicken Tikka, Onion, Tomato", 2741 | "quantity": 1, 2742 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/chicken-tikka.6d441a65371e941db36c2754586119a8.1.jpg?width=550", 2743 | "sizeandcrust": [ 2744 | { 2745 | "mediumPan": [ 2746 | { 2747 | "price": 7 2748 | } 2749 | ], 2750 | "mediumstuffedcrustcheesemax": [ 2751 | { 2752 | "price": 8 2753 | } 2754 | ], 2755 | "mediumstuffedcrustchickenseekhkebab": [ 2756 | { 2757 | "price": 9 2758 | } 2759 | ] 2760 | } 2761 | ] 2762 | }, 2763 | { 2764 | "id": 2010, 2765 | "name": "Double Chicken Sausage", 2766 | "veg": false, 2767 | "price": 5, 2768 | "description": "Chicken Sausage", 2769 | "quantity": 1, 2770 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/double-chicken-sausage.f172dd6a365e90e655258b17555e74ad.1.jpg?width=550", 2771 | "sizeandcrust": [ 2772 | { 2773 | "mediumPan": [ 2774 | { 2775 | "price": 5 2776 | } 2777 | ], 2778 | "mediumstuffedcrustcheesemax": [ 2779 | { 2780 | "price": 6 2781 | } 2782 | ], 2783 | "mediumstuffedcrustchickenseekhkebab": [ 2784 | { 2785 | "price": 7 2786 | } 2787 | ] 2788 | } 2789 | ] 2790 | }, 2791 | { 2792 | "id": 2011, 2793 | "name": "Spiced Chicken Meatballs", 2794 | "veg": false, 2795 | "price": 4, 2796 | "description": "Schezwan Chicken Meatball Onion", 2797 | "quantity": 1, 2798 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/spiced-chicken-meatballs.abd238e81080106d181567a9b52844ae.1.jpg?width=550", 2799 | "sizeandcrust": [ 2800 | { 2801 | "mediumPan": [ 2802 | { 2803 | "price": 4 2804 | } 2805 | ], 2806 | "mediumstuffedcrustcheesemax": [ 2807 | { 2808 | "price": 5 2809 | } 2810 | ], 2811 | "medium stuffed crust-veg kebab": [ 2812 | { 2813 | "price": 6 2814 | } 2815 | ] 2816 | } 2817 | ] 2818 | }, 2819 | { 2820 | "id": 2012, 2821 | "name": "Double Cheese", 2822 | "veg": true, 2823 | "price": 3, 2824 | "description": "Extra Cheese on Cheese", 2825 | "quantity": 1, 2826 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/double-cheese.3c8885f8bc6f18facedc7626368f5105.1.jpg?width=550", 2827 | "sizeandcrust": [ 2828 | { 2829 | "mediumPan": [ 2830 | { 2831 | "price": 3 2832 | } 2833 | ], 2834 | "mediumstuffedcrustcheesemax": [ 2835 | { 2836 | "price": 5 2837 | } 2838 | ], 2839 | "medium stuffed crust-veg kebab": [ 2840 | { 2841 | "price": 7 2842 | } 2843 | ] 2844 | } 2845 | ] 2846 | }, 2847 | { 2848 | "id": 2013, 2849 | "name": "Chicken Pepper Crunch", 2850 | "veg": false, 2851 | "price": 5, 2852 | "description": "Herbed Chicken, Onion, Green Capsicum, Red Capsicum ", 2853 | "quantity": 1, 2854 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/chicken-pepper-crunch.624edb192601b73335e0100db5a6263a.1.jpg?width=550", 2855 | "sizeandcrust": [ 2856 | { 2857 | "mediumPan": [ 2858 | { 2859 | "price": 5 2860 | } 2861 | ], 2862 | "mediumstuffedcrustcheesemax": [ 2863 | { 2864 | "price": 6 2865 | } 2866 | ], 2867 | "medium stuffed crust-veg kebab": [ 2868 | { 2869 | "price": 7 2870 | } 2871 | ] 2872 | } 2873 | ] 2874 | }, 2875 | { 2876 | "id": 2014, 2877 | "name": "Italian Chicken Feast", 2878 | "veg": false, 2879 | "price": 6, 2880 | "description": "Herbed Chicken, Onion, Green Capsicum, Red Capsicum ", 2881 | "quantity": 1, 2882 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/italian-chicken-feast.edad91a082e9a16d677722a071487a1c.1.jpg?width=550", 2883 | "sizeandcrust": [ 2884 | { 2885 | "mediumPan": [ 2886 | { 2887 | "price": 6 2888 | } 2889 | ], 2890 | "mediumstuffedcrustcheesemax": [ 2891 | { 2892 | "price": 7 2893 | } 2894 | ], 2895 | "medium stuffed crust-veg kebab": [ 2896 | { 2897 | "price": 9 2898 | } 2899 | ] 2900 | } 2901 | ] 2902 | }, 2903 | { 2904 | "id": 2015, 2905 | "name": "Corn & Cheese", 2906 | "veg": true, 2907 | "price": 5, 2908 | "description": "Cheese ,Sweet Corn", 2909 | "quantity": 1, 2910 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/corn.f8baa08ad7f607f1de30f96bb9245b50.1.jpg?width=550", 2911 | "sizeandcrust": [ 2912 | { 2913 | "mediumPan": [ 2914 | { 2915 | "price": 5 2916 | } 2917 | ], 2918 | "mediumstuffedcrustcheesemax": [ 2919 | { 2920 | "price": 7 2921 | } 2922 | ], 2923 | "medium stuffed crust-veg kebab": [ 2924 | { 2925 | "price": 9 2926 | } 2927 | ] 2928 | } 2929 | ] 2930 | }, 2931 | { 2932 | "id": 2016, 2933 | "name": "Tandoori Onion", 2934 | "veg": true, 2935 | "price": 6, 2936 | "description": "Cheese & Onion in Tandoori sause", 2937 | "quantity": 1, 2938 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/tandoori-onion.98e8cbd306a1166cedbbdbd2a97eade3.1.jpg?width=550", 2939 | "sizeandcrust": [ 2940 | { 2941 | "mediumPan": [ 2942 | { 2943 | "price": 7 2944 | } 2945 | ], 2946 | "mediumstuffedcrustcheesemax": [ 2947 | { 2948 | "price": 9 2949 | } 2950 | ], 2951 | "medium stuffed crust kebab": [ 2952 | { 2953 | "price": 11 2954 | } 2955 | ] 2956 | } 2957 | ] 2958 | }, 2959 | { 2960 | "id": 2017, 2961 | "name": "Chicken Pepperoni", 2962 | "veg": false, 2963 | "price": 5, 2964 | "description": "Cheese ,Chicken pepperoni", 2965 | "quantity": 1, 2966 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/chicken-pepperoni.6952ef03215b72477abff3574b4b881e.1.jpg?width=550", 2967 | "sizeandcrust": [ 2968 | { 2969 | "mediumPan": [ 2970 | { 2971 | "price": 6 2972 | } 2973 | ], 2974 | "mediumstuffedcrustcheesemax": [ 2975 | { 2976 | "price": 9 2977 | } 2978 | ] 2979 | } 2980 | ] 2981 | }, 2982 | { 2983 | "id": 2018, 2984 | "name": "Chicken N Corn Delight", 2985 | "veg": false, 2986 | "price": 9, 2987 | "description": "Cheese ,Chicken pepperoni", 2988 | "quantity": 1, 2989 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/chicken-n-corn-delight.61cc42effb2de18e6625796c964dd92d.1.jpg?width=550", 2990 | "sizeandcrust": [ 2991 | { 2992 | "mediumPan": [ 2993 | { 2994 | "price": 9 2995 | } 2996 | ], 2997 | "mediumstuffedcrustcheesemax": [ 2998 | { 2999 | "price": 11 3000 | } 3001 | ], 3002 | "medium stuffed crust-veg kebab": [ 3003 | { 3004 | "price": 12 3005 | } 3006 | ] 3007 | } 3008 | ] 3009 | }, 3010 | { 3011 | "id": 2019, 3012 | "name": "Farmers Pick", 3013 | "veg": true, 3014 | "price": 29, 3015 | "description": "Onion Herbed & Green Capsicum, Red Capsicum, Mushroom, Baby Corn", 3016 | "quantity": 1, 3017 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/farmers-pick.794695a631c14d4404057470020be703.1.jpg?width=550", 3018 | "sizeandcrust": [ 3019 | { 3020 | "mediumPan": [ 3021 | { 3022 | "price": 5 3023 | } 3024 | ], 3025 | "mediumstuffedcrustcheesemax": [ 3026 | { 3027 | "price": 6 3028 | } 3029 | ], 3030 | "medium stuffed crust-veg kebab": [ 3031 | { 3032 | "price": 8 3033 | } 3034 | ] 3035 | } 3036 | ] 3037 | }, 3038 | { 3039 | "id": 2020, 3040 | "name": "Classic Corn", 3041 | "veg": true, 3042 | "price": 5, 3043 | "description": "Pizza topped with our Classic Pan sauce, sweet corn and cheesy dressing. An all-time favorite.", 3044 | "quantity": 1, 3045 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/classic-corn-pan-personal.7c80196383b32e2ad5715646c1b12df8.1.png?width=550", 3046 | "sizeandcrust": [ 3047 | { 3048 | "mediumPan": [ 3049 | { 3050 | "price": 5 3051 | } 3052 | ], 3053 | "mediumstuffedcrustcheesemax": [ 3054 | { 3055 | "price": 7 3056 | } 3057 | ], 3058 | "medium stuffed crust-veg kebab": [ 3059 | { 3060 | "price": 9 3061 | } 3062 | ] 3063 | } 3064 | ] 3065 | }, 3066 | { 3067 | "id": 2120, 3068 | "name": "Classic Onion Capsicum", 3069 | "veg": true, 3070 | "price": 4, 3071 | "description": "Pizza topped with our Classic Pan sauce, crunchy onion & capsicum and cheesy dressing.", 3072 | "quantity": 1, 3073 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/classic-onion-capsicum-pan-personal.dad788ecbd3fcc57366462827e31ee05.1.jpg?width=550", 3074 | "sizeandcrust": [ 3075 | { 3076 | "mediumPan": [ 3077 | { 3078 | "price": 4 3079 | } 3080 | ], 3081 | "mediumstuffedcrustcheesemax": [ 3082 | { 3083 | "price": 5 3084 | } 3085 | ], 3086 | "medium stuffed crust-veg kebab": [ 3087 | { 3088 | "price": 7 3089 | } 3090 | ] 3091 | } 3092 | ] 3093 | }, 3094 | { 3095 | "id": 2221, 3096 | "name": "Italian Onion Tomato", 3097 | "veg": true, 3098 | "price": 8, 3099 | "description": "Pizza topped with our Chef's Special Italian sauce, crunchy onion, juicy tomatoes and cheesy dressing.", 3100 | "quantity": 1, 3101 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/italian-onion-tomato-pan-personal.cb37b0766ef3ba8844fa69b2d073c215.1.jpg?width=550", 3102 | "sizeandcrust": [ 3103 | { 3104 | "mediumPan": [ 3105 | { 3106 | "price": 8 3107 | } 3108 | ], 3109 | "mediumstuffedcrustcheesemax": [ 3110 | { 3111 | "price": 10 3112 | } 3113 | ], 3114 | "medium stuffed crust-veg kebab": [ 3115 | { 3116 | "price": 12 3117 | } 3118 | ] 3119 | } 3120 | ] 3121 | }, 3122 | { 3123 | "id": 2322, 3124 | "name": "Tandoori Mushroom & Sweet Corn", 3125 | "veg": true, 3126 | "price": 5, 3127 | "description": "Pizza topped with our signature tandoori sauce, juicy mushroom, sweet corn and cheesy dressing.", 3128 | "quantity": 1, 3129 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/tandoori-mushroom-&-sweet-corn-pan-personal.49a1287d1cece07781c106e552979fa2.1.jpg?width=550", 3130 | "sizeandcrust": [ 3131 | { 3132 | "mediumPan": [ 3133 | { 3134 | "price": 5 3135 | } 3136 | ], 3137 | "mediumstuffedcrustcheesemax": [ 3138 | { 3139 | "price": 6 3140 | } 3141 | ], 3142 | "medium stuffed crust-veg kebab": [ 3143 | { 3144 | "price": 7 3145 | } 3146 | ] 3147 | } 3148 | ] 3149 | }, 3150 | { 3151 | "id": 2423, 3152 | "name": "Schezwan Corn & Capsicum", 3153 | "veg": true, 3154 | "price": 6, 3155 | "description": "Pizza topped with Spicy Schezwan sauce, sweet corn & crunchy capsicum and cheesy dressing.", 3156 | "quantity": 1, 3157 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/schezwan-corn-&-capsicum-pan-personal.23c83846270110a536b40ec74529e907.1.jpg?width=550", 3158 | "sizeandcrust": [ 3159 | { 3160 | "mediumPan": [ 3161 | { 3162 | "price": 6 3163 | } 3164 | ], 3165 | "mediumstuffedcrustcheesemax": [ 3166 | { 3167 | "price": 7 3168 | } 3169 | ], 3170 | "medium stuffed crust-veg kebab": [ 3171 | { 3172 | "price": 8 3173 | } 3174 | ] 3175 | } 3176 | ] 3177 | }, 3178 | { 3179 | "id": 2524, 3180 | "name": "Only Cheesy", 3181 | "veg": true, 3182 | "price": 40, 3183 | "description": "Pizza topped with cheesy dressing and mozzarella cheese for that extraaa cheesy flavor.", 3184 | "quantity": 1, 3185 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/only-cheesy-pan-personal.951dbe6ee07dafc48e04fe9a1bbe4ddb.1.jpg?width=550", 3186 | "sizeandcrust": [ 3187 | { 3188 | "mediumPan": [ 3189 | { 3190 | "price": 40 3191 | } 3192 | ], 3193 | "mediumstuffedcrustcheesemax": [ 3194 | { 3195 | "price": 45 3196 | } 3197 | ], 3198 | "medium stuffed crust-veg kebab": [ 3199 | { 3200 | "price": 50 3201 | } 3202 | ] 3203 | } 3204 | ] 3205 | }, 3206 | { 3207 | "id": 2625, 3208 | "name": "Classic Sausage", 3209 | "veg": false, 3210 | "price": 8, 3211 | "description": "Pizza topped with our Classic Pan sauce, flavorful chicken sausage and cheesy dressing.", 3212 | "quantity": 1, 3213 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/classic-sausage-pan-personal.fbbfbce57f62a8d8b366db5f66798704.1.jpg?width=550", 3214 | "sizeandcrust": [ 3215 | { 3216 | "mediumPan": [ 3217 | { 3218 | "price": 8 3219 | } 3220 | ], 3221 | "mediumstuffedcrustcheesemax": [ 3222 | { 3223 | "price": 9 3224 | } 3225 | ], 3226 | "medium stuffed crust-veg kebab": [ 3227 | { 3228 | "price": 11 3229 | } 3230 | ] 3231 | } 3232 | ] 3233 | }, 3234 | { 3235 | "id": 2726, 3236 | "name": "Classic Paneer Capsicum & Onion", 3237 | "veg": true, 3238 | "price": 6, 3239 | "description": "Pizza topped with our Classic Pan sauce, flavorful paneer, crunchy onion & capsicum and cheesy dressing.", 3240 | "quantity": 1, 3241 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/classic-paneer-capsicum-&-onion-pan-personal.ae2c5f3e3e5881af1f31e65cb9526289.1.jpg?width=550", 3242 | "sizeandcrust": [ 3243 | { 3244 | "mediumPan": [ 3245 | { 3246 | "price": 6 3247 | } 3248 | ], 3249 | "mediumstuffedcrustcheesemax": [ 3250 | { 3251 | "price": 7 3252 | } 3253 | ], 3254 | "medium stuffed crust-veg kebab": [ 3255 | { 3256 | "price": 9 3257 | } 3258 | ] 3259 | } 3260 | ] 3261 | }, 3262 | { 3263 | "id": 2827, 3264 | "name": "Italian Pepperoni & Onion", 3265 | "veg": false, 3266 | "price": 5, 3267 | "description": "Pizza topped with our Chef's Special Italian sauce, crunchy onion, chicken pepperoni and cheesy dressing.", 3268 | "quantity": 1, 3269 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/italian-pepperoni-&-onion-pan-personal.b6c0c99c9241f2fce14493773f625dd3.1.jpg?width=550", 3270 | "sizeandcrust": [ 3271 | { 3272 | "mediumPan": [ 3273 | { 3274 | "price": 5 3275 | } 3276 | ], 3277 | "mediumstuffedcrustcheesemax": [ 3278 | { 3279 | "price": 6 3280 | } 3281 | ], 3282 | "medium stuffed crust-veg kebab": [ 3283 | { 3284 | "price": 7 3285 | } 3286 | ] 3287 | } 3288 | ] 3289 | }, 3290 | { 3291 | "id": 2928, 3292 | "name": "Schezwan Meatball & Capsicum", 3293 | "veg": false, 3294 | "price": 10, 3295 | "description": "Pizza topped with Spicy Schezwan sauce, crunchy capsicum, Schezwan meatballs and cheesy dressing making it spice lovers paradise.", 3296 | "quantity": 1, 3297 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/schezwan-meatball-&-capsicum-pan-personal.e27dd4520db7e81fbebeec8428a925bf.1.jpg?width=550", 3298 | "sizeandcrust": [ 3299 | { 3300 | "mediumPan": [ 3301 | { 3302 | "price": 12 3303 | } 3304 | ], 3305 | "mediumstuffedcrustcheesemax": [ 3306 | { 3307 | "price": 15 3308 | } 3309 | ], 3310 | "medium stuffed crust-veg kebab": [ 3311 | { 3312 | "price": 18 3313 | } 3314 | ] 3315 | } 3316 | ] 3317 | }, 3318 | { 3319 | "id": 3029, 3320 | "name": "Tandoori Tikka & Onion", 3321 | "veg": false, 3322 | "price": 5, 3323 | "description": "Pizza topped with our signature tandoori sauce, crunchy onion, flavorful chicken tikka and cheesy dressing.", 3324 | "quantity": 1, 3325 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/tandoori-tikka-&-onion-pan-personal.e47a58535b3ef920e00d559d79defad4.1.jpg?width=550", 3326 | "sizeandcrust": [ 3327 | { 3328 | "mediumPan": [ 3329 | { 3330 | "price": 6 3331 | } 3332 | ], 3333 | "mediumstuffedcrustcheesemax": [ 3334 | { 3335 | "price": 7 3336 | } 3337 | ], 3338 | "medium stuffed crust-veg kebab": [ 3339 | { 3340 | "price": 9 3341 | } 3342 | ] 3343 | } 3344 | ] 3345 | }, 3346 | { 3347 | "id": 3130, 3348 | "name": "Classic Loaded Chicken Delight", 3349 | "veg": false, 3350 | "price": 9, 3351 | "description": "Pizza topped with our Classic Pan sauce, herbed chicken, flavorful sausages, juicy tomato and cheesy dressing.", 3352 | "quantity": 1, 3353 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/pizza/classic-loaded-chicken-delight-pan-personal.8d0b6cb6bc34a734679ac40004edba10.1.jpg?width=550", 3354 | "sizeandcrust": [ 3355 | { 3356 | "mediumPan": [ 3357 | { 3358 | "price": 9 3359 | } 3360 | ], 3361 | "mediumstuffedcrustcheesemax": [ 3362 | { 3363 | "price": 11 3364 | } 3365 | ], 3366 | "medium stuffed crust-veg kebab": [ 3367 | { 3368 | "price": 13 3369 | } 3370 | ] 3371 | } 3372 | ] 3373 | } 3374 | ], 3375 | "dessert": [ 3376 | { 3377 | "id": 99, 3378 | "name": "Choco Sundae", 3379 | "price": 2, 3380 | "description": "Choco Sundae Cup (100 ml)", 3381 | "img": "https://www.havmor.com/sites/default/files/styles/502x375/public/gallery/Choco%20Sundae__0.webp?itok=Md5Ameuw", 3382 | "quantity": 1 3383 | }, 3384 | { 3385 | "id": 98, 3386 | "name": "Cornetto Double Chocolate", 3387 | "price": 2, 3388 | "description": "Cornetto Double Chocolate Cone (105 ml)", 3389 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/dessert/cornetto-double-chocolate.acc21849ac732f2f85998ad73e532d40.1.jpg?width=522", 3390 | "quantity": 1 3391 | }, 3392 | { 3393 | "id": 97, 3394 | "name": "Magnum Truffle", 3395 | "price": 4, 3396 | "description": "Magnum Truffle (80 ml)", 3397 | "img": "https://cdn.grofers.com/cdn-cgi/image/f=auto,fit=scale-down,q=85,metadata=none,w=480,h=480/app/images/products/sliding_image/450560a.jpg", 3398 | "quantity": 1 3399 | }, 3400 | { 3401 | "id": 96, 3402 | "name": "Divine Chocolate(Tub)", 3403 | "price": 6, 3404 | "description": "Divine Chocolate (700 ml)", 3405 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/dessert/divine-chocolate-tub.1df6b11e6e5d510cd11ae0d6e475686d.1.jpg?width=522", 3406 | "quantity": 1 3407 | }, 3408 | { 3409 | "id": 95, 3410 | "name": "Choco Volcano Cake", 3411 | "price": 6, 3412 | "description": "Choco Delight With A Gooey Chocolate Volcano Centre", 3413 | "img": "https://api.pizzahut.io/v1/content/en-in/in-1/images/dessert/choco-volcano-cake.f829dc6e30a07b83f232b4880395162f.1.jpg", 3414 | "quantity": 1 3415 | }, 3416 | { 3417 | "name": "Cake", 3418 | "price": "12", 3419 | "img": "https://images.pexels.com/photos/1055272/pexels-photo-1055272.jpeg?auto=compress&cs=tinysrgb&w=600", 3420 | "quantity": 1, 3421 | "id": 100 3422 | }, 3423 | { 3424 | "name": "Lollipop", 3425 | "price": "11", 3426 | "img": "https://images.pexels.com/photos/1289363/pexels-photo-1289363.jpeg?auto=compress&cs=tinysrgb&w=600", 3427 | "quantity": 1, 3428 | "id": 101 3429 | } 3430 | ], 3431 | "Login": [], 3432 | "todo":[], 3433 | "users":[], 3434 | "appointments":[] 3435 | } 3436 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const jsonServer = require("json-server"); // importing json-server library 2 | const server = jsonServer.create(); 3 | const router = jsonServer.router("db.json"); 4 | const middlewares = jsonServer.defaults(); 5 | const port = process.env.PORT || 8080; // chose port from here like 8080, 3001 6 | 7 | server.use(middlewares); 8 | server.use(router); 9 | 10 | server.listen(port); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "project_data", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "node index.js", 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/UmaSahni/project_data.git" 13 | }, 14 | "keywords": [], 15 | "author": "", 16 | "license": "ISC", 17 | "bugs": { 18 | "url": "https://github.com/UmaSahni/project_data/issues" 19 | }, 20 | "homepage": "https://github.com/UmaSahni/project_data#readme", 21 | "dependencies": { 22 | "cors": "^2.8.5", 23 | "json-serve": "^0.1.0", 24 | "json-server": "^0.17.1" 25 | } 26 | } 27 | --------------------------------------------------------------------------------