-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathdb.json
3432 lines (3431 loc) · 125 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"burger": [
{
"id": 10000,
"name": "Bacon,Egg & Cheese Biscuit",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Bacon-Egg-Cheese-Biscuit-Regular-Size-Biscuit-1:1-4-product-tile-desktop"
},
{
"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"
}
],
"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. ",
"ingredients": [
{
"id": 1,
"name": "Biscuit",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/biscuit"
},
{
"id": 2,
"name": "Folded Egg",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/folded_egg"
},
{
"id": 3,
"name": "Pasteurized Process American Cheese",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180"
},
{
"id": 4,
"name": "Thick Cut Applewood Smoked Bacon",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/applewood_bacon"
},
{
"id": 5,
"name": "Salted Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted"
},
{
"id": 6,
"name": "Clarified Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter"
}
],
"price": 3.23,
"veg": false
},
{
"id": 1010,
"name": "Egg McMuffin",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Egg-McMuffin-1:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Egg-McMuffin-1:product-header-mobile?wid=768&hei=443&dpr=off"
}
],
"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®.",
"ingredients": [
{
"id": 1,
"name": "English Muffin",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/english_muffin"
},
{
"id": 2,
"name": "Egg",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/round_egg"
},
{
"id": 3,
"name": "Canadian Bacon",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/canadian_bacon"
},
{
"id": 4,
"name": "Pasteurized Process American Cheese",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180"
},
{
"id": 5,
"name": "Salted Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted"
},
{
"id": 6,
"name": "Clarified Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter"
}
],
"price": 5,
"veg": false
},
{
"id": 1030,
"name": "Sausage McMuffin",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-McMuffin:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-McMuffin:product-header-mobile?wid=768&hei=441&dpr=off"
}
],
"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. ",
"ingredients": [
{
"id": 1,
"name": "English Muffin",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/english_muffin"
},
{
"id": 2,
"name": "Sausage Patty",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage"
},
{
"id": 3,
"name": "Salted Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted"
},
{
"id": 4,
"name": "Clarified Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter"
}
],
"price": 12,
"veg": false
},
{
"id": 1040,
"name": "Sausage McMuffin® with Egg",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-McMuffin-with-Egg:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-McMuffin-with-Egg:product-header-mobile?wid=768&hei=443&dpr=off"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "English Muffin",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/english_muffin"
},
{
"id": 2,
"name": "Sausage Patty",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage"
},
{
"id": 3,
"name": "Egg",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/round_egg"
},
{
"id": 4,
"name": "Pasteurized Process American Cheese",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180"
},
{
"id": 5,
"name": "Salted Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted"
},
{
"id": 6,
"name": "Clarified Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter"
}
],
"price": 5.6,
"veg": false
},
{
"id": 1050,
"name": "Sausage Biscuit",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Biscuit-Regular-Size-Biscuit-1:1-4-product-tile-desktop"
},
{
"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"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "Biscuit",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/biscuit"
},
{
"id": 2,
"name": "Sausage Patty",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage"
},
{
"id": 5,
"name": "Salted Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted"
}
],
"price": 12,
"veg": false
},
{
"id": 1060,
"name": "Sausage Biscuit with Egg",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Biscuit-with-Egg-Regular-Size-Biscuit-1:1-4-product-tile-desktop"
},
{
"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"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "Biscuit",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/biscuit"
},
{
"id": 2,
"name": "Folded Egg",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/folded_egg"
},
{
"id": 3,
"name": "Sausage Patty",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage"
},
{
"id": 4,
"name": "Salted Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted"
},
{
"id": 5,
"name": "Clarified Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter"
}
],
"price": 4.6,
"veg": false
},
{
"id": 1070,
"name": "Bacon, Egg & Cheese McGriddles®",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Egg-Cheese-McGriddles-1:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Sausage-Egg-Cheese-McGriddles:product-header-mobile?wid=768&hei=441&dpr=off"
}
],
"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®.",
"ingredients": [
{
"id": 1,
"name": "Griddle Cakes",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/McGriddles_top"
},
{
"id": 2,
"name": "Sausage Patty",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/sausage"
},
{
"id": 3,
"name": "Folded Egg",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/folded_egg"
},
{
"id": 4,
"name": "Pasteurized Process American Cheese",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180"
},
{
"id": 5,
"name": "Clarified Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/clarified_butter"
}
],
"price": 12,
"veg": false
},
{
"id": 1080,
"name": "Crispy Chicken Sandwich",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-crispy-chicken-sandwich:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-crispy-chicken-sandwich:product-header-mobile?wid=768&hei=443&dpr=off"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "Crispy Chicken Fillet",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crispy-chicken-fillet"
},
{
"id": 2,
"name": "Potato Roll",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-potato-roll"
},
{
"id": 3,
"name": "Crinkle Cut Pickle",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crinkle-cut-pickle"
},
{
"id": 4,
"name": "Salted Butter",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/butter_salted"
}
],
"price": 8,
"veg": false
},
{
"id": 1090,
"name": "Deluxe Crispy Chicken Sandwich",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-deluxe-crispy-chicken-sandwich:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-deluxe-crispy-chicken-sandwich:product-header-mobile?wid=768&hei=443&dpr=off"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "Crispy Chicken Fillet",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crispy-chicken-fillet"
},
{
"id": 2,
"name": "Potato Roll",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-potato-roll"
},
{
"id": 3,
"name": "Roma Tomato",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/Ingredients_Tomato_180x180"
},
{
"id": 4,
"name": "Shredded Lettuce",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce"
},
{
"id": 5,
"name": "Mayonnaise",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/mayonnaise"
}
],
"price": 10,
"veg": false
},
{
"id": 10100,
"name": "Spicy Crispy Chicken Sandwich",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-spicy-crispy-chicken-sandwich:1-4-product-tile-desktop"
},
{
"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"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "Crispy Chicken Fillet",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crispy-chicken-fillet"
},
{
"id": 2,
"name": "Potato Roll",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-potato-roll"
},
{
"id": 3,
"name": "Spicy Pepper Sauce",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-original-spicy-sauce"
},
{
"id": 4,
"name": "Crinkle Cut Pickle",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crinkle-cut-pickle"
}
],
"price": 9.6,
"veg": false
},
{
"id": 10110,
"name": "Spicy Deluxe Crispy Chicken Sandwich",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-spicy-deluxe-crispy-chicken-sandwich:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-spicy-deluxe-crispy-chicken-sandwich:product-header-mobile?wid=768&hei=441&dpr=off"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "Crispy Chicken Fillet",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-crispy-chicken-fillet"
},
{
"id": 2,
"name": "Potato Roll",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-potato-roll"
},
{
"id": 3,
"name": "Roma Tomato",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/Ingredients_Tomato_180x180"
},
{
"id": 4,
"name": "Spicy Pepper Sauce",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/t-original-spicy-sauce"
},
{
"id": 5,
"name": "Shredded Lettuce",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce"
}
],
"price": 15,
"veg": false
},
{
"id": 10120,
"name": "Filet-O-Fish®",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Filet-O-Fish-1:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Filet-O-Fish-1:product-header-mobile?wid=768&hei=443&dpr=off"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "Fish Filet Patty",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/fish"
},
{
"id": 2,
"name": "Regular Bun",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/regular_bun"
},
{
"id": 3,
"name": "Tartar Sauce",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/default_logo"
},
{
"id": 4,
"name": "Pasteurized Process American Cheese Half Slice",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/american_cheese_half"
},
{
"id": 5,
"name": "Shredded Lettuce",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce"
}
],
"price": 7,
"veg": false
},
{
"id": 10130,
"name": "McChicken®",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-McChicken-1:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-McChicken-1:product-header-mobile?wid=768&hei=443&dpr=off"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "McChicken Patty",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/mcchicken"
},
{
"id": 2,
"name": "Regular Bun",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/regular_bun"
},
{
"id": 3,
"name": "Shredded Lettuce",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce"
},
{
"id": 4,
"name": "Mayonnaisee",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/mayonnaisef"
}
],
"price": 8,
"veg": false
},
{
"id": 10140,
"name": "Big Mac®",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Big-Mac-1:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Big-Mac-1:product-header-mobile?wid=768&hei=441&dpr=off"
}
],
"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.",
"ingredients": [
{
"id": 1,
"name": "Big Mac Bun",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/big_mac_bun"
},
{
"id": 2,
"name": "100% Beef Patty",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/10_1_patty"
},
{
"id": 3,
"name": "Shredded Lettuce",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/shredded_lettuce"
},
{
"id": 4,
"name": "Big Mac Sauce",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/big_mac_sauce"
},
{
"id": 5,
"name": "Pasteurized Process American Cheese",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180"
},
{
"id": 6,
"name": "Pickle Slices",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/pickles"
},
{
"id": 7,
"name": "Onions",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/reconstituted_onions"
}
],
"price": 10.45,
"veg": false
},
{
"id": 10150,
"name": "Quarter Pounder®* with Cheese",
"images": [
{
"sm": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Quarter-Pounder-with-Cheese-1:1-4-product-tile-desktop"
},
{
"lg": "https://s7d1.scene7.com/is/image/mcdonalds/t-mcdonalds-Quarter-Pounder-with-Cheese-1:product-header-mobile?wid=768&hei=443&dpr=off"
}
],
"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. ",
"ingredients": [
{
"id": 1,
"name": "Quarter Pound 100% Beef Patty",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/default_logo"
},
{
"id": 2,
"name": "Quarter Pound Bun",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/quarter_pounder_bun"
},
{
"id": 3,
"name": "Pasteurized Process American Cheese",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/ingredient_american_cheese_180x180"
},
{
"id": 4,
"name": "Ketchup",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/ketchup"
},
{
"id": 5,
"name": "Pickle Slices",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/pickles"
},
{
"id": 6,
"name": "Onions",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/slivered_onions"
},
{
"id": 7,
"name": "Mustard",
"img": "https://s7d1.scene7.com/is/image/mcdonalds/mustard"
}
],
"price": 6,
"veg": false
}
],
"drinks": [
{
"id": "ea43ffb8500c4bc8a32faffa",
"spirit_id": "gin",
"cocktail_name": "20th Century",
"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.",
"additional_tips": "",
"alcoholic": true,
"price": "12",
"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",
"garnish": "lemon twist",
"ingredients": [
{
"list_order": 1,
"amount": "1 1/2 ounces (45ml)",
"ingredient": {
"name": "gin",
"description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.",
"id": "gin"
}
},
{
"list_order": 2,
"amount": "1/2 ounce (15ml)",
"ingredient": {
"name": "Lillet blanc",
"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.",
"id": "lilletblanc"
}
},
{
"list_order": 3,
"amount": "1/2 ounce (15ml)",
"ingredient": {
"name": "white creme de cacao",
"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.",
"id": "whitecremedecacao"
}
},
{
"list_order": 4,
"amount": "3/4 ounce (22.5ml)",
"ingredient": {
"name": "lemon juice",
"description": "Lemon juice is made from freshly squeezed lemons.",
"id": "lemonjuice"
}
}
],
"steps": [
{
"step": 1,
"instructions": "Add the gin, Lillet blanc, white creme de cacao and lemon juice to a shaker with ice and shake until well-chilled."
},
{
"step": 2,
"instructions": "Fine-strain into a chilled coupe."
},
{
"step": 3,
"instructions": "Garnish with a lemon twist."
}
],
"glasses": [
{
"list_order": 1,
"glass": {
"name": "Champagne Saucer (Coupe)",
"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.",
"image_url": "https://rapid.drinks.digital/static/coupe.png",
"id": "coupe"
}
},
{
"list_order": 2,
"glass": {
"name": "Cocktail (or Martini) Glass",
"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.",
"image_url": "https://rapid.drinks.digital/static/cocktail.png",
"id": "cocktail"
}
}
],
"tags": [
{
"list_order": 1,
"tag": {
"id": "dessert",
"name": "Dessert Cocktails"
}
}
],
"created_at": "2022-12-04T02:31:08.290136+00:00",
"updated_at": null
},
{
"id": "e2677dfe0cc14bcfa9e0e5ed",
"spirit_id": "gin",
"cocktail_name": "50/50 Martini",
"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.",
"additional_tips": "",
"alcoholic": true,
"price": "33",
"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",
"garnish": "lemon twist",
"ingredients": [
{
"list_order": 1,
"amount": "1 1/2 ounces (45ml)",
"ingredient": {
"name": "gin",
"description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.",
"id": "gin"
}
},
{
"list_order": 2,
"amount": "1 1/2 ounces (45ml)",
"ingredient": {
"name": "dry vermouth",
"description": "Vermouth is an aromatized fortified wine, sweet vermouth has a higher amount of sugar added and is often brownish red from caramel coloring.",
"id": "dryvermouth"
}
},
{
"list_order": 3,
"amount": "1 dash",
"ingredient": {
"name": "orange bitters",
"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.",
"id": "orangebitters"
}
}
],
"steps": [
{
"step": 1,
"instructions": "In a mixing glass add the gin, dry vermouth and orange bitters. Fill with ice and stir until well-chilled."
},
{
"step": 2,
"instructions": "Strain into a chilled cocktail glass."
},
{
"step": 3,
"instructions": "Garnish with a lemon twist."
}
],
"glasses": [
{
"list_order": 1,
"glass": {
"name": "Cocktail (or Martini) Glass",
"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.",
"image_url": "https://rapid.drinks.digital/static/cocktail.png",
"id": "cocktail"
}
},
{
"list_order": 2,
"glass": {
"name": "Champagne Saucer (Coupe)",
"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.",
"image_url": "https://rapid.drinks.digital/static/coupe.png",
"id": "coupe"
}
},
{
"list_order": 3,
"glass": {
"name": "Nick and Nora Glass",
"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.",
"image_url": "https://rapid.drinks.digital/static/nick.png",
"id": "nick"
}
}
],
"tags": [
{
"list_order": 1,
"tag": {
"id": "classic",
"name": "Classic Cocktails"
}
}
],
"created_at": "2022-12-06T00:07:09.939403+00:00",
"updated_at": null
},
{
"id": "82869651ce2140288fcbea2e",
"spirit_id": "whiskey",
"cocktail_name": "7 and 7",
"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.",
"additional_tips": "",
"alcoholic": true,
"price": "76",
"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",
"garnish": "",
"ingredients": [
{
"list_order": 1,
"amount": "1 1/2 ounces (45ml)",
"ingredient": {
"name": "Seagram’s 7 Crown whiskey",
"description": "Seagram’s 7 Crown is blended American whiskey aged in oak.",
"id": "seagrams7"
}
},
{
"list_order": 2,
"amount": "4 ounces (120ml)",
"ingredient": {
"name": "7UP",
"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.",
"id": "7up"
}
}
],
"steps": [
{
"step": 1,
"instructions": "Fill a highball glass with ice."
},
{
"step": 2,
"instructions": "Add the whiskey and top with 7UP and stir gently."
}
],
"glasses": [
{
"list_order": 1,
"glass": {
"name": "Highball Glass",
"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.",
"image_url": "https://rapid.drinks.digital/static/highball.png",
"id": "highball"
}
},
{
"list_order": 2,
"glass": {
"name": "Collins Glass",
"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.",
"image_url": "https://rapid.drinks.digital/static/collins.png",
"id": "collins"
}
}
],
"tags": [
{
"list_order": 1,
"tag": {
"id": "highball",
"name": "Highball"
}
}
],
"created_at": "2022-12-07T03:20:27.596039+00:00",
"updated_at": null
},
{
"id": "300f86d70ea54ab5a9d40c20",
"spirit_id": "vodka",
"cocktail_name": "Adios Motherfucker",
"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.",
"additional_tips": "",
"price": "87",
"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",
"alcoholic": true,
"garnish": "lemon wedge and a brandied cherry",
"ingredients": [
{
"list_order": 1,
"amount": "1/2 ounce (15ml)",
"ingredient": {
"name": "vodka",
"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.",
"id": "vodka"
}
},
{
"list_order": 2,
"amount": "1/2 ounce (15ml)",
"ingredient": {
"name": "rum",
"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.",
"id": "rum"
}
},
{
"list_order": 3,
"amount": "1/2 ounce (15ml)",
"ingredient": {
"name": "gin",
"description": "Gin is a distilled alcoholic drink that derives its predominant flavor from juniper berries.",
"id": "gin"
}
},
{
"list_order": 4,
"amount": "1/2 ounce (15ml)",
"ingredient": {
"name": "tequila",
"description": "Tequila is a distilled beverage made from the blue agave plant.",
"id": "tequila"
}
},
{
"list_order": 5,
"amount": "1/2 ounce (15ml)",
"ingredient": {
"name": "blue curaçao",
"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.",
"id": "bluecuracao"
}
},
{
"list_order": 6,
"amount": "3/4 ounce (22.5ml)",
"ingredient": {
"name": "lemon juice",
"description": "Lemon juice is made from freshly squeezed lemons.",
"id": "lemonjuice"
}
},
{
"list_order": 7,
"amount": "3/4 ounce (22.5ml)",
"ingredient": {
"name": "simple syrup",
"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.",
"id": "simplesyrup"
}
},
{
"list_order": 8,
"amount": "3 ounces (90ml)",
"ingredient": {
"name": "lemon-lime soda",
"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.",
"id": "lemonlimesoda"
}
}
],
"steps": [
{
"step": 1,
"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."
},
{
"step": 2,
"instructions": "Strain into a highball glass filled with ice."
},
{
"step": 3,
"instructions": "Top with lemon-lime soda and garnish with a lemon wheel."
}
],
"glasses": [
{
"list_order": 1,