-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipes-74e59-export (1).json
1957 lines (1957 loc) · 113 KB
/
recipes-74e59-export (1).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
{
"meal" : [ {
"strArea" : "American"
}, {
"strArea" : "British"
}, {
"strArea" : "Canadian"
}, {
"strArea" : "Chinese"
}, {
"strArea" : "Dutch"
}, {
"strArea" : "Egyptian"
}, {
"strArea" : "French"
}, {
"strArea" : "Greek"
}, {
"strArea" : "Indian"
}, {
"strArea" : "Irish"
}, {
"strArea" : "Italian"
}, {
"strArea" : "Jamaican"
}, {
"strArea" : "Japanese"
}, {
"strArea" : "Kenyan"
}, {
"strArea" : "Malaysian"
}, {
"strArea" : "Mexican"
}, {
"strArea" : "Moroccan"
}, {
"strArea" : "Polish"
}, {
"strArea" : "Russian"
}, {
"strArea" : "Spanish"
}, {
"strArea" : "Thai"
}, {
"strArea" : "Tunisian"
}, {
"strArea" : "Turkish"
}, {
"strArea" : "Unknown"
}, {
"strArea" : "Vietnamese"
} ],
"meals" : [ {
"idIngredient" : "1",
"strDescription" : "The chicken is a type of domesticated fowl, a subspecies of the red junglefowl (Gallus gallus). It is one of the most common and widespread domestic animals, with a total population of more than 19 billion as of 2011. There are more chickens in the world than any other bird or domesticated fowl. Humans keep chickens primarily as a source of food (consuming both their meat and eggs) and, less commonly, as pets. Originally raised for cockfighting or for special ceremonies, chickens were not kept for food until the Hellenistic period (4th–2nd centuries BC).\r\n\r\nGenetic studies have pointed to multiple maternal origins in South Asia, Southeast Asia, and East Asia, but with the clade found in the Americas, Europe, the Middle East and Africa originating in the Indian subcontinent. From ancient India, the domesticated chicken spread to Lydia in western Asia Minor, and to Greece by the 5th century BC. Fowl had been known in Egypt since the mid-15th century BC, with the \"bird that gives birth every day\" having come to Egypt from the land between Syria and Shinar, Babylonia, according to the annals of Thutmose III.",
"strIngredient" : "Chicken"
}, {
"idIngredient" : "2",
"strDescription" : "Salmon is the common name for several species of ray-finned fish in the family Salmonidae. Other fish in the same family include trout, char, grayling and whitefish. Salmon are native to tributaries of the North Atlantic (genus Salmo) and Pacific Ocean (genus Oncorhynchus). Many species of salmon have been introduced into non-native environments such as the Great Lakes of North America and Patagonia in South America. Salmon are intensively farmed in many parts of the world.\r\n\r\nTypically, salmon are anadromous: they hatch in fresh water, migrate to the ocean, then return to fresh water to reproduce. However, populations of several species are restricted to fresh water through their lives. Folklore has it that the fish return to the exact spot where they hatched to spawn. Tracking studies have shown this to be mostly true. A portion of a returning salmon run may stray and spawn in different freshwater systems; the percent of straying depends on the species of salmon. Homing behavior has been shown to depend on olfactory memory. Salmon date back to the Neogene.",
"strIngredient" : "Salmon"
}, {
"idIngredient" : "3",
"strDescription" : "Beef is the culinary name for meat from cattle, particularly skeletal muscle. Humans have been eating beef since prehistoric times. Beef is a source of high-quality protein and nutrients.\r\n\r\nMost beef skeletal muscle meat can be used as is by merely cutting into certain parts, such as roasts, short ribs or steak (filet mignon, sirloin steak, rump steak, rib steak, rib eye steak, hanger steak, etc.), while other cuts are processed (corned beef or beef jerky). Trimmings, on the other hand, are usually mixed with meat from older, leaner (therefore tougher) cattle, are ground, minced or used in sausages. The blood is used in some varieties called blood sausage. Other parts that are eaten include other muscles and offal, such as the oxtail, liver, tongue, tripe from the reticulum or rumen, glands (particularly the pancreas and thymus, referred to as sweetbread), the heart, the brain (although forbidden where there is a danger of bovine spongiform encephalopathy, BSE, commonly referred to as mad cow disease), the kidneys, and the tender testicles of the bull (known in the United States as calf fries, prairie oysters, or Rocky Mountain oysters). Some intestines are cooked and eaten as is, but are more often cleaned and used as natural sausage casings. The bones are used for making beef stock.",
"strIngredient" : "Beef"
}, {
"idIngredient" : "4",
"strDescription" : "Pork is the culinary name for the flesh of a domestic pig (Sus scrofa domesticus). It is the most commonly consumed meat worldwide,[1] with evidence of pig husbandry dating back to 5000 BC.\r\n\r\nPork is eaten both freshly cooked and preserved. Curing extends the shelf life of the pork products. Ham, smoked pork, gammon, bacon and sausage are examples of preserved pork. Charcuterie is the branch of cooking devoted to prepared meat products, many from pork.\r\n\r\nPig is the most popular meat in the Eastern and non-Muslim parts of Southeastern Asia (Indochina, Philippines, Singapore, East Timor) and is also very common in the Western world, especially in Central Europe. It is highly prized in Asian cuisines for its fat content and pleasant texture. Consumption of pork is forbidden by Jewish, Muslim and Rastafarian dietary law, for religious reasons, with several suggested possible causes.",
"strIngredient" : "Pork"
}, {
"idIngredient" : "5",
"strDescription" : "The avocado, a tree with probable origin in South Central Mexico, is classified as a member of the flowering plant family Lauraceae. The fruit of the plant, also called an avocado (or avocado pear or alligator pear), is botanically a large berry containing a single large seed.\r\n\r\nAvocados are commercially valuable and are cultivated in tropical and Mediterranean climates throughout the world. They have a green-skinned, fleshy body that may be pear-shaped, egg-shaped, or spherical. Commercially, they ripen after harvesting. Avocado trees are partially self-pollinating, and are often propagated through grafting to maintain predictable fruit quality and quantity. In 2017, Mexico produced 34% of the world supply of avocados.",
"strIngredient" : "Avocado"
}, {
"idIngredient" : "9",
"strDescription" : "Apple cider vinegar, or cider vinegar, is a vinegar made from fermented apple juice, and used in salad dressings, marinades, vinaigrettes, food preservatives, and chutneys. It is made by crushing apples, then squeezing out the juice. Bacteria and yeast are added to the liquid to start the alcoholic fermentation process, which converts the sugars to alcohol. In a second fermentation step, the alcohol is converted into vinegar by acetic acid-forming bacteria (Acetobacter species). Acetic acid and malic acid combine to give vinegar its sour taste. Apple cider vinegar has no medicinal or nutritional value. There is no high-quality clinical evidence that regular consumption of apple cider vinegar helps to maintain or lose body weight, or is effective to manage blood glucose and lipid levels.",
"strIngredient" : "Apple Cider Vinegar"
}, {
"idIngredient" : "10",
"strDescription" : "Asparagus, or garden asparagus, folk name sparrow grass, scientific name Asparagus officinalis, is a perennial flowering plant species in the genus Asparagus. Its young shoots are used as a spring vegetable.\r\n\r\nIt was once classified in the lily family, like the related Allium species, onions and garlic. However, genetic research places lilies, Allium, and asparagus in three separate families—the Liliaceae, Amaryllidaceae, and Asparagaceae, respectively—with the Amaryllidaceae and Asparagaceae being grouped together in the order Asparagales. Sources differ as to the native range of Asparagus officinalis, but generally include most of Europe and western temperate Asia. It is widely cultivated as a vegetable crop.",
"strIngredient" : "Asparagus"
}, {
"idIngredient" : "11",
"strDescription" : "Eggplant (US, Australia), aubergine (UK), or brinjal (South Asia and South Africa) is a plant species in the nightshade family Solanaceae. Solanum melongena is grown worldwide for its edible fruit.\r\n\r\nMost commonly purple, the spongy, absorbent fruit is used in various cuisines. Although often considered a vegetable, it is a berry by botanical definition. As a member of the genus Solanum, it is related to tomato and potato. Like the tomato, its skin and seeds can be eaten, but, like the potato, it is usually eaten cooked. Eggplant is nutritionally low in macronutrient and micronutrient content, but the capability of the fruit to absorb oils and flavors into its flesh through cooking expands its use in the culinary arts.\r\n\r\nIt was originally domesticated from the wild nightshade species thorn or bitter apple, S. incanum, probably with two independent domestications: one in South Asia, and one in East Asia.",
"strIngredient" : "Aubergine"
}, {
"idIngredient" : "13",
"strDescription" : "The tomato is the edible, often red, berry of the plant Solanum lycopersicum, commonly known as a tomato plant. The species originated in western South America and Central America. The Nahuatl (Aztec language) word tomatl gave rise to the Spanish word tomate, from which the English word tomato derived.[3][4] Its domestication and use as a cultivated food may have originated with the indigenous peoples of Mexico. The Aztecs used tomatoes in their cooking at the time of the Spanish conquest of the Aztec Empire, and after the Spanish encountered the tomato for the first time after their contact with the Aztecs, they brought the plant to Europe. From there, the tomato was introduced to other parts of the European-colonized world during the 16th century.",
"strIngredient" : "Baby Plum Tomatoes"
}, {
"idIngredient" : "14",
"strDescription" : "Bacon is a type of salt-cured pork. Bacon is prepared from several different cuts of meat, typically from the pork belly or from back cuts, which have less fat than the belly. It is eaten on its own, as a side dish (particularly in breakfasts), or used as a minor ingredient to flavour dishes (e.g., the club sandwich). Bacon is also used for barding and larding roasts, especially game, including venison and pheasant. The word is derived from the Old High German bacho, meaning \"buttock\", \"ham\" or \"side of bacon\", and is cognate with the Old French bacon.",
"strIngredient" : "Bacon"
}, {
"idIngredient" : "15",
"strDescription" : "Baking powder is a dry chemical leavening agent, a mixture of a carbonate or bicarbonate and a weak acid. The base and acid are prevented from reacting prematurely by the inclusion of a buffer such as cornstarch. Baking powder is used to increase the volume and lighten the texture of baked goods. It works by releasing carbon dioxide gas into a batter or dough through an acid-base reaction, causing bubbles in the wet mixture to expand and thus leavening the mixture. The first single-acting baking powder was developed by Birmingham based food manufacturer Alfred Bird in England in 1843. The first double-acting baking powder was developed by Eben Norton Horsford in America in the 1860s.",
"strIngredient" : "Baking Powder"
}, {
"idIngredient" : "16",
"strDescription" : "Balsamic vinegar (Italian: aceto balsamico), occasionally shortened to balsamic, is a very dark, concentrated, and intensely flavoured vinegar originating in Italy, made wholly or partially from grape must. Grape must is freshly crushed grape juice with all the skins, seeds and stems.",
"strIngredient" : "Balsamic Vinegar"
}, {
"idIngredient" : "17",
"strDescription" : "Basil, also called great basil, is a culinary herb of the family Lamiaceae (mints).\r\n\r\nBasil is native to tropical regions from central Africa to Southeast Asia. It is a tender plant, and is used in cuisines worldwide. Depending on the species and cultivar, the leaves may taste somewhat like anise, with a strong, pungent, often sweet smell.",
"strIngredient" : "Basil"
}, {
"idIngredient" : "18",
"strDescription" : "Basil, also called great basil, is a culinary herb of the family Lamiaceae (mints).\r\n",
"strIngredient" : "Basil Leaves"
}, {
"idIngredient" : "19",
"strDescription" : "Basmati is a variety of long, slender-grained aromatic rice which is traditionally from the Indian subcontinent. As of 2018-19, India exported to over 90% of the overseas basmati rice market, while Pakistan accounted for the remainder, according to the Indian state-run Agricultural and Processed Food Products Export Development Authority and the Pakistan government-run Economic Survey of Pakistan. Many countries use domestically grown basmati rice crops; however, basmati is geographically exclusive to select districts of India, Pakistan, Nepal and Bangladesh.",
"strIngredient" : "Basmati Rice"
}, {
"idIngredient" : "20",
"strDescription" : "The bay leaf is an aromatic leaf commonly used in cooking. It can be used whole, or as dried and ground.",
"strIngredient" : "Bay Leaf"
}, {
"idIngredient" : "21",
"strDescription" : "The bay leaf is an aromatic leaf commonly used in cooking. It can be used whole, or as dried and ground.",
"strIngredient" : "Bay Leaves"
}, {
"idIngredient" : "23",
"strDescription" : "Beef is the culinary name for meat from cattle, particularly skeletal muscle. Humans have been eating beef since prehistoric times. Beef is a source of high-quality protein and nutrients.\r\n\r\nMost beef skeletal muscle meat can be used as is by merely cutting into certain parts, such as roasts, short ribs or steak (filet mignon, sirloin steak, rump steak, rib steak, rib eye steak, hanger steak, etc.), while other cuts are processed (corned beef or beef jerky). Trimmings, on the other hand, are usually mixed with meat from older, leaner (therefore tougher) cattle, are ground, minced or used in sausages. The blood is used in some varieties called blood sausage. Other parts that are eaten include other muscles and offal, such as the oxtail, liver, tongue, tripe from the reticulum or rumen, glands (particularly the pancreas and thymus, referred to as sweetbread), the heart, the brain (although forbidden where there is a danger of bovine spongiform encephalopathy, BSE, commonly referred to as mad cow disease), the kidneys, and the tender testicles of the bull (known in the United States as calf fries, prairie oysters, or Rocky Mountain oysters). Some intestines are cooked and eaten as is, but are more often cleaned and used as natural sausage casings. The bones are used for making beef stock.",
"strIngredient" : "Beef Brisket"
}, {
"idIngredient" : "24",
"strDescription" : "Beef is the culinary name for meat from cattle, particularly skeletal muscle. Humans have been eating beef since prehistoric times. Beef is a source of high-quality protein and nutrients.\r\n\r\nMost beef skeletal muscle meat can be used as is by merely cutting into certain parts, such as roasts, short ribs or steak (filet mignon, sirloin steak, rump steak, rib steak, rib eye steak, hanger steak, etc.), while other cuts are processed (corned beef or beef jerky). Trimmings, on the other hand, are usually mixed with meat from older, leaner (therefore tougher) cattle, are ground, minced or used in sausages. The blood is used in some varieties called blood sausage. Other parts that are eaten include other muscles and offal, such as the oxtail, liver, tongue, tripe from the reticulum or rumen, glands (particularly the pancreas and thymus, referred to as sweetbread), the heart, the brain (although forbidden where there is a danger of bovine spongiform encephalopathy, BSE, commonly referred to as mad cow disease), the kidneys, and the tender testicles of the bull (known in the United States as calf fries, prairie oysters, or Rocky Mountain oysters). Some intestines are cooked and eaten as is, but are more often cleaned and used as natural sausage casings. The bones are used for making beef stock.",
"strIngredient" : "Beef Fillet"
}, {
"idIngredient" : "25",
"strDescription" : "Beef is the culinary name for meat from cattle, particularly skeletal muscle. Humans have been eating beef since prehistoric times. Beef is a source of high-quality protein and nutrients.\r\n\r\nMost beef skeletal muscle meat can be used as is by merely cutting into certain parts, such as roasts, short ribs or steak (filet mignon, sirloin steak, rump steak, rib steak, rib eye steak, hanger steak, etc.), while other cuts are processed (corned beef or beef jerky). Trimmings, on the other hand, are usually mixed with meat from older, leaner (therefore tougher) cattle, are ground, minced or used in sausages. The blood is used in some varieties called blood sausage. Other parts that are eaten include other muscles and offal, such as the oxtail, liver, tongue, tripe from the reticulum or rumen, glands (particularly the pancreas and thymus, referred to as sweetbread), the heart, the brain (although forbidden where there is a danger of bovine spongiform encephalopathy, BSE, commonly referred to as mad cow disease), the kidneys, and the tender testicles of the bull (known in the United States as calf fries, prairie oysters, or Rocky Mountain oysters). Some intestines are cooked and eaten as is, but are more often cleaned and used as natural sausage casings. The bones are used for making beef stock.",
"strIngredient" : "Beef Gravy"
}, {
"idIngredient" : "26",
"strDescription" : "Beef is the culinary name for meat from cattle, particularly skeletal muscle. Humans have been eating beef since prehistoric times. Beef is a source of high-quality protein and nutrients.\r\n\r\nMost beef skeletal muscle meat can be used as is by merely cutting into certain parts, such as roasts, short ribs or steak (filet mignon, sirloin steak, rump steak, rib steak, rib eye steak, hanger steak, etc.), while other cuts are processed (corned beef or beef jerky). Trimmings, on the other hand, are usually mixed with meat from older, leaner (therefore tougher) cattle, are ground, minced or used in sausages. The blood is used in some varieties called blood sausage. Other parts that are eaten include other muscles and offal, such as the oxtail, liver, tongue, tripe from the reticulum or rumen, glands (particularly the pancreas and thymus, referred to as sweetbread), the heart, the brain (although forbidden where there is a danger of bovine spongiform encephalopathy, BSE, commonly referred to as mad cow disease), the kidneys, and the tender testicles of the bull (known in the United States as calf fries, prairie oysters, or Rocky Mountain oysters). Some intestines are cooked and eaten as is, but are more often cleaned and used as natural sausage casings. The bones are used for making beef stock.",
"strIngredient" : "Beef Stock"
}, {
"idIngredient" : "27",
"strDescription" : "Sodium bicarbonate, commonly known as baking soda, is a chemical compound with the formula NaHCO3. It is a salt composed of a sodium cation (Na+) and a bicarbonate anion (HCO3−). Sodium bicarbonate is a white solid that is crystalline, but often appears as a fine powder. It has a slightly salty, alkaline taste resembling that of washing soda (sodium carbonate). The natural mineral form is nahcolite. It is a component of the mineral natron and is found dissolved in many mineral springs.",
"strIngredient" : "Bicarbonate Of Soda"
}, {
"idIngredient" : "28",
"strDescription" : "Biryani, also known as biriyani, biriani, birani or briyani, is a mixed rice dish with its origins among the Muslims of the Indian subcontinent. It can be compared to mixing a curry, later combining it with semi-cooked rice separately. This dish is especially popular throughout the Indian subcontinent, as well as among the diaspora from the region. It is also prepared in other regions such as Iraqi Kurdistan. It is made with Indian spices, rice, meat (chicken, goat, beef, lamb, prawn, or fish), vegetables or eggs.",
"strIngredient" : "Biryani Masala"
}, {
"idIngredient" : "29",
"strDescription" : "Black pepper (Piper nigrum) is a flowering vine in the family Piperaceae, cultivated for its fruit, known as a peppercorn, which is usually dried and used as a spice and seasoning. When fresh and fully mature, it is about 5 mm (0.20 in) in diameter and dark red, and contains a single seed, like all drupes. Peppercorns and the ground pepper derived from them may be described simply as pepper, or more precisely as black pepper (cooked and dried unripe fruit), green pepper (dried unripe fruit), or white pepper (ripe fruit seeds).\r\n\r\nBlack pepper is native to present-day Kerala in Southwestern India, and is extensively cultivated there and elsewhere in tropical regions. Vietnam is the world's largest producer and exporter of pepper, producing 34% of the world's crop, as of 2013.",
"strIngredient" : "Black Pepper"
}, {
"idIngredient" : "30",
"strDescription" : "Molasses (American English) or black treacle (British English) is a viscous product resulting from refining sugarcane or sugar beets into sugar. Molasses varies by amount of sugar, method of extraction, and age of plant. Sugarcane molasses is primarily used for sweetening and flavoring foods in the United States, Canada, and elsewhere. Molasses is a defining component of fine commercial brown sugar.\r\n\r\nSweet sorghum syrup may be colloquially called \"sorghum molasses\" in the southern United States.[2][3] Similar products include honey, maple syrup, corn syrup, and invert syrup. Most of these alternative syrups have milder flavors.",
"strIngredient" : "Black Treacle"
}, {
"idIngredient" : "31",
"strIngredient" : "Borlotti Beans"
}, {
"idIngredient" : "32",
"strIngredient" : "Bowtie Pasta"
}, {
"idIngredient" : "33",
"strIngredient" : "Bramley Apples"
}, {
"idIngredient" : "34",
"strIngredient" : "Brandy"
}, {
"idIngredient" : "35",
"strIngredient" : "Bread"
}, {
"idIngredient" : "36",
"strIngredient" : "Breadcrumbs"
}, {
"idIngredient" : "37",
"strIngredient" : "Broccoli"
}, {
"idIngredient" : "38",
"strIngredient" : "Brown Lentils"
}, {
"idIngredient" : "39",
"strIngredient" : "Brown Rice"
}, {
"idIngredient" : "40",
"strIngredient" : "Brown Sugar"
}, {
"idIngredient" : "41",
"strIngredient" : "Butter"
}, {
"idIngredient" : "43",
"strIngredient" : "Cacao"
}, {
"idIngredient" : "44",
"strIngredient" : "Cajun"
}, {
"idIngredient" : "45",
"strIngredient" : "Canned Tomatoes"
}, {
"idIngredient" : "46",
"strIngredient" : "Cannellini Beans"
}, {
"idIngredient" : "47",
"strIngredient" : "Cardamom"
}, {
"idIngredient" : "49",
"strIngredient" : "Carrots"
}, {
"idIngredient" : "50",
"strIngredient" : "Cashew Nuts"
}, {
"idIngredient" : "51",
"strIngredient" : "Cashews"
}, {
"idIngredient" : "52",
"strIngredient" : "Caster Sugar"
}, {
"idIngredient" : "53",
"strIngredient" : "Cayenne Pepper"
}, {
"idIngredient" : "54",
"strIngredient" : "Celeriac"
}, {
"idIngredient" : "55",
"strIngredient" : "Celery"
}, {
"idIngredient" : "56",
"strIngredient" : "Celery Salt"
}, {
"idIngredient" : "57",
"strIngredient" : "Challots"
}, {
"idIngredient" : "58",
"strIngredient" : "Charlotte Potatoes"
}, {
"idIngredient" : "59",
"strIngredient" : "Cheddar Cheese"
}, {
"idIngredient" : "60",
"strIngredient" : "Cheese"
}, {
"idIngredient" : "61",
"strIngredient" : "Cheese Curds"
}, {
"idIngredient" : "62",
"strIngredient" : "Cherry Tomatoes"
}, {
"idIngredient" : "63",
"strIngredient" : "Chestnut Mushroom"
}, {
"idIngredient" : "65",
"strIngredient" : "Chicken Breast"
}, {
"idIngredient" : "66",
"strIngredient" : "Chicken Breasts"
}, {
"idIngredient" : "67",
"strIngredient" : "Chicken Legs"
}, {
"idIngredient" : "68",
"strIngredient" : "Chicken Stock"
}, {
"idIngredient" : "70",
"strIngredient" : "Chicken Thighs"
}, {
"idIngredient" : "71",
"strIngredient" : "Chickpeas"
}, {
"idIngredient" : "72",
"strIngredient" : "Chili Powder"
}, {
"idIngredient" : "73",
"strIngredient" : "Chilled Butter"
}, {
"idIngredient" : "74",
"strIngredient" : "Chilli"
}, {
"idIngredient" : "75",
"strIngredient" : "Chilli Powder"
}, {
"idIngredient" : "76",
"strIngredient" : "Chinese Broccoli"
}, {
"idIngredient" : "77",
"strIngredient" : "Chocolate Chips"
}, {
"idIngredient" : "78",
"strIngredient" : "Chopped Onion"
}, {
"idIngredient" : "79",
"strIngredient" : "Chopped Parsley"
}, {
"idIngredient" : "80",
"strIngredient" : "Chopped Tomatoes"
}, {
"idIngredient" : "81",
"strIngredient" : "Chorizo"
}, {
"idIngredient" : "82",
"strIngredient" : "Christmas Pudding"
}, {
"idIngredient" : "83",
"strIngredient" : "Cilantro"
}, {
"idIngredient" : "84",
"strIngredient" : "Cinnamon"
}, {
"idIngredient" : "85",
"strIngredient" : "Cinnamon Stick"
}, {
"idIngredient" : "87",
"strIngredient" : "Cloves"
}, {
"idIngredient" : "88",
"strIngredient" : "Coco Sugar"
}, {
"idIngredient" : "89",
"strIngredient" : "Cocoa"
}, {
"idIngredient" : "90",
"strIngredient" : "Coconut Cream"
}, {
"idIngredient" : "91",
"strIngredient" : "Coconut Milk"
}, {
"idIngredient" : "92",
"strIngredient" : "Colby Jack Cheese"
}, {
"idIngredient" : "93",
"strIngredient" : "Cold Water"
}, {
"idIngredient" : "94",
"strIngredient" : "Condensed Milk"
}, {
"idIngredient" : "95",
"strIngredient" : "Coriander"
}, {
"idIngredient" : "96",
"strIngredient" : "Coriander Leaves"
}, {
"idIngredient" : "97",
"strIngredient" : "Coriander Seeds"
}, {
"idIngredient" : "98",
"strIngredient" : "Corn Tortillas"
}, {
"idIngredient" : "99",
"strIngredient" : "Cornstarch"
}, {
"idIngredient" : "100",
"strIngredient" : "Cream"
}, {
"idIngredient" : "101",
"strIngredient" : "Creme Fraiche"
}, {
"idIngredient" : "102",
"strIngredient" : "Cubed Feta Cheese"
}, {
"idIngredient" : "103",
"strIngredient" : "Cucumber"
}, {
"idIngredient" : "104",
"strIngredient" : "Cumin"
}, {
"idIngredient" : "105",
"strIngredient" : "Cumin Seeds"
}, {
"idIngredient" : "106",
"strIngredient" : "Curry Powder"
}, {
"idIngredient" : "107",
"strIngredient" : "Dark Brown Sugar"
}, {
"idIngredient" : "108",
"strIngredient" : "Dark Soft Brown Sugar"
}, {
"idIngredient" : "109",
"strIngredient" : "Dark Soy Sauce"
}, {
"idIngredient" : "110",
"strIngredient" : "Demerara Sugar"
}, {
"idIngredient" : "111",
"strIngredient" : "Diced Tomatoes"
}, {
"idIngredient" : "112",
"strIngredient" : "Digestive Biscuits"
}, {
"idIngredient" : "113",
"strIngredient" : "Dill"
}, {
"idIngredient" : "114",
"strIngredient" : "Doner Meat"
}, {
"idIngredient" : "115",
"strIngredient" : "Double Cream"
}, {
"idIngredient" : "116",
"strIngredient" : "Dried Oregano"
}, {
"idIngredient" : "117",
"strIngredient" : "Dry White Wine"
}, {
"idIngredient" : "119",
"strIngredient" : "Egg Plants"
}, {
"idIngredient" : "120",
"strIngredient" : "Egg Rolls"
}, {
"idIngredient" : "121",
"strIngredient" : "Egg White"
}, {
"idIngredient" : "122",
"strIngredient" : "Egg Yolks"
}, {
"idIngredient" : "123",
"strIngredient" : "Eggs"
}, {
"idIngredient" : "124",
"strIngredient" : "Enchilada Sauce"
}, {
"idIngredient" : "125",
"strIngredient" : "English Mustard"
}, {
"idIngredient" : "126",
"strIngredient" : "Extra Virgin Olive Oil"
}, {
"idIngredient" : "127",
"strIngredient" : "Fajita Seasoning"
}, {
"idIngredient" : "128",
"strIngredient" : "Farfalle"
}, {
"idIngredient" : "129",
"strIngredient" : "Fennel"
}, {
"idIngredient" : "130",
"strIngredient" : "Fennel Bulb"
}, {
"idIngredient" : "131",
"strIngredient" : "Fennel Seeds"
}, {
"idIngredient" : "132",
"strIngredient" : "Fenugreek"
}, {
"idIngredient" : "133",
"strIngredient" : "Feta"
}, {
"idIngredient" : "134",
"strIngredient" : "Fish Sauce"
}, {
"idIngredient" : "135",
"strIngredient" : "Flaked Almonds"
}, {
"idIngredient" : "136",
"strIngredient" : "Flax Eggs"
}, {
"idIngredient" : "137",
"strIngredient" : "Flour"
}, {
"idIngredient" : "138",
"strIngredient" : "Flour Tortilla"
}, {
"idIngredient" : "139",
"strIngredient" : "Floury Potatoes"
}, {
"idIngredient" : "140",
"strIngredient" : "Free-range Egg, Beaten"
}, {
"idIngredient" : "141",
"strIngredient" : "Free-range Eggs, Beaten"
}, {
"idIngredient" : "142",
"strIngredient" : "French Lentils"
}, {
"idIngredient" : "143",
"strIngredient" : "Fresh Basil"
}, {
"idIngredient" : "144",
"strIngredient" : "Fresh Thyme"
}, {
"idIngredient" : "145",
"strIngredient" : "Freshly Chopped Parsley"
}, {
"idIngredient" : "146",
"strIngredient" : "Fries"
}, {
"idIngredient" : "147",
"strIngredient" : "Full Fat Yogurt"
}, {
"idIngredient" : "148",
"strIngredient" : "Garam Masala"
}, {
"idIngredient" : "149",
"strIngredient" : "Garlic"
}, {
"idIngredient" : "150",
"strIngredient" : "Garlic Clove"
}, {
"idIngredient" : "151",
"strIngredient" : "Garlic Powder"
}, {
"idIngredient" : "152",
"strIngredient" : "Garlic Sauce"
}, {
"idIngredient" : "153",
"strIngredient" : "Ghee"
}, {
"idIngredient" : "154",
"strIngredient" : "Ginger"
}, {
"idIngredient" : "155",
"strIngredient" : "Ginger Cordial"
}, {
"idIngredient" : "156",
"strIngredient" : "Ginger Garlic Paste"
}, {
"idIngredient" : "157",
"strIngredient" : "Ginger Paste"
}, {
"idIngredient" : "158",
"strIngredient" : "Golden Syrup"
}, {
"idIngredient" : "159",
"strIngredient" : "Gouda Cheese"
}, {
"idIngredient" : "160",
"strIngredient" : "Granulated Sugar"
}, {
"idIngredient" : "161",
"strIngredient" : "Grape Tomatoes"
}, {
"idIngredient" : "162",
"strIngredient" : "Greek Yogurt"
}, {
"idIngredient" : "163",
"strIngredient" : "Green Beans"
}, {
"idIngredient" : "165",
"strIngredient" : "Green Chilli"
}, {
"idIngredient" : "166",
"strIngredient" : "Green Olives"
}, {
"idIngredient" : "167",
"strIngredient" : "Green Red Lentils"
}, {
"idIngredient" : "168",
"strIngredient" : "Green Salsa"
}, {
"idIngredient" : "169",
"strIngredient" : "Ground Almonds"
}, {
"idIngredient" : "170",
"strIngredient" : "Ground Cumin"
}, {
"idIngredient" : "171",
"strIngredient" : "Ground Ginger"
}, {
"idIngredient" : "172",
"strIngredient" : "Gruyère"
}, {
"idIngredient" : "173",
"strIngredient" : "Hard Taco Shells"
}, {
"idIngredient" : "175",
"strIngredient" : "Harissa Spice"
}, {
"idIngredient" : "176",
"strIngredient" : "Heavy Cream"
}, {
"idIngredient" : "177",
"strIngredient" : "Honey"
}, {
"idIngredient" : "178",
"strIngredient" : "Horseradish"
}, {
"idIngredient" : "179",
"strIngredient" : "Hot Beef Stock"
}, {
"idIngredient" : "180",
"strIngredient" : "Hotsauce"
}, {
"idIngredient" : "181",
"strIngredient" : "Ice Cream"
}, {
"idIngredient" : "182",
"strIngredient" : "Italian Fennel Sausages"
}, {
"idIngredient" : "183",
"strIngredient" : "Italian Seasoning"
}, {
"idIngredient" : "184",
"strIngredient" : "Jalapeno"
}, {
"idIngredient" : "185",
"strIngredient" : "Jasmine Rice"
}, {
"idIngredient" : "186",
"strIngredient" : "Jerusalem Artichokes"
}, {
"idIngredient" : "187",
"strIngredient" : "Kale"
}, {
"idIngredient" : "188",
"strIngredient" : "Khus Khus"
}, {
"idIngredient" : "189",
"strIngredient" : "King Prawns"
}, {
"idIngredient" : "190",
"strIngredient" : "Kosher Salt"
}, {
"idIngredient" : "191",
"strIngredient" : "Lamb"
}, {
"idIngredient" : "192",
"strIngredient" : "Lamb Loin Chops"
}, {
"idIngredient" : "193",
"strIngredient" : "Lamb Mince"
}, {
"idIngredient" : "194",
"strIngredient" : "Lasagne Sheets"
}, {
"idIngredient" : "195",
"strIngredient" : "Lean Minced Beef"
}, {
"idIngredient" : "196",
"strIngredient" : "Leek"
}, {
"idIngredient" : "197",
"strIngredient" : "Lemon"
}, {
"idIngredient" : "198",
"strIngredient" : "Lemon Juice"
}, {
"idIngredient" : "199",
"strIngredient" : "Lemon Zest"
}, {
"idIngredient" : "200",
"strIngredient" : "Lemons"
}, {
"idIngredient" : "201",
"strIngredient" : "Lettuce"
}, {
"idIngredient" : "202",
"strIngredient" : "Lime"
}, {
"idIngredient" : "203",
"strIngredient" : "Little Gem Lettuce"
}, {
"idIngredient" : "204",
"strIngredient" : "Macaroni"
}, {
"idIngredient" : "205",
"strIngredient" : "Mackerel"
}, {
"idIngredient" : "206",
"strIngredient" : "Madras Paste"
}, {
"idIngredient" : "207",
"strIngredient" : "Marjoram"
}, {
"idIngredient" : "208",
"strIngredient" : "Massaman Curry Paste"
}, {
"idIngredient" : "209",
"strIngredient" : "Medjool Dates"
}, {
"idIngredient" : "210",
"strIngredient" : "Meringue Nests"
}, {
"idIngredient" : "211",
"strIngredient" : "Milk"
}, {
"idIngredient" : "212",
"strIngredient" : "Minced Garlic"
}, {
"idIngredient" : "213",
"strIngredient" : "Miniature Marshmallows"
}, {
"idIngredient" : "214",
"strIngredient" : "Mint"
}, {
"idIngredient" : "215",
"strIngredient" : "Monterey Jack Cheese"
}, {
"idIngredient" : "216",
"strIngredient" : "Mozzarella Balls"
}, {
"idIngredient" : "217",
"strIngredient" : "Muscovado Sugar"
}, {
"idIngredient" : "218",
"strIngredient" : "Mushrooms"
}, {
"idIngredient" : "219",
"strIngredient" : "Mustard"
}, {
"idIngredient" : "220",
"strIngredient" : "Mustard Powder"
}, {
"idIngredient" : "221",
"strIngredient" : "Mustard Seeds"
}, {
"idIngredient" : "222",
"strIngredient" : "Nutmeg"
}, {
"idIngredient" : "223",
"strIngredient" : "Oil"
}, {
"idIngredient" : "224",
"strIngredient" : "Olive Oil"
}, {
"idIngredient" : "226",
"strIngredient" : "Onion Salt"
}, {
"idIngredient" : "227",
"strIngredient" : "Onions"
}, {
"idIngredient" : "228",
"strIngredient" : "Orange"
}, {
"idIngredient" : "229",
"strIngredient" : "Orange Zest"
}, {
"idIngredient" : "230",
"strIngredient" : "Oregano"
}, {
"idIngredient" : "231",
"strIngredient" : "Oyster Sauce"
}, {
"idIngredient" : "232",
"strIngredient" : "Paprika"
}, {
"idIngredient" : "233",
"strIngredient" : "Parma Ham"
}, {
"idIngredient" : "234",
"strIngredient" : "Parmesan"
}, {
"idIngredient" : "235",
"strIngredient" : "Parmesan Cheese"
}, {
"idIngredient" : "236",
"strIngredient" : "Parmigiano-reggiano"
}, {
"idIngredient" : "237",
"strIngredient" : "Parsley"
}, {
"idIngredient" : "238",
"strIngredient" : "Peanut Butter"
}, {
"idIngredient" : "239",
"strIngredient" : "Peanut Oil"
}, {
"idIngredient" : "240",
"strIngredient" : "Peanuts"
}, {
"idIngredient" : "241",
"strIngredient" : "Peas"
}, {
"idIngredient" : "242",
"strIngredient" : "Pecorino"
}, {
"idIngredient" : "243",
"strIngredient" : "Penne Rigate"
}, {
"idIngredient" : "244",
"strIngredient" : "Pepper"
}, {
"idIngredient" : "245",
"strIngredient" : "Pine Nuts"
}, {
"idIngredient" : "246",
"strIngredient" : "Pitted Black Olives"
}, {
"idIngredient" : "247",
"strIngredient" : "Plain Chocolate"
}, {
"idIngredient" : "248",
"strIngredient" : "Plain Flour"
}, {
"idIngredient" : "249",
"strIngredient" : "Plum Tomatoes"
}, {
"idIngredient" : "252",
"strIngredient" : "Potato Starch"
}, {
"idIngredient" : "253",
"strIngredient" : "Potatoes"
}, {
"idIngredient" : "254",
"strIngredient" : "Prawns"
}, {
"idIngredient" : "255",
"strIngredient" : "Puff Pastry",
"strType" : "Pastry"
}, {
"idIngredient" : "256",
"strIngredient" : "Raspberry Jam"
}, {
"idIngredient" : "257",
"strIngredient" : "Raw King Prawns"
}, {
"idIngredient" : "258",
"strIngredient" : "Red Chile Flakes"
}, {
"idIngredient" : "259",
"strIngredient" : "Red Chilli"
}, {
"idIngredient" : "261",
"strIngredient" : "Red Chilli Powder"
}, {
"idIngredient" : "263",
"strIngredient" : "Red Onions"
}, {
"idIngredient" : "264",
"strIngredient" : "Red Pepper"
}, {
"idIngredient" : "265",
"strIngredient" : "Red Pepper Flakes"
}, {
"idIngredient" : "266",
"strIngredient" : "Red Wine"
}, {
"idIngredient" : "267",
"strIngredient" : "Refried Beans"
}, {
"idIngredient" : "268",
"strIngredient" : "Rice"
}, {
"idIngredient" : "269",
"strIngredient" : "Rice Noodles"
}, {
"idIngredient" : "270",
"strIngredient" : "Rice Stick Noodles"
}, {
"idIngredient" : "271",
"strIngredient" : "Rice Vermicelli"
}, {
"idIngredient" : "272",
"strIngredient" : "Rigatoni"
}, {
"idIngredient" : "273",
"strIngredient" : "Rocket"
}, {
"idIngredient" : "274",
"strIngredient" : "Rolled Oats"
}, {
"idIngredient" : "275",
"strIngredient" : "Rosemary"
}, {
"idIngredient" : "276",
"strIngredient" : "Saffron"
}, {
"idIngredient" : "277",
"strIngredient" : "Sage"
}, {
"idIngredient" : "278",
"strIngredient" : "Sake"
}, {
"idIngredient" : "280",
"strIngredient" : "Salsa"
}, {
"idIngredient" : "281",
"strIngredient" : "Salt"
}, {
"idIngredient" : "282",
"strIngredient" : "Salted Butter"
}, {
"idIngredient" : "283",
"strIngredient" : "Sausages"
}, {
"idIngredient" : "284",
"strIngredient" : "Sea Salt"
}, {
"idIngredient" : "286",
"strIngredient" : "Self-raising Flour"
}, {
"idIngredient" : "287",
"strIngredient" : "Semi-skimmed Milk"
}, {
"idIngredient" : "288",
"strIngredient" : "Sesame Seed"
}, {
"idIngredient" : "289",
"strIngredient" : "Shallots"
}, {
"idIngredient" : "290",
"strIngredient" : "Shredded Mexican Cheese"
}, {
"idIngredient" : "291",
"strIngredient" : "Shredded Monterey Jack Cheese"
}, {
"idIngredient" : "292",
"strIngredient" : "Small Potatoes"
}, {
"idIngredient" : "293",
"strIngredient" : "Smoked Paprika"
}, {
"idIngredient" : "294",
"strIngredient" : "Smoky Paprika"
}, {
"idIngredient" : "295",
"strIngredient" : "Sour Cream"
}, {
"idIngredient" : "296",
"strIngredient" : "Soy Sauce"
}, {
"idIngredient" : "297",
"strIngredient" : "Soya Milk"
}, {
"idIngredient" : "298",
"strIngredient" : "Spaghetti"
}, {
"idIngredient" : "299",
"strIngredient" : "Spinach"
}, {
"idIngredient" : "301",
"strIngredient" : "Spring Onions"
}, {
"idIngredient" : "302",
"strIngredient" : "Squash"
}, {
"idIngredient" : "303",
"strIngredient" : "Stir-fry Vegetables"
}, {
"idIngredient" : "304",
"strIngredient" : "Strawberries"
}, {
"idIngredient" : "305",
"strIngredient" : "Sugar"
}, {
"idIngredient" : "306",
"strIngredient" : "Sultanas"
}, {
"idIngredient" : "307",
"strIngredient" : "Sunflower Oil"
}, {
"idIngredient" : "308",
"strIngredient" : "Tamarind Ball"
}, {
"idIngredient" : "309",
"strIngredient" : "Tamarind Paste"
}, {
"idIngredient" : "310",
"strIngredient" : "Thai Fish Sauce"
}, {
"idIngredient" : "311",
"strIngredient" : "Thai Green Curry Paste"
}, {
"idIngredient" : "312",
"strIngredient" : "Thai Red Curry Paste"
}, {
"idIngredient" : "313",
"strIngredient" : "Thyme"
}, {
"idIngredient" : "315",
"strIngredient" : "Tomato Ketchup"
}, {
"idIngredient" : "316",
"strIngredient" : "Tomato Puree"
}, {
"idIngredient" : "317",
"strIngredient" : "Tomatoes"
}, {
"idIngredient" : "318",
"strIngredient" : "Toor Dal"
}, {
"idIngredient" : "319",
"strIngredient" : "Tuna"
}, {
"idIngredient" : "320",
"strIngredient" : "Turmeric"
}, {
"idIngredient" : "321",
"strIngredient" : "Turmeric Powder"
}, {
"idIngredient" : "322",
"strIngredient" : "Turnips"
}, {
"idIngredient" : "323",
"strIngredient" : "Vanilla"
}, {
"idIngredient" : "324",
"strIngredient" : "Vanilla Extract"
}, {
"idIngredient" : "325",
"strIngredient" : "Veal"
}, {
"idIngredient" : "326",
"strIngredient" : "Vegan Butter"
}, {
"idIngredient" : "327",
"strIngredient" : "Vegetable Oil"
}, {
"idIngredient" : "328",
"strIngredient" : "Vegetable Stock"
}, {
"idIngredient" : "329",
"strIngredient" : "Vegetable Stock Cube"
}, {