-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
2164 lines (2164 loc) · 103 KB
/
data.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
[
{
"name": "Chicken Minestrone Soup",
"page": "https://www.allrecipes.com/recipe/8499644/chicken-minestrone-soup/",
"image": "https://www.allrecipes.com/thmb/GWv_sPEam8WpIoml6K1NtYDSvZY=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/8499644_Chicken-Minestrone-Soup_lutzflcat_1x1-06fd9f7eefa647029953cc331b5e3120.jpg",
"ingredients": [
{ "quantity": "4", "unit": "tablespoons" },
{ "quantity": "½", "unit": "pound" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "2", "unit": "cloves" },
{ "quantity": "½", "unit": "cup" },
{ "quantity": "½", "unit": "cup" },
{ "quantity": "5", "unit": "cups" },
{ "quantity": "1", "unit": "(14.5 ounce) can" },
{ "quantity": "1", "unit": "(15.5 ounce) can" },
{ "quantity": "1", "unit": "(15.5 ounce) can" },
{ "quantity": "1", "unit": "(6 ounce) can" },
{ "quantity": "1", "unit": "small" },
{ "quantity": "½", "unit": "cup" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "½", "unit": "cup" },
{ "quantity": "", "unit": "" },
{ "quantity": "⅓", "unit": "cup" },
{ "quantity": "2", "unit": "teaspoons" }
],
"Instructions": [
{
"number": "1",
"description": "Heat 2 tablespoons olive oil in a large pot over medium heat. Add chicken to pot, and sauté just until lightly browned, about 3 minutes. Remove chicken from pot; set aside."
},
{
"number": "2",
"description": "Heat remaining 2 tablespoons olive oil in the pot; add onions and cook until translucent, about 3 minutes. Stir in garlic; cook until fragrant, about 30 seconds. Add carrots and celery; cook for 5 minutes, stirring occasionally."
},
{
"number": "3",
"description": "Reduce heat to medium-low; stir in chicken stock, diced tomatoes, cannellini beans, kidney beans, tomato paste, zucchini, green beans, Italian seasoning. Simmer, covered, for 15 minutes."
},
{
"number": "4",
"description": "Stir in chicken and ditalini pasta, and cook until pasta is tender yet firm to the bite, about 8 minutes. Season to taste with salt and black pepper. If soup is too thick, add a little water or stock. Garnish each bowl with Parmesan and parsley."
}
]
},
{
"name": "Roasted Broccoli Soup",
"page": "https://www.allrecipes.com/recipe/8532495/roasted-broccoli-soup/",
"image": "https://www.allrecipes.com/thmb/ib45T1wECZTgjNIPZKVllTNx50M=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/8532495-Roasted-Broccoli-Soup-France-C-1x1-1-8ff487cbb75c4e34bc672491e118232a.jpg",
"ingredients": [
{ "quantity": "5", "unit": "cups" },
{ "quantity": "1", "unit": "" },
{ "quantity": "3", "unit": "cloves" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "3", "unit": "cups" },
{ "quantity": "4", "unit": "ounces" },
{ "quantity": "¾", "unit": "teaspoon" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Preheat the oven to 400 degrees F (200 degrees C). Line a baking sheet with parchment paper."
},
{
"number": "2",
"description": "Place broccoli, onion, garlic, and olive oil in a large bowl and toss to coat evenly. Place on the prepared baking sheet in a single layer."
},
{
"number": "3",
"description": "Roast vegetables until soft, 30 to 35 minutes, stirring every 10 minutes. Remove from oven. Chop 1/4 cup of broccoli florets; set aside for garnish."
},
{
"number": "4",
"description": "Combine remaining vegetables with vegetable broth, cream cheese, and lemon pepper in a high-powered blender or food processor in batches. Puree soup until smooth."
},
{
"number": "5",
"description": "Pour soup into a saucepan over medium-low heat until warmed through, about 5 minutes. Season with additional lemon pepper to taste. Ladle into bowls. Garnish with reserved chopped broccoli and crushed red pepper."
}
]
},
{
"name": "Dump-and-Go Instant Pot Tortilla Soup",
"page": "https://www.allrecipes.com/recipe/8532956/dump-and-go-instant-pot-tortilla-soup/",
"image": "https://www.allrecipes.com/thmb/jaoqbceIgpAcCqvT8hcRbNPmIgg=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/8532956-Dump-and-Go-Instant-Pot-Tortilla-Soup-1x1-1-a05978662a374d6f82d4a6181a849d0c.jpg",
"ingredients": [
{ "quantity": "2", "unit": "(14.5 ounce) cans" },
{ "quantity": "1", "unit": "(15 ounce) can" },
{ "quantity": "1", "unit": "(15 ounce) can" },
{ "quantity": "2", "unit": "(5 ounce) cans" },
{ "quantity": "1", "unit": "(10 ounce) can" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "1", "unit": "(3.5 ounce) package" },
{ "quantity": "2", "unit": "tablespoons" }
],
"Instructions": [
{
"number": "1",
"description": "Pour chicken broth, corn, black beans, chunk chicken, tomatoes with green chilies (with their juices), chili powder, seasoning salt, and garlic powder together in a multi-functional pressure cooker (such as Instant Pot®); stir to combine."
},
{
"number": "2",
"description": "Close and lock the lid. Select high pressure according to manufacturer's instructions; set timer for 5 minutes. Allow 10 to 15 minutes for pressure to build."
},
{
"number": "3",
"description": "Release pressure carefully using the quick-release method according to manufacturer's instructions, about 5 minutes. Unlock and carefully open the lid."
},
{
"number": "4",
"description": "Ladle the soup into serving bowls and top with tortilla strips, and shredded cheese, to taste."
}
]
},
{
"name": "Copycat Panera Broccoli Cheddar Soup",
"page": "https://www.allrecipes.com/recipe/235874/copycat-panera-broccoli-cheddar-soup/",
"image": "https://www.allrecipes.com/thmb/2398SCTDl5CsPXjmSnwe8xohu4Q=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/8945082-110abc1f67d64c368d838d09a74c4213.jpg",
"ingredients": [
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "½", "unit": "" },
{ "quantity": "¼", "unit": "cup" },
{ "quantity": "¼", "unit": "cup" },
{ "quantity": "2", "unit": "cups" },
{ "quantity": "2", "unit": "cups" },
{ "quantity": "1 ½", "unit": "cups" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "1", "unit": "stalk" },
{ "quantity": "2 ½", "unit": "cups" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Melt 1 tablespoon butter in a skillet over medium-high heat. Add onion; cook and stir until tender and translucent, about 5 minutes. Set aside."
},
{
"number": "2",
"description": "Whisk 1/4 cup melted butter and flour together in a large saucepan over medium-low heat. Continue to whisk and cook, adding 1 to 2 tablespoons of milk if necessary to keep the flour from burning, 3 to 4 minutes."
},
{
"number": "3",
"description": "Gradually add milk while whisking constantly; stir in chicken stock and bring to a simmer. Cook until mixture is thickened, about 20 minutes. Add broccoli, carrots, celery, and sautéed onion; simmer until all the vegetables are tender, about 15 minutes."
},
{
"number": "4",
"description": "Stir in Cheddar cheese until melted; season with salt and pepper to taste before serving."
}
]
},
{
"name": "Slow Cooker Taco Soup",
"page": "https://www.allrecipes.com/recipe/16678/slow-cooker-taco-soup/",
"image": "https://www.allrecipes.com/thmb/CQ8-CXE4XVFKnFuJaS8GELrDTaI=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/16678-slow-cooker-taco-soup-ddmfs-beauty-3x4-4b64d4cf431c448bb86d440086e42e5a.jpg",
"ingredients": [
{ "quantity": "1", "unit": "pound" },
{ "quantity": "1", "unit": "" },
{ "quantity": "1", "unit": "(16 ounce) can" },
{ "quantity": "1", "unit": "(15 ounce) can" },
{ "quantity": "1", "unit": "(15 ounce) can" },
{ "quantity": "1", "unit": "(8 ounce) can" },
{ "quantity": "2", "unit": "cups" },
{ "quantity": "2", "unit": "(14.5 ounce) cans" },
{ "quantity": "1", "unit": "(4 ounce) can" },
{ "quantity": "1", "unit": "(1.25 ounce) package" }
],
"Instructions": [
{ "number": "1", "description": "Gather all ingredients." },
{
"number": "2",
"description": "In a medium skillet, cook the ground beef until browned over medium heat. Drain, and set aside."
},
{
"number": "3",
"description": "Place the ground beef, onion, chili beans, kidney beans, corn, tomato sauce, water, diced tomatoes, green chile peppers and taco seasoning mix in a slow cooker."
},
{
"number": "4",
"description": "Mix to blend, and cook on Low setting for 8 hours."
}
]
},
{
"name": "Super-Delicious Zuppa Toscana",
"page": "https://www.allrecipes.com/recipe/143069/super-delicious-zuppa-toscana/",
"image": "https://www.allrecipes.com/thmb/AR64V1Nm_N6tdYPr2IU23IzE2jo=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/Super-Delicious-Zuppa-Toscana-e0ecd2a124674b84b63570320d20ca9b.jpeg",
"ingredients": [
{ "quantity": "1", "unit": "pound" },
{ "quantity": "1 ¼", "unit": "teaspoons" },
{ "quantity": "4", "unit": "slices" },
{ "quantity": "1", "unit": "large" },
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "5", "unit": "(13.75 ounce) cans" },
{ "quantity": "6", "unit": "medium" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "¼", "unit": "bunch" }
],
"Instructions": [
{
"number": "1",
"description": "Cook Italian sausage and red pepper flakes in a Dutch oven over medium-high heat until crumbly, browned, and no longer pink, 10 to 15 minutes. Drain and set aside."
},
{
"number": "2",
"description": "Cook bacon in the same Dutch oven over medium heat until crisp, about 10 minutes. Drain, leaving a few tablespoons of drippings with the bacon in the bottom of the Dutch oven. Stir in onions and garlic; cook until onions are soft and translucent, about 5 minutes."
},
{
"number": "3",
"description": "Stir in chicken broth and bring to a boil over high heat. Add potatoes and simmer until fork tender, about 20 minutes. Reduce heat to medium; stir in cream, cooked sausage, and spinach. Cook and stir until spinach has wilted and sausage is warmed through; serve."
}
]
},
{
"name": "Homemade Chicken Soup",
"page": "https://www.allrecipes.com/recipe/8814/homemade-chicken-soup/",
"image": "https://www.allrecipes.com/thmb/TNcMAQnlyzDB3rrGURdvB72tal4=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/9139229-87abfabfbabb41c89069c83a1d023f45.jpg",
"ingredients": [
{ "quantity": "1", "unit": "(3 pound)" },
{ "quantity": "4", "unit": "" },
{ "quantity": "4", "unit": "stalks" },
{ "quantity": "1", "unit": "large" },
{ "quantity": "", "unit": "" },
{ "quantity": "", "unit": "" },
{ "quantity": "1", "unit": "teaspoon" }
],
"Instructions": [
{
"number": "1",
"description": "Place chicken, carrots, celery, and onion in a large soup pot; add enough cold water to cover. Bring to a boil over medium heat; reduce heat to low and simmer, uncovered, until meat falls off of the bone, about 90 minutes. Skim off foam every so often, as needed."
},
{
"number": "2",
"description": "Remove chicken from the pot and let sit until cool enough to handle; chop meat into pieces, and discard skin and bones."
},
{
"number": "3",
"description": "Strain out vegetables, reserving the stock; rinse the soup pot and return the stock to the pot. Chop vegetables into smaller pieces; return chopped chicken and vegetables to the pot."
},
{
"number": "4",
"description": "Warm soup until heated through; season with salt, pepper, and chicken bouillon to taste."
}
]
},
{
"name": "Rich and Simple French Onion Soup",
"page": "https://www.allrecipes.com/recipe/13309/rich-and-simple-french-onion-soup/",
"image": "https://www.allrecipes.com/thmb/xUJhPzm0GFTncI0_4Gj86aKG9io=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/13309-rich-and-simple-french-onion-soup-DDMFS-4x3-31ad7eaa56234d20ae35c3940fd03f36.jpg",
"ingredients": [
{ "quantity": "½", "unit": "cup" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "4", "unit": "cups" },
{ "quantity": "5", "unit": "cups" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "1", "unit": "pinch" },
{ "quantity": "4", "unit": "slices" },
{ "quantity": "4", "unit": "slices" },
{ "quantity": "2", "unit": "slices" },
{ "quantity": "¼", "unit": "cup" }
],
"Instructions": [
{ "number": "1", "description": "Gather all ingredients." },
{
"number": "2",
"description": "Melt butter with olive oil in an 8-quart stock pot over medium heat. Add onions to butter and continually stir until tender and translucent. Do not brown the onions."
},
{
"number": "3",
"description": "Add beef broth, sherry, and thyme. Season with salt and pepper. Let simmer for 30 minutes."
},
{
"number": "4",
"description": "Meanwhile, preheat the oven's broiler."
},
{
"number": "5",
"description": "Ladle soup into oven-safe serving bowls and place one slice of bread on top of each (bread may be broken into pieces if you prefer). Layer each slice of bread with a slice of provolone, 1/2 slice diced Swiss and 1 tablespoon Parmesan cheese."
},
{
"number": "6",
"description": "Place bowls on a cookie sheet and broil in the preheated oven until cheese bubbles and browns slightly, 2 to 3 minutes."
},
{ "number": "7", "description": "Serve hot and enjoy!" }
]
},
{
"name": "Miso Soup",
"page": "https://www.allrecipes.com/recipe/13107/miso-soup/",
"image": "https://www.allrecipes.com/thmb/i8tKRJzuFDZI530NoJoxLfKy1UI=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/13107-miso-soup-Melissa-Goff-1x1-1-2962011c74e340fd8afbfaf43ac4b6f2.jpg",
"ingredients": [
{ "quantity": "4", "unit": "cups" },
{ "quantity": "2", "unit": "teaspoons" },
{ "quantity": "3", "unit": "tablespoons" },
{ "quantity": "1", "unit": "(8 ounce) package" },
{ "quantity": "2", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Combine water and dashi granules in a medium saucepan over medium-high heat; bring to a boil. Reduce heat to medium and whisk in miso paste. Stir in tofu. Separate the layers of green onions, and add them to the soup. Simmer gently for 2 to 3 minutes before serving."
}
]
},
{
"name": "Creamy Roasted Parsnip Soup",
"page": "https://www.allrecipes.com/recipe/154833/creamy-roasted-parsnip-soup/",
"image": "https://www.allrecipes.com/thmb/k9MB_PQ6Ostj7si2p6FP6nm8oaM=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/1055457-c222f95fb71347fe89f389a286a2de72.jpg",
"ingredients": [
{ "quantity": "2", "unit": "pounds" },
{ "quantity": "3", "unit": "" },
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "", "unit": "" },
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "1", "unit": "large" },
{ "quantity": "3", "unit": "stalks" },
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "3", "unit": "cloves" },
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "¼", "unit": "teaspoon" },
{ "quantity": "4", "unit": "cups" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "½", "unit": "cup" }
],
"Instructions": [
{
"number": "1",
"description": "Preheat the oven to 425 degrees F (220 degrees C)."
},
{
"number": "2",
"description": "Place parsnips and carrots in a mixing bowl; sprinkle with 1 tablespoon olive oil. Toss to coat the vegetables with oil, then season to taste with salt and pepper. Spread vegetables evenly over a baking sheet."
},
{
"number": "3",
"description": "Roast in the preheated oven until parsnips are tender and golden brown, about 30 minutes."
},
{
"number": "4",
"description": "Heat remaining 1 tablespoon of olive oil in a large saucepan over medium heat. Stir in onion and celery; cook and stir until the vegetables have softened and onion is beginning to turn golden brown, about 5 minutes. Reduce the heat to low; stir in butter, garlic, brown sugar, and roasted parsnips and carrots. Continue to cook and stir until the vegetables are very soft and beginning to brown, about 5 to 10 minutes."
},
{
"number": "5",
"description": "Season with ginger, cardamom, allspice, nutmeg, and cayenne pepper; stir for 1 minute. Pour in chicken stock; bring to a boil over medium-high heat. Reduce heat to medium-low, partially cover, and simmer gently for 5 to 10 minutes."
},
{
"number": "6",
"description": "Pour soup into a blender, filling the pitcher no more than halfway full. Hold down the lid of the blender with a folded kitchen towel, and carefully start the blender, using a few quick pulses to get the soup moving before leaving it on to puree. Blend in batches until smooth and pour into a clean pot."
},
{
"number": "7",
"description": "Stir in milk and cream. Return to a simmer over medium-low heat. Season to taste with salt and pepper before serving."
}
]
},
{
"name": "Noodle Bowl Formula",
"page": "https://www.allrecipes.com/recipe/8493264/noodle-bowl-formula/",
"image": "https://www.allrecipes.com/thmb/bM5BhzRQdy6-LAR5xKersususwk=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/Noodle-Bowl-Formula-1x1-1-ebc6eac6db96472fb4dea3fa6b1e6669.jpg",
"ingredients": [
{ "quantity": "3", "unit": "cups" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "6", "unit": "ounces" },
{ "quantity": "1", "unit": "(3 ounce) package" },
{ "quantity": "⅛", "unit": "teaspoon" },
{ "quantity": "⅛", "unit": "teaspoon" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Bring broth to a boil in a small saucepan. Reduce heat."
},
{
"number": "2",
"description": "Reduce heat. Add vegetables, protein, and noodles. Simmer, stirring occasionally, until ramen noodles are tender and ingredients are heated through, 3 to 5 minutes."
},
{
"number": "3",
"description": "Season with salt and black pepper. Top with sauce and sprinkle with garnish."
}
]
},
{
"name": "Creamy Chicken Ramen Soup with Dill",
"page": "https://www.allrecipes.com/recipe/8495600/creamy-chicken-ramen-soup-with-dill/",
"image": "https://www.allrecipes.com/thmb/z1ZY6DdWMFCYtCpjASriq9LsbJs=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/Creamy-Dill-Chicken-Ramen-Soup-1x1-1-f4d09114489044efaeb051060cb31e1c.jpg",
"ingredients": [
{ "quantity": "1 ¾", "unit": "cups" },
{ "quantity": "1", "unit": "(3 ounce) package" },
{ "quantity": "1", "unit": "(5 ounce) can" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "2", "unit": "teaspoons" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Bring water to a boil in a saucepan. Break up noodles and toss into boiling water. Cook until tender, about 3 minutes. Stir in chicken, sour cream, seasoning packet, and dill. Simmer until heated through. Serve garnished with green onions."
}
]
},
{
"name": "Creamy Slow Cooker Potato Cheese Soup",
"page": "https://www.allrecipes.com/recipe/25666/creamy-slow-cooker-potato-cheese-soup/",
"image": "https://www.allrecipes.com/thmb/4ZwL_myGs9gC8sXQvBWknlPpceE=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/837968-961c168c278f46de8fb6b6e054fa2126.jpg",
"ingredients": [
{ "quantity": "¼", "unit": "cup" },
{ "quantity": "½", "unit": "" },
{ "quantity": "¼", "unit": "cup" },
{ "quantity": "2", "unit": "cups" },
{ "quantity": "2", "unit": "large" },
{ "quantity": "4", "unit": "stalks" },
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "", "unit": "" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "5", "unit": "pounds" },
{ "quantity": "1", "unit": "" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "6", "unit": "slices" }
],
"Instructions": [
{
"number": "1",
"description": "Melt butter in a large saucepan over medium heat. Cook onion in butter until translucent. Stir in flour until smooth, then gradually stir in 2 cups water, carrots, celery, garlic, salt, and pepper. Heat through, then stir in milk. Dissolve chicken base in 1 cup warm water, and pour into vegetable mixture."
},
{
"number": "2",
"description": "Place potatoes in slow cooker, and pour heated vegetable mixture into potatoes. Place bay leaf in pot."
},
{
"number": "3",
"description": "Cover, and cook 5 hours on High, or 8 hours on Low."
},
{
"number": "4",
"description": "Remove bay leaf. Puree about 4 cups of the soup in a blender or food processor, and then stir pureed soup into contents of slow cooker. Stir in cheese and bacon until cheese is melted."
}
]
},
{
"name": "Butternut Squash Soup",
"page": "https://www.allrecipes.com/recipe/77981/butternut-squash-soup-ii/",
"image": "https://www.allrecipes.com/thmb/OaIjIGV-gje0zQ1BTvSDfVPu6Ug=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/77981-butternut-squash-soup-ii-DDMFS-4x3-90a6bf5fa88346699bf41d502a029798.jpg",
"ingredients": [
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "1", "unit": "small" },
{ "quantity": "1", "unit": "stalk" },
{ "quantity": "1", "unit": "medium" },
{ "quantity": "2", "unit": "medium" },
{ "quantity": "1", "unit": "medium" },
{ "quantity": "1", "unit": "(32 fluid ounce) container" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{ "number": "1", "description": "Gather all ingredients." },
{
"number": "2",
"description": "Melt butter in a large pot over medium heat, and cook onion, celery, carrot, potatoes, and squash until lightly browned, about 5 minutes. Pour in enough of the chicken stock to cover vegetables."
},
{
"number": "3",
"description": "Bring to a boil over medium-high heat. Reduce heat to low, cover pot, and simmer until all vegetables are tender, about 40 minutes."
},
{
"number": "4",
"description": "Transfer the soup to a blender, and blend until smooth. Return to the pot, and mix in any remaining stock to reach desired consistency. Season with salt and pepper."
},
{ "number": "5", "description": "Serve hot and enjoy!" }
]
},
{
"name": "Homemade Dumplings",
"page": "https://www.allrecipes.com/recipe/6900/dumplings/",
"image": "https://www.allrecipes.com/thmb/ZZ_HGvR-7BBYBM-mrfan6F-hLMQ=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/6900-dumplings-DDMFS-4x3-c03fe714205d4f24bd74b99768142864.jpg",
"ingredients": [
{ "quantity": "1", "unit": "cup" },
{ "quantity": "2", "unit": "teaspoons" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "½", "unit": "cup" }
],
"Instructions": [
{
"number": "1",
"description": "Stir together flour, baking powder, sugar, and salt in a bowl."
},
{
"number": "2",
"description": "Cut in butter until mixture is crumbly. Stir in milk and mix until a batter forms that is thick enough to be scooped with a spoon. Allow batter to rest for 3 to 5 minutes."
},
{
"number": "3",
"description": "Drop batter by spoonfuls into boiling stew or soup. Cover and simmer without lifting the lid for 15 minutes. Serve."
},
{ "number": "4", "description": "Serve hot and enjoy!" }
]
},
{
"name": "Best Cream Of Broccoli Soup",
"page": "https://www.allrecipes.com/recipe/13313/best-cream-of-broccoli-soup/",
"image": "https://www.allrecipes.com/thmb/vuZXq2rJQjQmmk0PThOqCA-Kfk0=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/13313-best-cream-of-broccoli-soup-AllrecipesMagazine-4x3-495e6329745545a28c2a9b4e6ee3fab6.jpg",
"ingredients": [
{ "quantity": "5", "unit": "tablespoons" },
{ "quantity": "1", "unit": "" },
{ "quantity": "1", "unit": "stalk" },
{ "quantity": "3", "unit": "cups" },
{ "quantity": "8", "unit": "cups" },
{ "quantity": "3", "unit": "tablespoons" },
{ "quantity": "2", "unit": "cups" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{ "number": "1", "description": "Gather all ingredients." },
{
"number": "2",
"description": "Melt 2 tablespoons butter in a medium stock pot over medium heat. Saute onion and celery until tender."
},
{
"number": "3",
"description": "Add broccoli and broth, cover, and simmer for 10 minutes."
},
{
"number": "4",
"description": "Pour the soup into a blender, filling the pitcher no more than halfway full. Hold down the lid of the blender with a folded kitchen towel, and carefully start the blender, using a few quick pulses to get the soup moving before leaving it on to puree. Puree in batches until smooth and pour into a clean pot. Alternately, you can use an immersion blender and puree the soup right in the cooking pot."
},
{
"number": "5",
"description": "Melt 3 tablespoons butter in a small saucepan over medium to medium-low heat; stir in flour and add milk. Stir until thick and bubbly, and add to soup. Season with pepper and serve."
},
{ "number": "6", "description": "Serve hot and enjoy!" }
]
},
{
"name": "Quick and Easy Chicken Noodle Soup",
"page": "https://www.allrecipes.com/recipe/26460/quick-and-easy-chicken-noodle-soup/",
"image": "https://www.allrecipes.com/thmb/6ZReR5BmphSRwPQELsjT_M32eMw=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/26460-quick-and-easy-chicken-noodle-soup-allrecipes-1x1-1-b88125437574471db3e114c40bc6928e.jpg",
"ingredients": [
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "½", "unit": "cup" },
{ "quantity": "½", "unit": "cup" },
{ "quantity": "4", "unit": "(14.5 ounce) cans" },
{ "quantity": "1", "unit": "(14.5 ounce) can" },
{ "quantity": "½", "unit": "pound" },
{ "quantity": "1 ½", "unit": "cups" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Melt butter in a large pot over medium heat. Add onion and celery and cook until just tender, about 5 minutes."
},
{
"number": "2",
"description": "Add chicken broth, vegetable broth, chicken, egg noodles, carrots, basil, oregano, salt, and pepper. Stir to combine and bring to a boil."
},
{ "number": "3", "description": "Reduce heat and simmer for 20 minutes." }
]
},
{
"name": "Split Pea Soup",
"page": "https://www.allrecipes.com/recipe/13384/split-pea-soup/",
"image": "https://www.allrecipes.com/thmb/enCoGmye4geVOBrcfzFnSlRRuwI=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/Split-Pea-Soup-Maggie-Stryjewska-Kara-2afe02a1fb5942a4a4ac5d5582acfba6.jpg",
"ingredients": [
{ "quantity": "2 ¼", "unit": "cups" },
{ "quantity": "2", "unit": "quarts" },
{ "quantity": "1 ½", "unit": "pounds" },
{ "quantity": "2", "unit": "" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "¼", "unit": "teaspoon" },
{ "quantity": "1", "unit": "pinch" },
{ "quantity": "3", "unit": "stalks" },
{ "quantity": "3", "unit": "" },
{ "quantity": "1", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Place peas in a large stockpot and cover with several inches of cold water; let soak, 8 hours to overnight. Drain, rinse, and return peas to the pot."
},
{
"number": "2",
"description": "Add 2 quarts of cold water, ham bone, onion, salt, pepper, and marjoram to the stockpot. Cover, bring to a boil, and simmer for 1 1/2 hours, stirring occasionally."
},
{
"number": "3",
"description": "Remove ham bone; cut off meat, dice, and return meat to soup. Add celery, carrots, and potatoes. Cook slowly, uncovered, until vegetables are tender, about 30 to 40 minutes."
}
]
},
{
"name": "Basic Ham and Bean Soup",
"page": "https://www.allrecipes.com/recipe/17628/basic-ham-and-bean-soup/",
"image": "https://www.allrecipes.com/thmb/BDaPCBwly_pQlnSsbEGJ47m0mnM=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/1050605-f4fe2508807a469eb124d77e2eef9995.jpg",
"ingredients": [
{ "quantity": "8", "unit": "cups" },
{ "quantity": "1", "unit": "pound" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "½", "unit": "stalk" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "2", "unit": "" },
{ "quantity": "1", "unit": "" },
{ "quantity": "2", "unit": "cups" },
{ "quantity": "½", "unit": "teaspoon" }
],
"Instructions": [
{
"number": "1",
"description": "Place water and beans in a large pot; bring to a boil over high heat. Stir in salt and remove the pot from heat; cover, and let stand for 1 hour."
},
{
"number": "2",
"description": "Add carrots, onion, celery, garlic, mustard, and bay leaves to the pot with beans; stir well. Add ham hock and bring to a boil; reduce heat to low and simmer for 1 hour."
},
{
"number": "3",
"description": "Remove ham hock and discard. Stir in chopped ham and simmer for 30 minutes. Season with ground white pepper to taste."
}
]
},
{
"name": "Turkey Carcass Soup",
"page": "https://www.allrecipes.com/recipe/218804/turkey-carcass-soup/",
"image": "https://www.allrecipes.com/thmb/RgxgzLEmRM1ifZ_Rb6iCJfPgcXE=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/218804-TurkeyCarcassSoup-mfs-1x1-1727-892954e036cb44efa5aeb313e783d168.jpg",
"ingredients": [
{ "quantity": "1", "unit": "" },
{ "quantity": "4", "unit": "quarts" },
{ "quantity": "1", "unit": "(28 ounce) can" },
{ "quantity": "6", "unit": "small" },
{ "quantity": "4", "unit": "large" },
{ "quantity": "1", "unit": "large" },
{ "quantity": "2", "unit": "stalks" },
{ "quantity": "1 ½", "unit": "cups" },
{ "quantity": "½", "unit": "cup" },
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "1 ½", "unit": "teaspoons" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "1", "unit": "large" },
{ "quantity": "¼", "unit": "teaspoon" },
{ "quantity": "¼", "unit": "teaspoon" },
{ "quantity": "¼", "unit": "teaspoon" },
{ "quantity": "1", "unit": "pinch" }
],
"Instructions": [
{
"number": "1",
"description": "Place turkey carcass into a large soup pot; pour in water and bring to a boil over medium heat. Reduce heat to a simmer, and cook until the remaining meat falls off the bones, about 1 hour."
},
{
"number": "2",
"description": "Remove turkey carcass from the pot. Remove and chop any remaining turkey meat. Discard carcass."
},
{
"number": "3",
"description": "Strain broth through a fine mesh strainer into a clean soup pot. Add chopped turkey to the strained broth and bring to a boil."
},
{
"number": "4",
"description": "Reduce heat and stir in tomatoes, potatoes, carrots, onion, celery, cabbage, barley, Worcestershire sauce, salt, parsley, basil, bay leaf, pepper, paprika, poultry seasoning, and thyme. Simmer until vegetables are tender, about 1 more hour."
},
{ "number": "5", "description": "Remove bay leaf before serving." }
]
},
{
"name": "Fresh Tomato Soup",
"page": "https://www.allrecipes.com/recipe/39544/garden-fresh-tomato-soup/",
"image": "https://www.allrecipes.com/thmb/Lt0ooQlefa4gwL3wNPZvJqDf4RY=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/39544-Garden-Fresh-Tomato-Soup-DDMFS-4x3-b8e94cf7ab8e42f4b79042fc0df55546.jpg",
"ingredients": [
{ "quantity": "4", "unit": "cups" },
{ "quantity": "1", "unit": "slice" },
{ "quantity": "4", "unit": "cloves" },
{ "quantity": "2", "unit": "cups" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "2", "unit": "teaspoons" }
],
"Instructions": [
{ "number": "1", "description": "Gather all ingredients." },
{
"number": "2",
"description": "In a stockpot, over medium heat, combine the tomatoes, large slice of onion, garlic cloves, and chicken broth. Bring to a boil, and gently boil for about 20 minutes to blend all of the flavors."
},
{
"number": "3",
"description": "Remove from heat and run the mixture through a food mill into a large bowl, or pan. Discard any stuff left over in the food mill."
},
{
"number": "4",
"description": "In the now empty stockpot, melt the butter over medium heat. Stir in the flour to make a roux, cooking until the roux is a medium brown."
},
{
"number": "5",
"description": "Gradually whisk in a bit of the tomato mixture, so that no lumps form, then stir in the rest."
},
{
"number": "6",
"description": "Season with sugar and salt, and adjust to taste."
},
{ "number": "7", "description": "Serve hot and enjoy!" }
]
},
{
"name": "Classic Minestrone Soup",
"page": "https://www.allrecipes.com/recipe/255650/classic-minestrone-soup/",
"image": "https://www.allrecipes.com/thmb/n0Mdk3KRotoNSaj7O0GUfcruoNA=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/4022830-5483561f4bd648f6a9433ce8c34cdd05.jpg",
"ingredients": [
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "¾", "unit": "cup" },
{ "quantity": "¾", "unit": "cup" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "1 ½", "unit": "teaspoons" },
{ "quantity": "1", "unit": "(15 ounce) can" },
{ "quantity": "1", "unit": "(15 ounce) can" },
{ "quantity": "2 ½", "unit": "cups" },
{ "quantity": "2", "unit": "cups" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "½", "unit": "cup" },
{ "quantity": "¼", "unit": "teaspoon" },
{ "quantity": "¼", "unit": "cup" },
{ "quantity": "1", "unit": "tablespoon" }
],
"Instructions": [
{
"number": "1",
"description": "Heat oil in a large saucepan over medium-high heat. Sauté onion, carrot, celery, garlic, and rosemary until vegetables begin to soften, about 5 minutes."
},
{
"number": "2",
"description": "Stir in tomato sauce, beans, water, broth, zucchini, pasta, and pepper; bring to a simmer. Cook, uncovered and stirring occasionally, until pasta is tender, 10 minutes. Stir in parsley. Serve topped with Parmesan and additional parsley if desired."
}
]
},
{
"name": "Ham and Split Pea Soup Recipe — A Great Soup",
"page": "https://www.allrecipes.com/recipe/219170/ham-and-split-pea-soup-recipe-a-great-soup/",
"image": "https://www.allrecipes.com/thmb/g2hfh4vobEF2VcQd8hAXuj-RZiw=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/1508123-ham-and-split-pea-soup-recipe-a-great-soup-kimscookingnow-1x1-1-347c4e1892a04d28af2bdcc7f59de965.jpg",
"ingredients": [
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "2", "unit": "ribs" },
{ "quantity": "½", "unit": "" },
{ "quantity": "3", "unit": "cloves" },
{ "quantity": "1", "unit": "pound" },
{ "quantity": "1", "unit": "pound" },
{ "quantity": "1", "unit": "" },
{ "quantity": "1", "unit": "quart" },
{ "quantity": "2 ½", "unit": "cups" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Melt butter in a large soup pot over medium-low heat. Stir in celery, onion, and sliced garlic; cook and stir until onions are translucent but not brown, 5 to 8 minutes."
},
{
"number": "2",
"description": "Stir in split peas, ham, and bay leaf. Pour in chicken stock and water; stir to combine and simmer until peas are tender and soup has thickened, about 1 hour and 15 minutes. Stir occasionally. Season with salt and black pepper to serve."
}
]
},
{
"name": "My Best Clam Chowder",
"page": "https://www.allrecipes.com/recipe/13041/my-best-clam-chowder/",
"image": "https://www.allrecipes.com/thmb/dTanu5BF4ZxtMuiawRpStevLoks=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/My-Best-Clam-Chowder-5f71619aaa3e436fa4d15269b8610d38.jpg",
"ingredients": [
{ "quantity": "2", "unit": "cups" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "3", "unit": "(6.5 ounce) cans" },
{ "quantity": "", "unit": "" },
{ "quantity": "¾", "unit": "cup" },
{ "quantity": "¾", "unit": "cup" },
{ "quantity": "1", "unit": "quart" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "1 ½", "unit": "teaspoons" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Place potatoes, carrots, celery, and onion into a large skillet; pour in clam juice and add enough water to cover. Cook and stir over medium-low heat until vegetables are tender."
},
{
"number": "2",
"description": "Meanwhile, melt butter in a large, heavy saucepan over medium heat. Whisk in flour until smooth. Whisk in cream and stir constantly until thick and smooth. Stir in vegetable mixture with any juices until just heated through."
},
{
"number": "3",
"description": "Stir in clams just before serving. If they cook too much they get tough. When clams are heated through, stir in vinegar and season with salt and pepper."
}
]
},
{
"name": "Lentil Soup",
"page": "https://www.allrecipes.com/recipe/13978/lentil-soup/",
"image": "https://www.allrecipes.com/thmb/Tgy6PfLgFSpjmF2LoxAvn83rbxM=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/13978-lentil-soup-DDMFS-4x3-edfa47fc6b234e6b8add24d44c036d43.jpg",
"ingredients": [
{ "quantity": "¼", "unit": "cup" },
{ "quantity": "1", "unit": "" },
{ "quantity": "2", "unit": "" },
{ "quantity": "2", "unit": "stalks" },
{ "quantity": "2", "unit": "cloves" },
{ "quantity": "1", "unit": "" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "2", "unit": "cups" },
{ "quantity": "8", "unit": "cups" },
{ "quantity": "1", "unit": "(14.5 ounce) can" },
{ "quantity": "½", "unit": "cup" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "", "unit": "" },
{ "quantity": "", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Heat oil in a large soup pot over medium heat. Add onions, carrots, and celery; cook and stir until onion is tender, 3 to 5 minutes."
},
{
"number": "2",
"description": "Stir in garlic, bay leaf, oregano, and basil; cook for 2 minutes."
},
{
"number": "3",
"description": "Stir in lentils, and add water and tomatoes. Bring to a boil. Reduce heat and let simmer until lentils are tender, at least 1 hour."
},
{
"number": "4",
"description": "When ready to serve, stir in spinach and cook until it wilts."
},
{
"number": "5",
"description": "Stir in vinegar and season with salt and pepper; taste and adjust as needed."
},
{ "number": "6", "description": "Serve hot and enjoy!" }
]
},
{
"name": "Caldo de Res (Mexican Beef Soup)",
"page": "https://www.allrecipes.com/recipe/85055/caldo-de-res-mexican-beef-soup/",
"image": "https://www.allrecipes.com/thmb/7Ngr5_yciDf2fgKpFSkGGndSGN8=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/5960360-ef14a9da000d46c59a04eb7889c86167.jpg",
"ingredients": [
{ "quantity": "2", "unit": "pounds" },
{ "quantity": "1", "unit": "tablespoon" },
{ "quantity": "2", "unit": "teaspoons" },
{ "quantity": "2", "unit": "teaspoons" },
{ "quantity": "1", "unit": "" },
{ "quantity": "3", "unit": "cups" },
{ "quantity": "1", "unit": "(14.5 ounce) can" },
{ "quantity": "4", "unit": "cups" },
{ "quantity": "2", "unit": "medium" },
{ "quantity": "¼", "unit": "cup" },
{ "quantity": "2", "unit": "" },
{ "quantity": "2", "unit": "ears" },
{ "quantity": "1", "unit": "" },
{ "quantity": "1", "unit": "medium head" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "¼", "unit": "cup" },
{ "quantity": "¼", "unit": "cup" },
{ "quantity": "2", "unit": "" },
{ "quantity": "4", "unit": "" }
],
"Instructions": [
{
"number": "1",
"description": "Cut the meat from the beef bones into about 1/2 inch pieces, leaving some on the bones."
},
{
"number": "2",
"description": "Heat a heavy soup pot over medium-high heat until very hot. Add oil, tilting the pan to coat the bottom. Add meat and bones and season with salt and pepper. Cook and stir until thoroughly browned."
},
{
"number": "3",
"description": "Add onion and cook until lightly browned; stir in broth and tomatoes. The liquid should cover the bones by 1/2 inch. If not, add some water to compensate. Reduce heat to low; simmer with the lid on loosely until meat is tender, about 1 hour."
},
{
"number": "4",
"description": "Pour in 4 cups water, and return to a simmer. Add carrots and 1/4 cup cilantro, and cook for 10 minutes. Stir in chayote, corn, and potato; simmer until vegetables are tender. Push cabbage wedges into soup; cook until tender, about 10 minutes."
},
{
"number": "5",
"description": "Ladle soup into large bowls, including some meat, vegetables, and bones. Garnish with cilantro, jalapeños, and minced onion. Squeeze lime juice over soup and serve with radishes."
}
]
},
{
"name": "Cabbage Fat-Burning Soup",
"page": "https://www.allrecipes.com/recipe/13116/cabbage-fat-burning-soup/",
"image": "https://www.allrecipes.com/thmb/aNvqpUmNqqlVR6d53sq5oysD1EI=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/13116-Cabbage-Fat-Burning-Soup-466e736325024f16bac9096f1ddd625d.jpg",
"ingredients": [
{ "quantity": "10", "unit": "stalks" },
{ "quantity": "5", "unit": "" },
{ "quantity": "3", "unit": "" },
{ "quantity": "2", "unit": "" },
{ "quantity": "1", "unit": "large head" },
{ "quantity": "1", "unit": "(15 ounce) can" },
{ "quantity": "2", "unit": "quarts" },
{ "quantity": "2", "unit": "(16 ounce) cans" },
{ "quantity": "1", "unit": "(14 ounce) can" },
{ "quantity": "", "unit": "" },
{ "quantity": "1", "unit": "(1 ounce) envelope" }
],
"Instructions": [
{
"number": "1",
"description": "Place celery, carrots, onions, cabbage, bell peppers, and green beans in a large soup pot."
},
{
"number": "2",
"description": "Add tomato juice, tomatoes, beef broth, and enough water to cover vegetables; add onion soup mix and stir to combine. Bring to a boil over medium heat; reduce heat to low and simmer until vegetables are tender, about 25 minutes."
}
]
},
{
"name": "Delicious Ham and Potato Soup",
"page": "https://www.allrecipes.com/recipe/56927/delicious-ham-and-potato-soup/",
"image": "https://www.allrecipes.com/thmb/vyvqwS3MlJ0NAnUrDNXTaQVQE_0=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/962656-aba3fc46b0b34456add8cfb9ca68572a.jpg",
"ingredients": [
{ "quantity": "3 ½", "unit": "cups" },
{ "quantity": "3 ¼", "unit": "cups" },
{ "quantity": "¾", "unit": "cup" },
{ "quantity": "⅓", "unit": "cup" },
{ "quantity": "⅓", "unit": "cup" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "1", "unit": "teaspoon" },
{ "quantity": "½", "unit": "teaspoon" },
{ "quantity": "5", "unit": "tablespoons" },
{ "quantity": "5", "unit": "tablespoons" },
{ "quantity": "2", "unit": "cups" }
],
"Instructions": [
{
"number": "1",
"description": "Combine potatoes, water, ham, celery, and onion in a stockpot. Bring to a boil; simmer over medium heat until potatoes are tender, 10 to 15 minutes. Stir in chicken bouillon, pepper, and salt."
},
{
"number": "2",
"description": "Melt butter in a separate saucepan over medium-low heat. Add flour; cook and stir until thick, about 1 minute. Whisk in milk; cook and stir until thick, 4 to 5 minutes."
},
{
"number": "3",
"description": "Pour milk mixture into the stockpot; cook and stir until warmed through."
}
]
},
{
"name": "Slow Cooker Chicken and Dumplings",
"page": "https://www.allrecipes.com/recipe/8941/slow-cooker-chicken-and-dumplings/",
"image": "https://www.allrecipes.com/thmb/fgBF_51TantVoHDlro1HA9xGqOA=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/8941-slow-cooker-chicken-and-dumplings-DDMFS-4x3-0be0b1895efe4983acfc38ad3acc0fa2.jpg",
"ingredients": [
{ "quantity": "4", "unit": "" },
{ "quantity": "2", "unit": "tablespoons" },
{ "quantity": "2", "unit": "(10.5 ounce) cans" },
{ "quantity": "1", "unit": "medium" },
{ "quantity": "1", "unit": "(10 ounce) package" },
{ "quantity": "2", "unit": "cups" }
],
"Instructions": [
{
"number": "1",
"description": "Place chicken, condensed soup, onion, and butter in a slow cooker. Add enough water to cover; stir well. Cover and cook on High for 5 to 6 hours."
},
{
"number": "2",
"description": "About 30 minutes before serving, tear biscuit dough into pieces. Place dough in the slow cooker. Cook until dough is no longer raw in the center."
},
{ "number": "3", "description": "Serve hot and enjoy!" }
]
},
{
"name": "Ukrainian Red Borscht Soup",
"page": "https://www.allrecipes.com/recipe/84450/ukrainian-red-borscht-soup/",
"image": "https://www.allrecipes.com/thmb/CJcrDAbM_uQ4npebGAzmE8ZdMK8=/282x188/filters:no_upscale():max_bytes(150000):strip_icc()/Ukrainian-Red-Borscht-Soup-8507ee14f68a439387a170098e8f65b4.jpg",
"ingredients": [
{ "quantity": "1", "unit": "(16 ounce) package" },
{ "quantity": "3", "unit": "medium" },
{ "quantity": "3", "unit": "" },
{ "quantity": "3", "unit": "medium" },
{ "quantity": "½", "unit": "medium head" },
{ "quantity": "1", "unit": "cup" },
{ "quantity": "1", "unit": "tablespoon" },