-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipesInfo.json
More file actions
7230 lines (7230 loc) · 299 KB
/
recipesInfo.json
File metadata and controls
7230 lines (7230 loc) · 299 KB
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
[
{
"vegetarian": false,
"vegan": false,
"glutenFree": false,
"dairyFree": true,
"veryHealthy": false,
"cheap": false,
"veryPopular": false,
"sustainable": false,
"weightWatcherSmartPoints": 26,
"gaps": "no",
"lowFodmap": false,
"aggregateLikes": 15,
"spoonacularScore": 68,
"healthScore": 19,
"creditsText": "Foodista.com – The Cooking Encyclopedia Everyone Can Edit",
"license": "CC BY 3.0",
"sourceName": "Foodista",
"pricePerServing": 196.44,
"extendedIngredients": [
{
"id": 5091,
"aisle": "Meat",
"image": "chicken-thighs.png",
"consistency": "solid",
"name": "chicken thighs",
"original": "4 chicken thighs",
"originalString": "4 chicken thighs",
"originalName": "chicken thighs",
"amount": 4,
"unit": "",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 4,
"unitShort": "",
"unitLong": ""
},
"metric": {
"amount": 4,
"unitShort": "",
"unitLong": ""
}
}
},
{
"id": 1034053,
"aisle": "Oil, Vinegar, Salad Dressing",
"image": "olive-oil.jpg",
"consistency": "liquid",
"name": "extra virgin olive oil",
"original": "2 Tbsp of extra virgin olive oil",
"originalString": "2 Tbsp of extra virgin olive oil",
"originalName": "extra virgin olive oil",
"amount": 2,
"unit": "Tbsp",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 2,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
},
"metric": {
"amount": 2,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
}
}
},
{
"id": 2036,
"aisle": "Spices and Seasonings",
"image": "rosemary.jpg",
"consistency": "solid",
"name": "rosemary",
"original": "rosemary",
"originalString": "rosemary",
"originalName": "rosemary",
"amount": 1,
"unit": "serving",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
},
"metric": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
}
}
},
{
"id": 99226,
"aisle": "Produce",
"image": "fresh-sage.png",
"consistency": "solid",
"name": "sage",
"original": "sage",
"originalString": "sage",
"originalName": "sage",
"amount": 1,
"unit": "serving",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
},
"metric": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
}
}
},
{
"id": 2041,
"aisle": "Produce",
"image": "tarragon.jpg",
"consistency": "solid",
"name": "tarragon",
"original": "tarragon",
"originalString": "tarragon",
"originalName": "tarragon",
"amount": 1,
"unit": "serving",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
},
"metric": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
}
}
},
{
"id": 2047,
"aisle": "Spices and Seasonings",
"image": "salt.jpg",
"consistency": "solid",
"name": "salt",
"original": "salt",
"originalString": "salt",
"originalName": "salt",
"amount": 1,
"unit": "serving",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
},
"metric": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
}
}
},
{
"id": 10211821,
"aisle": "Produce",
"image": "bell-pepper-orange.png",
"consistency": "solid",
"name": "bell pepper",
"original": "pepper",
"originalString": "pepper",
"originalName": "pepper",
"amount": 1,
"unit": "serving",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
},
"metric": {
"amount": 1,
"unitShort": "serving",
"unitLong": "serving"
}
}
},
{
"id": 18079,
"aisle": "Pasta and Rice",
"image": "breadcrumbs.jpg",
"consistency": "solid",
"name": "bread crumbs",
"original": "6 Tbsp of bread crumbs",
"originalString": "6 Tbsp of bread crumbs",
"originalName": "bread crumbs",
"amount": 6,
"unit": "Tbsp",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 6,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
},
"metric": {
"amount": 6,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
}
}
},
{
"id": 19296,
"aisle": "Nut butters, Jams, and Honey",
"image": "honey.png",
"consistency": "liquid",
"name": "honey",
"original": "2 Tbsp of honey",
"originalString": "2 Tbsp of honey",
"originalName": "honey",
"amount": 2,
"unit": "Tbsp",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 2,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
},
"metric": {
"amount": 2,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
}
}
},
{
"id": 2053,
"aisle": "Oil, Vinegar, Salad Dressing",
"image": "vinegar-(white).jpg",
"consistency": "liquid",
"name": "vinegar",
"original": "2 Tbsp of vinegar",
"originalString": "2 Tbsp of vinegar",
"originalName": "vinegar",
"amount": 2,
"unit": "Tbsp",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 2,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
},
"metric": {
"amount": 2,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
}
}
}
],
"id": 647577,
"title": "How To Make Fried Chicken Without Frying",
"readyInMinutes": 45,
"servings": 2,
"sourceUrl": "https://www.foodista.com/recipe/QPM63867/how-to-make-fried-chicken-without-frying",
"image": "https://spoonacular.com/recipeImages/647577-556x370.jpg",
"imageType": "jpg",
"summary": "If you want to add more <b>Southern</b> recipes to your repertoire, How To Make Fried Chicken Without Frying might be a recipe you should try. One portion of this dish contains around <b>41g of protein</b>, <b>53g of fat</b>, and a total of <b>817 calories</b>. For <b>$1.96 per serving</b>, you get a main course that serves 2. 15 people were glad they tried this recipe. This recipe from Foodista requires bell pepper, extra virgin olive oil, salt, and tarragon. It is a good option if you're following a <b>dairy free</b> diet. From preparation to the plate, this recipe takes approximately <b>approximately 45 minutes</b>. With a spoonacular <b>score of 68%</b>, this dish is solid. Try <a href=\"https://spoonacular.com/recipes/frying-peppers-cherry-tomatoes-chicken-sausage-saute-612410\">Frying Peppers, Cherry Tomatoes & Chicken Sausage Saute</a>, <a href=\"https://spoonacular.com/recipes/how-to-make-southern-fried-chicken-244541\">How to Make Southern Fried Chicken</a>, and <a href=\"https://spoonacular.com/recipes/how-to-make-buttermilk-fried-chicken-613074\">How to Make Buttermilk Fried Chicken</a> for similar recipes.",
"cuisines": [
"Southern"
],
"dishTypes": [
"lunch",
"main course",
"main dish",
"dinner"
],
"diets": [
"dairy free"
],
"occasions": [],
"winePairing": {
"pairedWines": [
"riesling",
"sparkling wine",
"zinfandel"
],
"pairingText": "Riesling, Sparkling Wine, and Zinfandel are my top picks for Fried Chicken. In general, there are a few rules that will help you pair wine with southern food. Food-friendly riesling or sparkling white wine will work with many fried foods, while zinfandel is great with barbecued fare. The Georg Albrecht Schneider Niersteiner Paterberg Riesling Kabinett with a 4.2 out of 5 star rating seems like a good match. It costs about 14 dollars per bottle.",
"productMatches": [
{
"id": 482408,
"title": "Georg Albrecht Schneider Niersteiner Paterberg Riesling Kabinett",
"description": "Much of the estate’s 12+ acre property in the Patterberg vineyard site is planted to Riesling. Red sandstone soils are predominant in the best sites that yield rich and spicy wines. Riesling thrives in the rocky and lime-driven chalk soils.This has an enticing and delicate floral note to the luscious berry and dark current flavors. The finish exudes ripe apricot flavors and hints of cream.A perfect match for strong Indian and Asian spiced dishes. Also fantastic with a spiced duck leg, dishes with acidic sauces, roasted vegetables, and soft cheeses.",
"price": "$13.99",
"imageUrl": "https://spoonacular.com/productImages/482408-312x231.jpg",
"averageRating": 0.8400000000000001,
"ratingCount": 6,
"score": 0.7873684210526317,
"link": "https://click.linksynergy.com/deeplink?id=*QCiIS6t4gA&mid=2025&murl=https%3A%2F%2Fwww.wine.com%2Fproduct%2Fgeorg-albrecht-schneider-niersteiner-paterberg-riesling-kabinett-2016%2F422579"
}
]
},
"instructions": "Preheat the oven to 200C/400F.\nWash and dry the chicken thighs.\nMince the herbs.\nIn a bowl put the extra virgin olive oil, the minced herbs, salt and pepper.\nPut the chicken inside the bowl and gently massage the chicken with the oil and herbs mixture.\nPass each thigh on the breadcrumbs and put on an oven tray covered with parchment paper.\nCook until well done, from 50 minutes to one hour, depending on your oven and the weight of the chicken pieces.\nAt half cooking time, turn each piece to the other side.\nPrepare a sauce mixing the honey and vinegar.\nFive minutes before taking the chicken out of the oven, brush each piece with the sauce.",
"analyzedInstructions": [
{
"name": "",
"steps": [
{
"number": 1,
"step": "Preheat the oven to 200C/400F.",
"ingredients": [],
"equipment": [
{
"id": 404784,
"name": "oven",
"localizedName": "oven",
"image": "oven.jpg",
"temperature": {
"number": 200,
"unit": "Celsius"
}
}
]
},
{
"number": 2,
"step": "Wash and dry the chicken thighs.",
"ingredients": [
{
"id": 5091,
"name": "chicken thighs",
"localizedName": "chicken thighs",
"image": "chicken-thigh.jpg"
}
],
"equipment": []
},
{
"number": 3,
"step": "Mince the herbs.",
"ingredients": [],
"equipment": []
},
{
"number": 4,
"step": "In a bowl put the extra virgin olive oil, the minced herbs, salt and pepper.",
"ingredients": [
{
"id": 1034053,
"name": "extra virgin olive oil",
"localizedName": "extra virgin olive oil",
"image": "olive-oil.jpg"
},
{
"id": 1102047,
"name": "salt and pepper",
"localizedName": "salt and pepper",
"image": "salt-and-pepper.jpg"
}
],
"equipment": [
{
"id": 404783,
"name": "bowl",
"localizedName": "bowl",
"image": "bowl.jpg"
}
]
},
{
"number": 5,
"step": "Put the chicken inside the bowl and gently massage the chicken with the oil and herbs mixture.",
"ingredients": [],
"equipment": [
{
"id": 404783,
"name": "bowl",
"localizedName": "bowl",
"image": "bowl.jpg"
}
]
},
{
"number": 6,
"step": "Pass each thigh on the breadcrumbs and put on an oven tray covered with parchment paper.",
"ingredients": [
{
"id": 18079,
"name": "breadcrumbs",
"localizedName": "breadcrumbs",
"image": "breadcrumbs.jpg"
}
],
"equipment": [
{
"id": 404770,
"name": "baking paper",
"localizedName": "baking paper",
"image": "baking-paper.jpg"
},
{
"id": 404784,
"name": "oven",
"localizedName": "oven",
"image": "oven.jpg"
}
]
},
{
"number": 7,
"step": "Cook until well done, from 50 minutes to one hour, depending on your oven and the weight of the chicken pieces.",
"ingredients": [],
"equipment": [
{
"id": 404784,
"name": "oven",
"localizedName": "oven",
"image": "oven.jpg"
}
],
"length": {
"number": 50,
"unit": "minutes"
}
},
{
"number": 8,
"step": "At half cooking time, turn each piece to the other side.",
"ingredients": [],
"equipment": []
},
{
"number": 9,
"step": "Prepare a sauce mixing the honey and vinegar.",
"ingredients": [
{
"id": 2053,
"name": "vinegar",
"localizedName": "vinegar",
"image": "vinegar-(white).jpg"
},
{
"id": 19296,
"name": "honey",
"localizedName": "honey",
"image": "honey.png"
}
],
"equipment": []
},
{
"number": 10,
"step": "Five minutes before taking the chicken out of the oven, brush each piece with the sauce.",
"ingredients": [],
"equipment": [
{
"id": 404784,
"name": "oven",
"localizedName": "oven",
"image": "oven.jpg"
}
],
"length": {
"number": 5,
"unit": "minutes"
}
}
]
}
],
"originalId": null,
"spoonacularSourceUrl": "https://spoonacular.com/how-to-make-fried-chicken-without-frying-647577"
},
{
"vegetarian": false,
"vegan": false,
"glutenFree": true,
"dairyFree": false,
"veryHealthy": true,
"cheap": false,
"veryPopular": false,
"sustainable": false,
"weightWatcherSmartPoints": 19,
"gaps": "no",
"lowFodmap": false,
"aggregateLikes": 9,
"spoonacularScore": 94,
"healthScore": 79,
"creditsText": "Foodista.com – The Cooking Encyclopedia Everyone Can Edit",
"license": "CC BY 3.0",
"sourceName": "Foodista",
"pricePerServing": 305.9,
"extendedIngredients": [
{
"id": 11090,
"aisle": "Produce",
"image": "broccoli.jpg",
"consistency": "solid",
"name": "broccoli",
"original": "1 medium head of broccoli, cut into florets",
"originalString": "1 medium head of broccoli, cut into florets",
"originalName": "broccoli, cut into florets",
"amount": 1,
"unit": "medium head",
"meta": [
"cut into florets"
],
"metaInformation": [
"cut into florets"
],
"measures": {
"us": {
"amount": 1,
"unitShort": "medium head",
"unitLong": "medium head"
},
"metric": {
"amount": 1,
"unitShort": "medium head",
"unitLong": "medium head"
}
}
},
{
"id": 1002044,
"aisle": "Produce",
"image": "lemon-basil.jpg",
"consistency": "solid",
"name": "herbs",
"original": "1 x pack Maggi So Juicy Mixed Herbs",
"originalString": "1 x pack Maggi So Juicy Mixed Herbs",
"originalName": "x pack Maggi So Juicy Mixed Herbs",
"amount": 1,
"unit": "",
"meta": [
"mixed",
"juicy"
],
"metaInformation": [
"mixed",
"juicy"
],
"measures": {
"us": {
"amount": 1,
"unitShort": "",
"unitLong": ""
},
"metric": {
"amount": 1,
"unitShort": "",
"unitLong": ""
}
}
},
{
"id": 4053,
"aisle": "Oil, Vinegar, Salad Dressing",
"image": "olive-oil.jpg",
"consistency": "liquid",
"name": "olive oil",
"original": "1/4 cup olive oil (60 mL)",
"originalString": "1/4 cup olive oil (60 mL)",
"originalName": "1/4 cup olive oil",
"amount": 60,
"unit": "mL",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 60,
"unitShort": "mL",
"unitLong": "mLs"
},
"metric": {
"amount": 60,
"unitShort": "mL",
"unitLong": "mLs"
}
}
},
{
"id": 11353,
"aisle": "Produce",
"image": "russet-or-idaho-potatoes.png",
"consistency": "solid",
"name": "russet potato",
"original": "1 large Russet potato, peeled and diced",
"originalString": "1 large Russet potato, peeled and diced",
"originalName": "Russet potato, peeled and diced",
"amount": 1,
"unit": "large",
"meta": [
"diced",
"peeled"
],
"metaInformation": [
"diced",
"peeled"
],
"measures": {
"us": {
"amount": 1,
"unitShort": "large",
"unitLong": "large"
},
"metric": {
"amount": 1,
"unitShort": "large",
"unitLong": "large"
}
}
},
{
"id": 1102047,
"aisle": "Spices and Seasonings",
"image": "salt-and-pepper.jpg",
"consistency": "solid",
"name": "Salt & Pepper",
"original": "Freshly ground black pepper and salt",
"originalString": "Freshly ground black pepper and salt",
"originalName": "Freshly ground black pepper and salt",
"amount": 4,
"unit": "servings",
"meta": [
"black",
"freshly ground"
],
"metaInformation": [
"black",
"freshly ground"
],
"measures": {
"us": {
"amount": 4,
"unitShort": "servings",
"unitLong": "servings"
},
"metric": {
"amount": 4,
"unitShort": "servings",
"unitLong": "servings"
}
}
},
{
"id": 1055062,
"aisle": "Meat",
"image": "chicken-breasts.png",
"consistency": "solid",
"name": "skinless boneless chicken breasts",
"original": "1 1/2 pounds of boneless, skinless chicken breasts",
"originalString": "1 1/2 pounds of boneless, skinless chicken breasts",
"originalName": "boneless, skinless chicken breasts",
"amount": 1.5,
"unit": "pounds",
"meta": [
"boneless",
"skinless"
],
"metaInformation": [
"boneless",
"skinless"
],
"measures": {
"us": {
"amount": 1.5,
"unitShort": "lb",
"unitLong": "pounds"
},
"metric": {
"amount": 680.389,
"unitShort": "g",
"unitLong": "grams"
}
}
},
{
"id": 11507,
"aisle": "Produce",
"image": "sweet-potato.png",
"consistency": "solid",
"name": "sweet potatoes",
"original": "3 large sweet potatoes, peeled and diced",
"originalString": "3 large sweet potatoes, peeled and diced",
"originalName": "sweet potatoes, peeled and diced",
"amount": 3,
"unit": "large",
"meta": [
"diced",
"peeled"
],
"metaInformation": [
"diced",
"peeled"
],
"measures": {
"us": {
"amount": 3,
"unitShort": "large",
"unitLong": "larges"
},
"metric": {
"amount": 3,
"unitShort": "large",
"unitLong": "larges"
}
}
},
{
"id": 1145,
"aisle": "Milk, Eggs, Other Dairy",
"image": "butter-sliced.jpg",
"consistency": "solid",
"name": "unsalted butter",
"original": "2 tablespoons Chilled unsalted butter",
"originalString": "2 tablespoons Chilled unsalted butter",
"originalName": "Chilled unsalted butter",
"amount": 2,
"unit": "tablespoons",
"meta": [
"unsalted",
"chilled"
],
"metaInformation": [
"unsalted",
"chilled"
],
"measures": {
"us": {
"amount": 2,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
},
"metric": {
"amount": 2,
"unitShort": "Tbsps",
"unitLong": "Tbsps"
}
}
}
],
"id": 646651,
"title": "Herb chicken with sweet potato mash and sautéed broccoli",
"readyInMinutes": 45,
"servings": 4,
"sourceUrl": "http://www.foodista.com/recipe/NHZKT2K8/serve-a-sensationally-seasoned-chicken-dish",
"image": "https://spoonacular.com/recipeImages/646651-556x370.jpg",
"imageType": "jpg",
"summary": "Herb chicken with sweet potato mash and sautéed broccoli might be just the main course you are searching for. This recipe makes 4 servings with <b>554 calories</b>, <b>43g of protein</b>, and <b>26g of fat</b> each. For <b>$2.49 per serving</b>, this recipe <b>covers 43%</b> of your daily requirements of vitamins and minerals. Head to the store and pick up pepper and salt, sweet potatoes, russet potato, and a few other things to make it today. To use up the unsalted butter you could follow this main course with the <a href=\"https://spoonacular.com/recipes/almond-milk-chocolate-pudding-260830\">Almond Milk Chocolate Pudding</a> as a dessert. 4 people have made this recipe and would make it again. It is a good option if you're following a <b>gluten free</b> diet. From preparation to the plate, this recipe takes roughly <b>45 minutes</b>. All things considered, we decided this recipe <b>deserves a spoonacular score of 91%</b>. This score is super. Try <a href=\"https://spoonacular.com/recipes/sesame-halloumi-parcels-with-sweet-potato-tahini-mash-chopped-herb-salad-219911\">Sesame halloumi parcels with sweet potato tahini mash & chopped herb salad</a>, <a href=\"https://spoonacular.com/recipes/thanksgiving-foragers-pie-wild-mushrooms-herb-gravy-and-sweet-potato-mash-in-a-flaky-spelt-crust-vegan-700725\">Thanksgiving Foragers Pie: Wild Mushrooms, Herb Gravy, and Sweet Potato Mash in a Flaky Spelt Crust [Vegan]</a>, and <a href=\"https://spoonacular.com/recipes/moroccan-chicken-with-sweet-potato-mash-219222\">Moroccan chicken with sweet potato mash</a> for similar recipes.",
"cuisines": [],
"dishTypes": [
"lunch",
"main course",
"main dish",
"dinner"
],
"diets": [
"gluten free"
],
"occasions": [],
"winePairing": {},
"instructions": "<ol><li> Preheat the oven to 350F (180C) or 320F (160C) for convection oven and cook the chicken according to the pack instructions.</li><li> About 15 minutes before the end of the chicken cooking time, place the diced potato into boiling water for 5 minutes, then add the sweet potato and cook until the potatoes are tender. Roughly mash, adding butter, salt, and pepper to taste, then mash thoroughly.</li><li> Heat the oil in a pan and quickly saut the broccoli until tender. Cover to keep warm.</li><li> Remove the chicken from the oven, leave to cool for a minute then cut the bag open and gently tip the contents into a dish.</li><li> Slice the chicken breasts into chunky pieces on a board, keeping the chicken breast shape together.</li><li> Serve the mash potato topped with the chicken and remaining sauce with a side of broccoli.</li></ol>",
"analyzedInstructions": [
{
"name": "",
"steps": [
{
"number": 1,
"step": "Preheat the oven to 350F (180C) or 320F (160C) for convection oven and cook the chicken according to the pack instructions. About 15 minutes before the end of the chicken cooking time, place the diced potato into boiling water for 5 minutes, then add the sweet potato and cook until the potatoes are tender. Roughly mash, adding butter, salt, and pepper to taste, then mash thoroughly.",
"ingredients": [
{
"id": 11507,
"name": "sweet potato",
"localizedName": "sweet potato",
"image": "sweet-potato.png"
},
{
"id": 2047,
"name": "salt",
"localizedName": "salt",
"image": "salt.jpg"
}
],
"equipment": [
{
"id": 404784,
"name": "oven",
"localizedName": "oven",
"image": "oven.jpg",
"temperature": {
"number": 350,
"unit": "Fahrenheit"
}
}
],
"length": {
"number": 20,
"unit": "minutes"
}
},
{
"number": 2,
"step": "Heat the oil in a pan and quickly saut the broccoli until tender. Cover to keep warm.",
"ingredients": [
{
"id": 11090,
"name": "broccoli",
"localizedName": "broccoli",
"image": "broccoli.jpg"
}
],
"equipment": [
{
"id": 404645,
"name": "frying pan",
"localizedName": "frying pan",
"image": "pan.png"
}
]
},
{
"number": 3,
"step": "Remove the chicken from the oven, leave to cool for a minute then cut the bag open and gently tip the contents into a dish. Slice the chicken breasts into chunky pieces on a board, keeping the chicken breast shape together.",
"ingredients": [
{
"id": 5062,
"name": "chicken breast",
"localizedName": "chicken breast",
"image": "chicken-breasts.png"
}
],
"equipment": [
{
"id": 404784,
"name": "oven",
"localizedName": "oven",
"image": "oven.jpg"
}
]
},
{
"number": 4,
"step": "Serve the mash potato topped with the chicken and remaining sauce with a side of broccoli.",
"ingredients": [
{
"id": 11090,
"name": "broccoli",
"localizedName": "broccoli",
"image": "broccoli.jpg"
}
],
"equipment": []
}
]
}
],
"originalId": null,
"spoonacularSourceUrl": "https://spoonacular.com/herb-chicken-with-sweet-potato-mash-and-sauted-broccoli-646651"
},
{
"vegetarian": false,
"vegan": false,
"glutenFree": false,
"dairyFree": false,
"veryHealthy": false,
"cheap": false,
"veryPopular": false,
"sustainable": false,
"weightWatcherSmartPoints": 25,
"gaps": "no",
"lowFodmap": false,
"aggregateLikes": 17,
"spoonacularScore": 20,
"healthScore": 2,
"creditsText": "Foodista.com – The Cooking Encyclopedia Everyone Can Edit",
"license": "CC BY 3.0",
"sourceName": "Foodista",
"pricePerServing": 133,
"extendedIngredients": [
{
"id": 9050,
"aisle": "Produce",
"image": "blueberries.jpg",
"consistency": "solid",
"name": "blueberries",
"original": "1 cup blueberries, dusted with a little plain flour",
"originalString": "1 cup blueberries, dusted with a little plain flour",
"originalName": "blueberries, dusted with a little plain flour",
"amount": 1,
"unit": "cup",
"meta": [
"plain",
"with a little flour"
],
"metaInformation": [
"plain",
"with a little flour"
],
"measures": {
"us": {
"amount": 1,
"unitShort": "cup",
"unitLong": "cup"
},
"metric": {
"amount": 236.588,
"unitShort": "ml",
"unitLong": "milliliters"
}
}
},
{
"id": 1001,
"aisle": "Milk, Eggs, Other Dairy",
"image": "butter-sliced.jpg",
"consistency": "solid",
"name": "butter",
"original": "1/4 cup butter, melted",
"originalString": "1/4 cup butter, melted",
"originalName": "butter, melted",
"amount": 0.25,
"unit": "cup",
"meta": [
"melted"
],
"metaInformation": [
"melted"
],
"measures": {
"us": {
"amount": 0.25,
"unitShort": "cups",
"unitLong": "cups"
},
"metric": {
"amount": 59.147,
"unitShort": "ml",
"unitLong": "milliliters"
}
}
},
{
"id": 20027,
"aisle": "Baking",
"image": "white-powder.jpg",
"consistency": "solid",
"name": "cornflour",
"original": "1 tbsp cornflour",
"originalString": "1 tbsp cornflour",
"originalName": "cornflour",
"amount": 1,
"unit": "tbsp",
"meta": [],
"metaInformation": [],
"measures": {
"us": {
"amount": 1,
"unitShort": "Tbsp",
"unitLong": "Tbsp"
},
"metric": {
"amount": 1,
"unitShort": "Tbsp",
"unitLong": "Tbsp"
}
}
},
{
"id": 1017,
"aisle": "Cheese",
"image": "cream-cheese.jpg",
"consistency": "solid",
"name": "cream cheese",
"original": "500g cream cheese, at room temperature",
"originalString": "500g cream cheese, at room temperature",
"originalName": "cream cheese, at room temperature",
"amount": 500,