-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathneeds.json
1502 lines (1502 loc) · 63.2 KB
/
needs.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
[
{
"id": "d33fe02b",
"found": "2025-01-11T16:22:44.456",
"foodbank": {
"name": "Hambleton Foodshare",
"slug": "hambleton-foodshare",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/hambleton-foodshare/",
"html": "https://www.givefood.org.uk/needs/at/hambleton-foodshare/"
}
},
"needs": "Tinned Pies\nCreamed Rice\nCustard\nHot Dogs\nJars Of Jam\nSmall Sugar\nTinned Fruit\nToothpaste\nDeodorant\nShampoo\nUHT Milk\nCoffee\nSponge Puddings\nInstant Potato\nTinned Potato\nToilet Roll\nWashing Powder",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/d33fe02b/"
},
{
"id": "9fdb01a8",
"found": "2025-01-11T16:11:56.163",
"foodbank": {
"name": "Bognor Regis",
"slug": "bognor-regis",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/bognor-regis/",
"html": "https://www.givefood.org.uk/needs/at/bognor-regis/"
}
},
"needs": "Tinned Carrots\nTinned Tomatoes\nUHT Orange Juice\nTinned Peas\nUHT Milk (Green)",
"excess": "Pulses",
"self": "https://www.givefood.org.uk/api/2/need/9fdb01a8/"
},
{
"id": "a23d4c0d",
"found": "2025-01-11T16:00:02.948",
"foodbank": {
"name": "West Berks",
"slug": "west-berks",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/west-berks/",
"html": "https://www.givefood.org.uk/needs/at/west-berks/"
}
},
"needs": "Dried Powered Milk\nCleaning Products\nRazors Male And Female\nBaby Food Age 10mths\nLong Life Juice\nTinned Carrots Or Peas\nRice\nUHT Milk Full Fat\nNon Biological Washing Powder/Pods\nToothpaste",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/a23d4c0d/"
},
{
"id": "9ebbaf3b",
"found": "2025-01-11T09:50:21.450",
"foodbank": {
"name": "Cheadle and District",
"slug": "cheadle-and-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/cheadle-and-district/",
"html": "https://www.givefood.org.uk/needs/at/cheadle-and-district/"
}
},
"needs": "Ladies Deodorants\nToothbrushes\nGents And Ladies Shower Gel\nDisposable Razors",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/9ebbaf3b/"
},
{
"id": "6c21033f",
"found": "2025-01-11T02:42:55.933",
"foodbank": {
"name": "Bournemouth",
"slug": "bournemouth",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/bournemouth/",
"html": "https://www.givefood.org.uk/needs/at/bournemouth/"
}
},
"needs": "Tinned Vegetarian Meals Such As Veggie Chilli, Macaroni Cheese, Vegetarian Ravioli\nInstant Coffee\nInstant Packets Such As Instant Noodles And Microwavable Rice Packets\nSingle Serve Cereal I.E Instant Oat Pots, Weetabix, Kellogg's Variety Packs\nPeanut Butter\nBeans And Pulses Such As Lentils, Chickpeas, Butter Beans",
"excess": "Family Sized Packs Of Cereal\nTinned Baked Beans\nRice\nTea",
"self": "https://www.givefood.org.uk/api/2/need/6c21033f/"
},
{
"id": "6b766b83",
"found": "2025-01-10T22:00:30.255",
"foodbank": {
"name": "Wandsworth",
"slug": "wandsworth",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/wandsworth/",
"html": "https://www.givefood.org.uk/needs/at/wandsworth/"
}
},
"needs": "Tinned Sweetcorn\nTinned Peas\nTinned Carrots\nTinned Lentils\nTin Openers\nCuppa Soup\nCooking Oil (500Ml)\nCrisps (Multi-Pack)\nHoney\nHot Chocolate\nUHT Non-Dairy Milk (E.G. Soya, Almond)\nLoo Roll (4-Packs)\nSanitary Towels (Regular)\nNappies Sizes 4\nShampoo\nConditioner\nHot Water Bottles With Cover (New)",
"excess": "Hand Soap\nPasta",
"self": "https://www.givefood.org.uk/api/2/need/6b766b83/"
},
{
"id": "4ed5ab2c",
"found": "2025-01-10T20:25:22.756",
"foodbank": {
"name": "Ivybridge",
"slug": "ivybridge",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/ivybridge/",
"html": "https://www.givefood.org.uk/needs/at/ivybridge/"
}
},
"needs": "Carrier Bags - Plastic Bag For Life Type (Must Be Clean)\nLong Life Milk\nInstant Mash\nFruit Squash\nCooking Oil\nPowdered Milk\nTinned Rice Pudding\nTinned Fruit\nTinned Soup\nTinned Tomatoes\nPasta Packets (Microwaveable)\nTinned Spaghetti\nSalt (Small)",
"excess": "Gravy Granules\nStock Cubes\nTinned Custard\nTomato Ketchup\nSugar (500G)\nToilet Rolls\nHp/Brown Sauce\nGluten Free Products (But Not Pasta Or Cereal)\nCoffee\nCup-A-Soup\nLong Life Fruit Juice (Carton)\nSponge Puddings (Twin Pack)\nCooking Sauces (Packet)\nAdult Toothpaste\nHair Shampoo\nShower Gel\nMulti Pack Crisps / Snacks\nWashing Up Liquid\nTrifle Kits\nSalad Cream\nMayonnaise\nTurkey Gravy Granules\nChocolate (Treat)\nPasta Sauce\nBiscuits\nBaked Beans\nJam\nTinned Veg\nTinned Fish\nAngel Delight\nRice Sachets (Microwaveable)\nTinned Mushrooms\nTinned Potatoes\nSoap (Bar)\nSanitary Towels\nKitchen Towel Rolls\nBoxes Of Tissues\nBreakfast Cereals\nHandwash\nPasta\nTea\nRice (500G)\nOats\nMuesli",
"self": "https://www.givefood.org.uk/api/2/need/4ed5ab2c/"
},
{
"id": "e3fdf534",
"found": "2025-01-10T20:20:58.820",
"foodbank": {
"name": "CDW",
"slug": "cdw",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/cdw/",
"html": "https://www.givefood.org.uk/needs/at/cdw/"
}
},
"needs": "Milk (Long Life)\nJam\nMicro Rice/Raw Rice\nSmall Coffee\nHot Dogs\nToilet Roll\nCrisps\nTinned Meats/Curry/Stew/Chilli\nRavioli/Macaroni\nNoodles/Mug Shots\nPasta Sauce\nPacket Sauces\nTinned Pudding/Fruit\nHousehold Cleaning Supplies\nLaundry Liquid\nBleach\nToothpaste\nDeodorant (M&F)\nFrozen Small Pizza/Meals/Frozen Veg",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/e3fdf534/"
},
{
"id": "efa00ec7",
"found": "2025-01-10T20:20:50.786",
"foodbank": {
"name": "Nuneaton",
"slug": "nuneaton",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/nuneaton/",
"html": "https://www.givefood.org.uk/needs/at/nuneaton/"
}
},
"needs": "UHT Milk\nPasta Sauce\nTinned Spaghetti /Loops\nCustard - Tins Or Cartons\nRice Pudding\nTinned Fruit\nCoffee\nTinned Potatoes\nInstant Mash\nPuddings\nCereals\nJam\nSquash\nFruit Juice\nTinned Fish\nTinned Tomatoes\nTinned Carrots\nCrisps\nDog Food\nToilet Rolls\nShampoo\nWashing-Up Liquid\nWashing Powder\nNappies Size 5+6\nShaving Foam/Gel And Razors\nTinned Meat\nTea\nTinned Peas\nTinned Soup\nCup-O-Soup\nSoap\nDeoderant",
"excess": "Porridge\nChickpeas/Red Kidney Beans\nSanitary Products",
"self": "https://www.givefood.org.uk/api/2/need/efa00ec7/"
},
{
"id": "672d78ff",
"found": "2025-01-10T20:18:21.422",
"foodbank": {
"name": "Taunton",
"slug": "taunton",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/taunton/",
"html": "https://www.givefood.org.uk/needs/at/taunton/"
}
},
"needs": "UHT Semi-Skimmed Milk\nLong Life Fruit Juice\nTinned Cold Meat (Ham, Corned Beef, Etc.)\nToilet Roll\nJam/Peanut Butter/Nutella",
"excess": "Cereal\nPet Food\nSanitary Products",
"self": "https://www.givefood.org.uk/api/2/need/672d78ff/"
},
{
"id": "c6e4786a",
"found": "2025-01-10T20:16:23.296",
"foodbank": {
"name": "Grace",
"slug": "grace",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/grace/",
"html": "https://www.givefood.org.uk/needs/at/grace/"
}
},
"needs": "Coffee\nTinned Meat\nRice\nBiscuits\nJam\nTinned Potatoes\nRice Pudding\nFruit Squash\nShampoo",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/c6e4786a/"
},
{
"id": "5b267a85",
"found": "2025-01-10T20:04:57.916",
"foodbank": {
"name": "Birmingham Central",
"slug": "birmingham-central",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/birmingham-central/",
"html": "https://www.givefood.org.uk/needs/at/birmingham-central/"
}
},
"needs": "UHT Milk\nRice\nPasta Sauce\nTinned Fish\nCereal\nShampoo",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/5b267a85/"
},
{
"id": "2ec40183",
"found": "2025-01-10T19:58:51.987",
"foodbank": {
"name": "Warwick District",
"slug": "warwick-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/warwick-district/",
"html": "https://www.givefood.org.uk/needs/at/warwick-district/"
}
},
"needs": "Long Life Milk\nLong Life Fruit Juice\nCoffee (Small Jars)\nCup Soups\nShaving Foam / Gel\nRazors\nDeodorants (Male / Female)\nToilet Rolls\nBaby Wipes\nNappies, Sizes 4,5,6 & 7",
"excess": "Baked Beans\nTinned Soup\nRice\nTampons\nCereal",
"self": "https://www.givefood.org.uk/api/2/need/2ec40183/"
},
{
"id": "bb7d6e65",
"found": "2025-01-10T19:56:53.319",
"foodbank": {
"name": "Norwich",
"slug": "norwich",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/norwich/",
"html": "https://www.givefood.org.uk/needs/at/norwich/"
}
},
"needs": "Tinned Meat\nTinned Fish\nLong Life Juice\nPeanut Butter\nJam\nTinned Vegetables\nTinned Tomatoes\nRice Pudding\nTinned Fruit\nLadies Deodorant\nGents Deodorant",
"excess": "Baked Beans\nSanitary Items",
"self": "https://www.givefood.org.uk/api/2/need/bb7d6e65/"
},
{
"id": "9da42bad",
"found": "2025-01-10T19:55:37.656",
"foodbank": {
"name": "Walton & Hersham",
"slug": "walton-hersham",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/walton-hersham/",
"html": "https://www.givefood.org.uk/needs/at/walton-hersham/"
}
},
"needs": "Long-Life Juice Or Squash\nTinned Meat\nMayonnaise\nTinned Sweetcorn\nLong-Life Sponge Puddings\nSanitary Towels\nWashing Up Liquid",
"excess": "Baked Beans\nSoup\nTea Bags\nPasta And Pasta Sauce\nTinned Fruit\nPulses\nToilet Roll",
"self": "https://www.givefood.org.uk/api/2/need/9da42bad/"
},
{
"id": "f2d78098",
"found": "2025-01-10T19:55:18.780",
"foodbank": {
"name": "Chorlton & Didsbury",
"slug": "chorlton-didsbury",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/chorlton-didsbury/",
"html": "https://www.givefood.org.uk/needs/at/chorlton-didsbury/"
}
},
"needs": "Long Life Fruit Juice\nCoffee\nCereal\nSoup\nBeans\nPasta Sauce\nTinned Tomatoes\nPulses\nTinned Vegetables\nMeat Meals\nVegetarian Meals\nTinned Fish\nTinned Fruit\nBiscuits\nPasta\nRice\nTea\nFruit Juice\nLong Life Milk\nSauces/Condiments\nSnacks\nJam\nToiletries\nPet Food\nBaby Food\nHygiene Items",
"excess": "Pasta",
"self": "https://www.givefood.org.uk/api/2/need/f2d78098/"
},
{
"id": "f660fbc6",
"found": "2025-01-10T19:53:53.450",
"foodbank": {
"name": "Smethwick",
"slug": "smethwick",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/smethwick/",
"html": "https://www.givefood.org.uk/needs/at/smethwick/"
}
},
"needs": "Flour\nCustard\nLong Life Fruit Juice/Squash\nTinned Fish\nTinned Vegetables\nDried Fruit/Nuts\nTinned Meat",
"excess": "Pasta\nTinned Meat\nBaked Beans",
"self": "https://www.givefood.org.uk/api/2/need/f660fbc6/"
},
{
"id": "27dea5bb",
"found": "2025-01-10T19:42:42.593",
"foodbank": {
"name": "Ringwood",
"slug": "ringwood",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/ringwood/",
"html": "https://www.givefood.org.uk/needs/at/ringwood/"
}
},
"needs": "Sponge Puddings\nTinned Carrots\nTinned Meat Pies\nTinned Cold Meat\nCoffee\nJam\nRice Pudding\nCustard\nToilet Rolls",
"excess": "Cereal\nPasta (Dried)\nTea\nBiscuits",
"self": "https://www.givefood.org.uk/api/2/need/27dea5bb/"
},
{
"id": "8447e015",
"found": "2025-01-10T18:35:08.477",
"foodbank": {
"name": "Black Country",
"slug": "black-country",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/black-country/",
"html": "https://www.givefood.org.uk/needs/at/black-country/"
}
},
"needs": "Tinned Ready Meals - Meat\nTinned Spaghetti\nTinned Vegetables\nTinned Chopped Tomatoes\nBreakfast Cereal\nTea Bags Box Of 40's\nLong Life Milk\nTinned Fruit In Juice\nTinned Custard\nRoll On Deodorant\nShower Gel\nToilet Roll\nBars Of Soap",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/8447e015/"
},
{
"id": "69e53048",
"found": "2025-01-10T13:00:25.228",
"foodbank": {
"name": "Woking",
"slug": "woking",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/woking/",
"html": "https://www.givefood.org.uk/needs/at/woking/"
}
},
"needs": "Long Life Sponge Puddings\nLaundry Detergent (Bio & Non Bio Types)\nLaundry Conditioner\nShampoo\nLong Life Milk\nShaving Gel/Foam\nCooking Oil\nWashing Up Liquid\nTomato Ketchup\nEgg Noodles & Rice Noodles\nChocolate Spread\nLong Life Fruit Juice",
"excess": "Tea Bags\nSoup\nPorridge\nTinned Pulses\nCereal\nPasta\nJars Of Cooking Sauce\nBubble Bath\nBaked Beans",
"self": "https://www.givefood.org.uk/api/2/need/69e53048/"
},
{
"id": "8fd6c334",
"found": "2025-01-10T13:00:06.146",
"foodbank": {
"name": "Wandsworth",
"slug": "wandsworth",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/wandsworth/",
"html": "https://www.givefood.org.uk/needs/at/wandsworth/"
}
},
"needs": "Tinned Sweetcorn\nTinned Peas\nTinned Carrots\nTinned Lentils\nTin Openers\nCuppa Soup\nCooking Oil (500Ml)\nCrisps (Multi-Pack)\nHoney\nHot Chocolate\nUHT Non-Dairy Milk (E.G. Soya, Almond)\nLoo Roll (4-Packs)\nSanitary Towels (Regular)\nNappies Sizes 4\nHot Water Bottles With Cover (New)",
"excess": "Hand Soap\nPasta",
"self": "https://www.givefood.org.uk/api/2/need/8fd6c334/"
},
{
"id": "a280bd01",
"found": "2025-01-09T23:56:03.868",
"foodbank": {
"name": "Aylesbury",
"slug": "aylesbury",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/aylesbury/",
"html": "https://www.givefood.org.uk/needs/at/aylesbury/"
}
},
"needs": "Long Life Fruit Juice\nTable Sauces\nLong Life UHT Milk\nTinned Fruit",
"excess": "Breakfast Cereal\nSponge Puddings\nJam\nBiscuits\nInstant Mash\nSanitary Products",
"self": "https://www.givefood.org.uk/api/2/need/a280bd01/"
},
{
"id": "3c9c2fb0",
"found": "2025-01-09T19:00:15.416",
"foodbank": {
"name": "Penryn & Falmouth",
"slug": "penryn-falmouth",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/penryn-falmouth/",
"html": "https://www.givefood.org.uk/needs/at/penryn-falmouth/"
}
},
"needs": "Toilet Rolls\nLonglife Semi-Skimmed Milk\nJam\nBreakfast Cereals\nTinned Corned Beef\nTinned Rice Pudding\nTinned Meat Meals\nDry Rice\nTinned Fruit\nLaundry Capsules\nWashing Up Liquid\nShampoo\nLadies' Deodorants\nMen's Deodorants",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/3c9c2fb0/"
},
{
"id": "7c533e0a",
"found": "2025-01-09T17:52:05.416",
"foodbank": {
"name": "Oswestry and Borders",
"slug": "oswestry-and-borders",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/oswestry-and-borders/",
"html": "https://www.givefood.org.uk/needs/at/oswestry-and-borders/"
}
},
"needs": "Tinned Ham/ Spam/ Corned Beef\nSmall Coffee & Tea\nTinned Spaghetti\nLarge Tins Of Sweetcorn\nJams & Spreads\nSize 6 & 7 Nappies/ Pull Ups\nDog & Cat Food\nShampoo & Shower Gel",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/7c533e0a/"
},
{
"id": "972cba9e",
"found": "2025-01-09T17:44:59.818",
"foodbank": {
"name": "Littlehampton & District",
"slug": "littlehampton-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/littlehampton-district/",
"html": "https://www.givefood.org.uk/needs/at/littlehampton-district/"
}
},
"needs": "Tinned Meals\nTinned Fruit\nRice Pudding & Custard\nSquash & UHT Fruit Juice\nTinned Fish\nUHT Milk\nJam, Peanut Butter Etc\nSugar\nToilet Rolls\nHousehold Cleaning Products (Without Bleach)",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/972cba9e/"
},
{
"id": "5d3e6195",
"found": "2025-01-09T17:44:54.326",
"foodbank": {
"name": "Skipton",
"slug": "skipton",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/skipton/",
"html": "https://www.givefood.org.uk/needs/at/skipton/"
}
},
"needs": "Small Jars Of Instant Coffee\nMicrowavable Rice Pouches\nTins Of Rice Pudding\nTins Of Custard\nTins Of Veg\nTins Of Tomatoes\nTins Of Fruit\nWashing Detergent\nShower Gel\nShampoo",
"excess": "Tinned Soup\nPasta",
"self": "https://www.givefood.org.uk/api/2/need/5d3e6195/"
},
{
"id": "ac04b23a",
"found": "2025-01-09T17:34:08.929",
"foodbank": {
"name": "West Northumberland",
"slug": "west-northumberland",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/west-northumberland/",
"html": "https://www.givefood.org.uk/needs/at/west-northumberland/"
}
},
"needs": "Tinned Meats\nTinned Fish\nTinned Fruit\nTinned Vegetables\nTinned Soups\nTinned Deserts\nPasta\nCook-In Sauces\nReady-To-Eat Meals\nDried Pasta\nRice\nCereals\nCooking Oil\nLong-Life Milk\nNon-Dairy Milk Alternatives\nToiletries\nSoap\nToothpaste\nSanitary Products\nCleaning Products\nLaundry Detergent\nCereal\nInstant Noodles\nUHT Milk\nTinned And Dried Pasta\nTinned Meats And Fish\nTinned Fruit And Veg\nTinned Carrots\nCoffee\nBaked Beans\nTinned Soup\nTeabags\nMicrowave Rice Pouches\nSugar\nJams And Spreads\nBiscuits\nTinned Tomatoes\nDeodorants\nToilet Rolls\nShower Gel\nShampoo\nRazors\nWashing Powder / Tablets\nBleach\nWashing Up Liquid\nHousehold Cleaning Sprays\nBaby Wipes\nNappies (Size 4 / 5 / 6)",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/ac04b23a/"
},
{
"id": "1f598b33",
"found": "2025-01-09T17:33:09.922",
"foodbank": {
"name": "Malvern Hills",
"slug": "malvern-hills",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/malvern-hills/",
"html": "https://www.givefood.org.uk/needs/at/malvern-hills/"
}
},
"needs": "Flavoured Rice\nJars Of Coffee - 100G And 200G\nJars Of Jam\nUHT Milk, 1L\nPacket Pasta Sauce\nTins Of Carrots\nTins Of Custard\nTins Of Meaty Soup\nTins Of Peas\nTins Of Pears\nRazors, Disposable\nWashing Powder/Liquid/Capsules/Sheets\nInstant Mash\nJars Of Sauce For Rice (Curry, Chilli)\nJars Of Sauce For Pasta\nRice, Dry - 500G\nTea (80/100 Bags)\nTinned Tomatoes\nTins Of Mandarins\nTomato Ketchup\nTins Of Pineapples\nToothbrushes - Adult And Children\nToothpaste - Adult And Children\nNappies Size 5, 7 And 8\nCat Food, Dry\nTins Of Meat\nTins Of Fish\nTins Of Fruit\nTins Of Vegetables\nTins Of Beans\nTins Of Soup\nTins Of Rice Pudding\nTea Bags In 40S Or 80S\nInstant Coffee\nUHT Milk\nFruit Juice\nFruit Squash\nCereals (Medium)\nPasta (500G)\nTinned Potatoes\nSauces For Rice And Pasta\nTreats: Biscuits, Chocolate, Sweets Etc\nPersonal Hygiene Items: Shower Gel, Shampoo, Deodorant, Toilet Rolls, Bars Of Soap\nHousehold Cleaning Items: Washing-Up Liquid, Surface Cleaner",
"excess": "Porridge, Porridge Pots\nCereal\nBottled/Flavoured Water\nPasta\nBaby Food\nNoodles",
"self": "https://www.givefood.org.uk/api/2/need/1f598b33/"
},
{
"id": "be92ff22",
"found": "2025-01-09T17:30:52.240",
"foodbank": {
"name": "Liskeard & Looe",
"slug": "liskeard-looe",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/liskeard-looe/",
"html": "https://www.givefood.org.uk/needs/at/liskeard-looe/"
}
},
"needs": "Dry Cat Food\nFruit Juice\nWashing Powder\nTinned Sweetcorn\nWashing Up Liquid\nCoffee\nTinned Carrots\nTinned Meat (Ham/Corned Beef)\nBiscuits",
"excess": "Butter Beans\nKidney Beans\nCannelloni Beans\nChick Peas\nBaked Beans\nToothpaste\nTena Style Pads\nBars Of Soap",
"self": "https://www.givefood.org.uk/api/2/need/be92ff22/"
},
{
"id": "343cac8b",
"found": "2025-01-09T17:20:41.420",
"foodbank": {
"name": "Morecambe Bay",
"slug": "morecambe-bay",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/morecambe-bay/",
"html": "https://www.givefood.org.uk/needs/at/morecambe-bay/"
}
},
"needs": "Nappies Size 5+\nNappies Size 6\nNappies Size 6+",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/343cac8b/"
},
{
"id": "b04ef147",
"found": "2025-01-09T17:14:48.394",
"foodbank": {
"name": "Hailsham",
"slug": "hailsham",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/hailsham/",
"html": "https://www.givefood.org.uk/needs/at/hailsham/"
}
},
"needs": "Tinned Fruit\nRice Pudding/Custard\nTinned Meat\nTinned Vegetables\nToiletries",
"excess": "Tea Bags",
"self": "https://www.givefood.org.uk/api/2/need/b04ef147/"
},
{
"id": "ef9dc7c6",
"found": "2025-01-09T17:08:37.726",
"foodbank": {
"name": "Fylde",
"slug": "fylde",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/fylde/",
"html": "https://www.givefood.org.uk/needs/at/fylde/"
}
},
"needs": "Baked Beans\nBiscuits\nCooking Oil\nDog And Cat Food\nFlour\nSalt\nSoup\nTea\nTinned Fruit\nTomato And Brown Sauces\nTuna\nShampoo",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/ef9dc7c6/"
},
{
"id": "5c1536fb",
"found": "2025-01-09T17:05:44.466",
"foodbank": {
"name": "Slough",
"slug": "slough",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/slough/",
"html": "https://www.givefood.org.uk/needs/at/slough/"
}
},
"needs": "Meat (Tinned)\nCooking Sauces (Long-Life)\nFruit Juice (Long-Life)\nMilk (Long-Life)\nFruit (Tinned)\nTuna (Tinned)\nVegetarian Meals (Tinned)\nVegetables (Tinned)\nRice Pudding (Long-Life)\nInstant Mash\nDeodorants\nSanitary Pads\nToilet Rolls\nWashing Up Liquid\nShampoo\nShaving Foam/Gel\nToothpaste\nChild Toothbrushes\nNappies Size 5, 7 & 8\nStrong Carrier Bags",
"excess": "Pasta",
"self": "https://www.givefood.org.uk/api/2/need/5c1536fb/"
},
{
"id": "fecf0216",
"found": "2025-01-09T17:04:55.630",
"foodbank": {
"name": "Alton",
"slug": "alton",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/alton/",
"html": "https://www.givefood.org.uk/needs/at/alton/"
}
},
"needs": "Tinned Vegetables\nTinned Custard\nTinned Meat\nLong Life Sponge Puddings\nTinned Fish\nLong Life Milk\nLong Life Fruit Juice\nSoup",
"excess": "Pasta\nBaked Beans\nTinned Tomatoes",
"self": "https://www.givefood.org.uk/api/2/need/fecf0216/"
},
{
"id": "4fcd90a2",
"found": "2025-01-09T12:59:43.357",
"foodbank": {
"name": "Market Drayton",
"slug": "market-drayton",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/market-drayton/",
"html": "https://www.givefood.org.uk/needs/at/market-drayton/"
}
},
"needs": "Toilet Rolls\nTinned Fruit\nTinned Spaghetti\nFull Fat (Blue) UHT Milk\nCartons Of Long Life Fruit Juice\nBiscuits\nLaundry Washing Pods\nSmall Jars Of Coffee",
"excess": "Cereals\nBaked Beans\nTea\nRice\nPasta",
"self": "https://www.givefood.org.uk/api/2/need/4fcd90a2/"
},
{
"id": "61eecd27",
"found": "2025-01-09T11:09:34.634",
"foodbank": {
"name": "West Cheshire",
"slug": "west-cheshire",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/west-cheshire/",
"html": "https://www.givefood.org.uk/needs/at/west-cheshire/"
}
},
"needs": "UHT Juices\nBreakfast Bars\nPudding/Desserts\nJams And Spreads\nTinned Fruit\nUHT Fruit Juice/Milk\nTinned Meat/Fish\nTinned Potatoes/Veg\nTinned Tomatoes\nInstant Coffee\nCuppa Soups\nInstant Noodles\nInstant Pasta (Pasta And Sauce)\nPasta In Sauce\nTinned Custard\nBiscuits And Small Treats\nCoffee\nToiletries",
"excess": "Pasta\nBaked Beans\nTinned Soups",
"self": "https://www.givefood.org.uk/api/2/need/61eecd27/"
},
{
"id": "7aa48f45",
"found": "2025-01-08T21:54:36.395",
"foodbank": {
"name": "Harrow",
"slug": "harrow",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/harrow/",
"html": "https://www.givefood.org.uk/needs/at/harrow/"
}
},
"needs": "Carrier Bags (Bags For Life)\nLong Life Fruit Juice\nSponge Pudding (Microwavable)\nTinned Chicken Meals\nCorned Beef\nTinned Vegetarian & Vegan Meals\nTinned Fish (Tuna & Other Types Of Fish)\nPacket Mashed Potato\nTinned Custard\nRice Pudding\nHot Chocolate\nSavoury Biscuits\nBiscuit Crackers\nChocolate Treats\nTinned Meat Pies (E.G. Fray Bentos Pies)\nShampoo\nShower Gel / Body Wash\nShaving Foam / Shaving Gel\nMen's & Women's Razors\nWashing Powder\nWashing Up Liquid\nMen's & Women's Deodorante\nSoap Bars\nJam / Marmalade\nPeanut Butter\nHoney\nChocolate Spread",
"excess": "Baked Beans\nVegetable Tinned Soup\nCereal\nToilet Paper",
"self": "https://www.givefood.org.uk/api/2/need/7aa48f45/"
},
{
"id": "a480a750",
"found": "2025-01-08T21:48:55.245",
"foodbank": {
"name": "Shrewsbury",
"slug": "shrewsbury",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/shrewsbury/",
"html": "https://www.givefood.org.uk/needs/at/shrewsbury/"
}
},
"needs": "Rice Pudding\nTinned Tomatoes\nTinned Potatoes\nTinned Hot Dogs\nTinned Meatballs",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/a480a750/"
},
{
"id": "59b16395",
"found": "2025-01-08T21:34:41.520",
"foodbank": {
"name": "Harrogate District",
"slug": "harrogate-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/harrogate-district/",
"html": "https://www.givefood.org.uk/needs/at/harrogate-district/"
}
},
"needs": "Strong Carrier Bags\nTinned Meat\nLaundry Pods\nWashing-Up Liquid\nUHT Milk\nSponge Puddings\nFemale Deodorant\nMale Deodorant",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/59b16395/"
},
{
"id": "4780efba",
"found": "2025-01-08T21:11:52.871",
"foodbank": {
"name": "Andover",
"slug": "andover",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/andover/",
"html": "https://www.givefood.org.uk/needs/at/andover/"
}
},
"needs": "Tinned Meat\nTinned Vegetables\nRice Pudding\nLong Life Milk\nCoffee\nCleaning Spray\nLaundry Pods",
"excess": "Pasta",
"self": "https://www.givefood.org.uk/api/2/need/4780efba/"
},
{
"id": "6e45a9e2",
"found": "2025-01-08T21:10:07.330",
"foodbank": {
"name": "Craigavon Area",
"slug": "craigavon-area",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/craigavon-area/",
"html": "https://www.givefood.org.uk/needs/at/craigavon-area/"
}
},
"needs": "Tinned Meat\nTinned Fruit\nInstant Mash Potato Powder\nUHT Milk\nJam And Spreads",
"excess": "Baked Beans\nBreakfast Cereal\nTinned Soup\nPasta\nRice",
"self": "https://www.givefood.org.uk/api/2/need/6e45a9e2/"
},
{
"id": "699e8fa2",
"found": "2025-01-08T21:08:07.603",
"foodbank": {
"name": "Rutherglen & Cambuslang",
"slug": "rutherglen-cambuslang",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/rutherglen-cambuslang/",
"html": "https://www.givefood.org.uk/needs/at/rutherglen-cambuslang/"
}
},
"needs": "Sugar\nTinned Meat\nTinned Fruit\nRice Pudding\nSpaghetti Hoops\nUHT Milk\nCoffee",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/699e8fa2/"
},
{
"id": "5f81582a",
"found": "2025-01-08T15:05:42.288",
"foodbank": {
"name": "Rugby",
"slug": "rugby",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/rugby/",
"html": "https://www.givefood.org.uk/needs/at/rugby/"
}
},
"needs": "Tinned Snack Meals\nTinned Meat\nToilet Rolls\nGood Strong Carrier Bags\nTinned Tomatoes\nJam\nShampoo",
"excess": "Baked Beans\nPasta\nSoup",
"self": "https://www.givefood.org.uk/api/2/need/5f81582a/"
},
{
"id": "32f0abd0",
"found": "2025-01-08T15:04:55.502",
"foodbank": {
"name": "Cheltenham",
"slug": "cheltenham",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/cheltenham/",
"html": "https://www.givefood.org.uk/needs/at/cheltenham/"
}
},
"needs": "Tinned Cold Meat (Or Fish)\nPasta Sauce\nWashing Up Liquid\nWashing Powder\nSoup\nDesserts\nDeodorants",
"excess": "Nappies\nSanitary Products\nBaby Food\nNon-Dairy Milk\nToothpaste",
"self": "https://www.givefood.org.uk/api/2/need/32f0abd0/"
},
{
"id": "5a27cdf1",
"found": "2025-01-08T14:52:36.338",
"foodbank": {
"name": "Farnborough",
"slug": "farnborough",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/farnborough/",
"html": "https://www.givefood.org.uk/needs/at/farnborough/"
}
},
"needs": "Tinned Meats And Pies: Stew, Chili, Meatballs And Chicken In Sauce Etc\nLong Life Fruit Juice (Litre)\nPorridge Sachets\nTinned Sausages And Baked Beans\nInstant Custard / Tinned Custard\nRice Pudding\nMilk (Not Skimmed Milk)\nSponge Puddings (Single Puddings And Multi Packs)\nBiscuits\nTinned Tomatoes",
"excess": "Nappies\nBaby Formula Milk\nSkimmed Milk\nPasta\nChocolate Breakfast Cereals",
"self": "https://www.givefood.org.uk/api/2/need/5a27cdf1/"
},
{
"id": "9b1b3d3d",
"found": "2025-01-08T14:47:11.693",
"foodbank": {
"name": "Hull",
"slug": "hull",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/hull/",
"html": "https://www.givefood.org.uk/needs/at/hull/"
}
},
"needs": "UHT Milk\nTinned Fish\nTinned Meat\nTinned Rice Pudding\nTinned Fruit",
"excess": "Pasta",
"self": "https://www.givefood.org.uk/api/2/need/9b1b3d3d/"
},
{
"id": "e6bbe3cb",
"found": "2025-01-08T14:41:44.093",
"foodbank": {
"name": "Ammanford",
"slug": "ammanford",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/ammanford/",
"html": "https://www.givefood.org.uk/needs/at/ammanford/"
}
},
"needs": "Tinned Tomatoes\nPorridge Oats\nTinned Carrots\nUHT Milk\nTinned Fruit\nSpaghetti Hoops\nTinned & Instant Soup\nCustard (Powder/Tinned)",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/e6bbe3cb/"
},
{
"id": "7c68c247",
"found": "2025-01-08T14:34:58.399",
"foodbank": {
"name": "Newcastle (Staffs)",
"slug": "newcastle-staffs",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/newcastle-staffs/",
"html": "https://www.givefood.org.uk/needs/at/newcastle-staffs/"
}
},
"needs": "Toilet Roll\nSponge Puddings\nShaving Gel/Soap\nShampoo\nCold Meat\nWashing Up Liquid\nFruit Juice\nPasta Sauce\nToothpaste",
"excess": "Pasta\nBeans",
"self": "https://www.givefood.org.uk/api/2/need/7c68c247/"
},
{
"id": "39ed0765",
"found": "2025-01-08T14:26:19.218",
"foodbank": {
"name": "Highland",
"slug": "highland",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/highland/",
"html": "https://www.givefood.org.uk/needs/at/highland/"
}
},
"needs": "Tins Of Potatoes / Smash\nPackets Of Penne Pasta\nTins Of Mince\nLong Life Juice / Diluting\nOatcakes / Crackers\nShampoo",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/39ed0765/"
},
{
"id": "b2128423",
"found": "2025-01-08T14:19:00.039",
"foodbank": {
"name": "Farnham",
"slug": "farnham",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/farnham/",
"html": "https://www.givefood.org.uk/needs/at/farnham/"
}
},
"needs": "UHT Milk\nTinned Ham\nCorned Beef\nStewing Steak\nHot Dogs\nUHT Juice\nSquash\nToilet Roll",
"excess": "Cereal\nPasta\nBeans",
"self": "https://www.givefood.org.uk/api/2/need/b2128423/"
},
{
"id": "23c600cd",
"found": "2025-01-08T01:20:56.775",
"foodbank": {
"name": "Shoreham",
"slug": "shoreham",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/shoreham/",
"html": "https://www.givefood.org.uk/needs/at/shoreham/"
}
},
"needs": "Small Jars Of Coffee\nJams\nSpreads\nToilet Rolls\nTinned Fruit\nTinned Vegetables",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/23c600cd/"
},
{
"id": "20f68a2d",
"found": "2025-01-08T01:14:00.675",
"foodbank": {
"name": "Arden",
"slug": "arden",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/arden/",
"html": "https://www.givefood.org.uk/needs/at/arden/"
}
},
"needs": "Tinned Fruit\nTinned Cold Meat\nInstant Mashed Potato\nTinned Rice Pudding\nCoffee\nShower Gel\nShampoo\nRoll-On Deodorant",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/20f68a2d/"
},
{
"id": "7a675276",
"found": "2025-01-08T01:09:48.982",
"foodbank": {
"name": "Brecon",
"slug": "brecon",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/brecon/",
"html": "https://www.givefood.org.uk/needs/at/brecon/"
}
},
"needs": "Washing-Up Liquid\nToilet Rolls\nAdult Toothbrushes\nShampoo & Conditioner\nCup-A-Soups\n2-Helping Pasta In Sauce\nTinned Tomatoes\nTinned Peas And Other Tinned Vegetables\nUHT Milk - Semi-Skimmed\nBrown Sauce\nPeanut Butter\nDog Food - Dry & Cans\nCans/Pouches For Small Dogs\nCans/Pouches For Senior Dogs\nWashing Detergent",
"excess": "Non-Dairy Milk Alternatives\nGluten-Free Pasta\nSanitary Towels And Tampons\nSoap",
"self": "https://www.givefood.org.uk/api/2/need/7a675276/"
},
{
"id": "ecab99f5",
"found": "2025-01-08T01:02:41.788",
"foodbank": {
"name": "Caterham",
"slug": "caterham",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/caterham/",
"html": "https://www.givefood.org.uk/needs/at/caterham/"
}
},
"needs": "Tinned Meat\nTinned Fish\nLong Life Milk\nLong Life Fruit Juice\nTinned Vegetables\nSponge Puddings\nCooking Sauces\nKetchup",
"excess": "Formula Baby Milk\nSugar\nFizzy Drinks\nPerishable Food\nBottled Water\nAny Items Containing Alcohol Or Medical Products",
"self": "https://www.givefood.org.uk/api/2/need/ecab99f5/"
},
{
"id": "e079ebea",
"found": "2025-01-07T18:33:25.991",
"foodbank": {
"name": "Leeds South & East",
"slug": "leeds-south-east",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/leeds-south-east/",
"html": "https://www.givefood.org.uk/needs/at/leeds-south-east/"
}
},
"needs": "UHT Milk\nLong Life Juice\nTinned Fruit\nRice Pudding\nSoup",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/e079ebea/"
},
{
"id": "a0aa440e",
"found": "2025-01-07T18:25:43.249",
"foodbank": {
"name": "Farnborough",
"slug": "farnborough",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/farnborough/",
"html": "https://www.givefood.org.uk/needs/at/farnborough/"
}
},
"needs": "Tinned Meats And Pies: Stew, Chili, Meatballs And Chicken In Sauce Etc\nLong Life Fruit Juice (Litre)\nPorridge Sachets\nTinned Sausages And Baked Beans\nInstant Custard / Tinned Custard\nRice Pudding\nMilk (Not Skimmed Milk)\nSponge Puddings (Single Puddings And Multi Packs)\nBiscuits\nTinned Tomatoes",
"excess": "Tinned Soup\nTinned Baked Beans\nTinned Veg (Pulses)\nNappies\nBaby Formula Milk\nSkimmed Milk\nPasta\nChocolate Breakfast Cereals",
"self": "https://www.givefood.org.uk/api/2/need/a0aa440e/"
},
{
"id": "b00415c6",
"found": "2025-01-07T18:25:21.138",
"foodbank": {
"name": "Salford",
"slug": "salford",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/salford/",
"html": "https://www.givefood.org.uk/needs/at/salford/"
}
},
"needs": "Toilet Roll\nLong Life Fruit Juice\nRice Pudding\nCoffee\nCrackers\nRice",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/b00415c6/"
},
{
"id": "cc39fad1",
"found": "2025-01-07T18:09:39.409",
"foodbank": {
"name": "Hackney",
"slug": "hackney",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/hackney/",
"html": "https://www.givefood.org.uk/needs/at/hackney/"
}
},
"needs": "Tinned Meat\nTinned Fish\nTinned Veg\nPulses\nTinned Fruit\nCereal Over 500G\nCustard\nGranulated Sugar",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/cc39fad1/"
},
{
"id": "58980866",
"found": "2025-01-07T17:54:41.620",
"foodbank": {
"name": "Ealing",
"slug": "ealing",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/ealing/",
"html": "https://www.givefood.org.uk/needs/at/ealing/"
}
},
"needs": "UHT Milk - Whole Milk Only\nBreakfast Cereal\nVegetarian Meals - Curry, Chili, Macaroni Cheese, Etc.\nSavoury Biscuits & Snacks\nTinned Meat & Fish\nDrinking Chocolate\nLong Life Fruit Juice & Squash\nTinned Fruit & Vegetables\nPeanut Butter, Jam & Honey\nTable Sauce - Mayo, Chilli Sauce; Ketchup\nSanitary Towels",
"excess": "Pasta",
"self": "https://www.givefood.org.uk/api/2/need/58980866/"
},
{
"id": "05680799",
"found": "2025-01-07T17:52:30.361",
"foodbank": {
"name": "Uttlesford",
"slug": "uttlesford",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/uttlesford/",
"html": "https://www.givefood.org.uk/needs/at/uttlesford/"
}
},
"needs": "Toilet Roll\nRice\nSmall Tins Of Potatoes\nCoffee\nCooking Sauces\nUHT Milk",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/05680799/"
},
{
"id": "94e5607d",
"found": "2025-01-07T17:51:23.884",
"foodbank": {
"name": "Andover",
"slug": "andover",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/andover/",
"html": "https://www.givefood.org.uk/needs/at/andover/"
}
},
"needs": "Tinned Meat\nTinned Vegetables\nRice Pudding\nLong Life Milk\nCoffee\nCleaning Spray\nLaundry Pods\nToiletries\nCleaning Items\nBaby Items\nHousehold Items In Good Condition\nItems For Summer Holiday Bags For Families\nFood From Harvest Festivals\nA Hamper Of Food By Completing 12 Days To Christmas\nA Gift Box For A Child\nChocolate Eggs",
"excess": "Pasta",
"self": "https://www.givefood.org.uk/api/2/need/94e5607d/"
},
{
"id": "0a4fa640",
"found": "2025-01-07T15:59:19.372",
"foodbank": {
"name": "Lambeth South & Croydon",
"slug": "lambeth-south-croydon",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/lambeth-south-croydon/",
"html": "https://www.givefood.org.uk/needs/at/lambeth-south-croydon/"
}
},
"needs": "Tinned Tomatoes\nTinned Soup\nLong-Life Milk - Full Fat (Blue)\nSquash Or Juice\nSoap (Bars Or Liquid)\nTinned Meat - All Varieties\nTinned Fruit\nCereal Bars",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/0a4fa640/"
},
{
"id": "95b73b60",
"found": "2025-01-07T11:39:22.177",
"foodbank": {
"name": "North Norfolk",
"slug": "north-norfolk",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/north-norfolk/",
"html": "https://www.givefood.org.uk/needs/at/north-norfolk/"
}
},
"needs": "UHT Long-Life Milk\nTinned Vegetables\nTinned Meat\nInstant Hot Snacks\nJam + Marmalade\nCrisps\nLaundry Detergent",
"excess": "Baked Beans\nPasta\nTinned Fish\nBiscuits",
"self": "https://www.givefood.org.uk/api/2/need/95b73b60/"
},
{
"id": "b3dd88ae",
"found": "2025-01-07T11:05:40.191",
"foodbank": {
"name": "Sparkhill",
"slug": "sparkhill",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/sparkhill/",
"html": "https://www.givefood.org.uk/needs/at/sparkhill/"
}
},
"needs": "Squash/Cordial\nTinned Fruit\nTinned Vegetables (Peas, Carrots, Etc.)\nPulses (Kidney Beans, Chick Peas, Etc.)\nMeat Soup (Chicken, Oxtail, Etc.)\nTinned Fish\nCoffee\nTinned Tomatoes/Pasta Sauce\nSponge Puddings\nInstant Mash\nToiletries (Soap, Toilet Roll, Shower Gel, Shampoo, Sanitary Towels)",
"excess": "Pasta\nBaked Beans\nVegetable Soup",
"self": "https://www.givefood.org.uk/api/2/need/b3dd88ae/"
},
{
"id": "2b3c92e4",
"found": "2025-01-07T04:38:25.005",
"foodbank": {
"name": "Hart",
"slug": "hart",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/hart/",
"html": "https://www.givefood.org.uk/needs/at/hart/"
}
},
"needs": "Household Cleaning - Bleach, Surface Cleaners Etc.\nDetergent/Washing Powder\nLonglife Milk - Not Skimmed Please\nTinned Fruit\nTinned/Carton/Packet Custard",
"excess": "Pasta\nWater\nFlour\nSugar\nChristmas Items",
"self": "https://www.givefood.org.uk/api/2/need/2b3c92e4/"
},
{
"id": "cb0698a8",
"found": "2025-01-06T22:04:14.418",
"foodbank": {
"name": "Newquay",
"slug": "newquay",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/newquay/",
"html": "https://www.givefood.org.uk/needs/at/newquay/"
}
},
"needs": "UHT Milk\nCereal\nJam And Peanut Butter\nToiletries\nTinned Rice Pudding\nTinned Soup\nTinned Meatballs",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/cb0698a8/"
},
{
"id": "a474dba8",
"found": "2025-01-06T21:52:39.616",
"foodbank": {
"name": "Rutland",
"slug": "rutland",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/rutland/",
"html": "https://www.givefood.org.uk/needs/at/rutland/"