-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathneeds.json
More file actions
1502 lines (1502 loc) · 72.3 KB
/
Copy pathneeds.json
File metadata and controls
1502 lines (1502 loc) · 72.3 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
[
{
"id": "3a22fbbd-5e39-4e64-abbd-d1d5bb2a0176",
"found": "2026-07-16T12:22:25.583",
"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 Meat\nLong-Life Juice\nTinned Vegetables\nTinned Tomatoes\nShower Gel\nKetchup/Brown Sauce\nToiletries\nSavoury Items\nToilet Rolls",
"excess": "Egg Boxes",
"self": "https://www.givefood.org.uk/api/2/need/3a22fbbd-5e39-4e64-abbd-d1d5bb2a0176/"
},
{
"id": "62dfd13e-a54c-4a64-a78b-26ebbf50128a",
"found": "2026-07-16T12:15:16.381",
"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": "Toothpaste\nJam\nMilk\nNoodles\nBiscuits",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/62dfd13e-a54c-4a64-a78b-26ebbf50128a/"
},
{
"id": "e3b72ef0-c5ac-4e67-a26b-7ceca56ed431",
"found": "2026-07-16T11:12:17.691",
"foodbank": {
"name": "Godalming",
"slug": "godalming",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/godalming/",
"html": "https://www.givefood.org.uk/needs/at/godalming/"
}
},
"needs": "Baked Beans\nSquash\nCrackers/Ritz\nLong Life Semi-Skimmed Milk\nPasta Sauces\nTinned Meat\nFruit Juice\nCooking Oil\nPasta Sauces\nSweet Biscuits (Not Custard Creams)\nJam/marmalade/honey/marmite\nBleach\nToilet Cleaner\nCooking Oil\nSugar\nCrackers/Ritz\nTinned Vegetables ( Not Tomatoes)\nTinned Meat",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/e3b72ef0-c5ac-4e67-a26b-7ceca56ed431/"
},
{
"id": "a4463233-291a-4e4b-9acd-8e0ca6419f9b",
"found": "2026-07-16T11:01:56.726",
"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": "Peanut Butter\nSavoury Snacks, Including Cream Crackers And Options For Diary And Gluten Free\nInstant Packets And Pot Noodles\nTinned Pudding, With Or Without Ring Pulls\nTinned Fruit",
"excess": "Free-From Pasta\nTinned Vegetarian Meals\nTinned Beans And Pulses Such As Lentils, Chickpeas And Kidney Beans\nLarge Boxes Of Cereal\nBaked Beans",
"self": "https://www.givefood.org.uk/api/2/need/a4463233-291a-4e4b-9acd-8e0ca6419f9b/"
},
{
"id": "34288a45-b3d2-42c2-a414-456d61d436b7",
"found": "2026-07-15T18:38:08.001",
"foodbank": {
"name": "Bradford North",
"slug": "bradford-north",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/bradford-north/",
"html": "https://www.givefood.org.uk/needs/at/bradford-north/"
}
},
"needs": "Bags For Life\nCooking Sauce In Jars\nInstant Mashed Potato\nLong-Life Juice\nLong-Life Milk\nPasta\nTinned Custard\nTinned Fish\nTinned Fruit\nTinned Tomatoes\nTinned Vegetables\nVegetarian Food Items",
"excess": "Bottled Water (Still)\nNon-Alcoholic Sparkling Drinks\nTea Bags\nTinned Chickpeas\nTinned Meat\nTinned Pulses",
"self": "https://www.givefood.org.uk/api/2/need/34288a45-b3d2-42c2-a414-456d61d436b7/"
},
{
"id": "7a8d5479-aa7f-4358-ba42-de6b63b0d21c",
"found": "2026-07-15T17:54:09.051",
"foodbank": {
"name": "Hunstanton & District",
"slug": "hunstanton-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/hunstanton-district/",
"html": "https://www.givefood.org.uk/needs/at/hunstanton-district/"
}
},
"needs": "Tinned Cold Meat (Ham Etc)\nTinned Vegetables\nTinned Peaches\nReady Made Custard\nSpaghetti Hoops\nFruit Squash\nTinned Rice Pudding\nDeodorant\nShampoo\nNappies (Sizes 6)\nRice In Microwaveable Pouches\nPasta Sauce\nBreakfast Cereals\nBiscuits\nTinned Meatballs, Steak Etc\nTinned Potatoes\nInstant Mashed Potato\nWashing Powder / Liquid\nPasta (500Gr Pack)\nRice (500 Gr Pack)\nTomato Ketchup",
"excess": "Toilet Rolls\nJams\nBaby Food\nTinned Red Kidney Beans\nToothpaste\nInstant Coffee (100Gr Jars)\nBaked Beans\nSoup\nHand Soap\nTeabags (Small Box)\nTinned Fish\nTinned Pulses\nBaby Wipes\nTinned Tomatoes",
"self": "https://www.givefood.org.uk/api/2/need/7a8d5479-aa7f-4358-ba42-de6b63b0d21c/"
},
{
"id": "53eaed21-0ab1-4aca-91e7-5d2b92c48ccb",
"found": "2026-07-15T17:32:24.926",
"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": "Long Life Milk\nFruit Juice\nPorridge\nDetergents/Washing Powder\nMen's Shaving Items\nMen's & Ladies' Deodorants",
"excess": "Pasta\nWater\nSugar\nFlour\nBiscuits\nBagged Sugar",
"self": "https://www.givefood.org.uk/api/2/need/53eaed21-0ab1-4aca-91e7-5d2b92c48ccb/"
},
{
"id": "172c34ed-082a-496a-97dc-c59f7171257a",
"found": "2026-07-15T17:14:06.194",
"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 Rice Pudding\nJam\nTinned Potatoes\nTinned Spaghetti Hoops\nBiscuits\nLaundry Pods/Powder\nDeodorant\nShower Gel",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/172c34ed-082a-496a-97dc-c59f7171257a/"
},
{
"id": "43b14eeb-2384-4a66-ba98-ce536dbfa039",
"found": "2026-07-15T16:36:15.163",
"foodbank": {
"name": "Flintshire",
"slug": "flintshire",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/flintshire/",
"html": "https://www.givefood.org.uk/needs/at/flintshire/"
}
},
"needs": "Tinned Fish\nTinned Peas\nTinned Spaghetti\nTinned Fruit\nTinned/Packet Custard",
"excess": "Pasta\nCereal",
"self": "https://www.givefood.org.uk/api/2/need/43b14eeb-2384-4a66-ba98-ce536dbfa039/"
},
{
"id": "33713564-970a-4102-a056-68a10f91d9f7",
"found": "2026-07-15T13:25:57.706",
"foodbank": {
"name": "Godalming & Villages Community Store",
"slug": "godalming-villages-community-store",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/godalming-villages-community-store/",
"html": "https://www.givefood.org.uk/needs/at/godalming-villages-community-store/"
}
},
"needs": "UHT Semi Skimmed Milk\nUHT Whole Milk\nRegular Instant Coffee\nInstant Noodles \u2013 All Types\nBleach\nShower Gel\nToilet Rolls\nHoney\nPacket Sauces (especially Stir Fry)\nRazors",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/33713564-970a-4102-a056-68a10f91d9f7/"
},
{
"id": "0533e309-0e6e-45a6-9b6a-27d7d7b6261b",
"found": "2026-07-15T13:17:53.314",
"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": "UHT Milk (Full Fat Or Semi Skimmed)\nTinned Potatoes/Instant Mash\nDiluting Juice\nBiscuits\nTinned Meat\nMacaroni Cheese\nBeans And Sausage\nTinned Fruit\nRice Oudding\nTinned Soup\nTinned Tomatoes\nDeodorant\nShampoo",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/0533e309-0e6e-45a6-9b6a-27d7d7b6261b/"
},
{
"id": "e47c1f89-64d0-4d6b-b599-b99e5201f98e",
"found": "2026-07-15T13:09:43.870",
"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": "Biscuits\nLong Life Milk\nTinned Meat Meals\nTinned Fruit\nIce Pops (Unfrozen)\nCrisps\nChocolate",
"excess": "Tinned Fish\nBaked Beans",
"self": "https://www.givefood.org.uk/api/2/need/e47c1f89-64d0-4d6b-b599-b99e5201f98e/"
},
{
"id": "a0643ef2-0626-423a-a674-87818efaa75e",
"found": "2026-07-15T11:22:44.031",
"foodbank": {
"name": "Meon Valley",
"slug": "meon-valley",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/meon-valley/",
"html": "https://www.givefood.org.uk/needs/at/meon-valley/"
}
},
"needs": "Breakfast Cereal\nBiscuits\nTinned Tuna\nTinned Fruit\nTinned Vegetables\nTinned Meat Meals\nWashing Tablets (Non-Bio)\nSmall (500G) Bags Of Sugar",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/a0643ef2-0626-423a-a674-87818efaa75e/"
},
{
"id": "0d17c4c1-0967-47a5-978e-e32c48133ecd",
"found": "2026-07-15T11:10:40.761",
"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 Spaghetti\nRice Pudding\nTinned Fruit\nCuppa Soup\nShampoo\nLaundry Powder/Capsules\nCustard\nCream Crackers\nGood Strong Carrier Bags",
"excess": "Baked Beans\nPasta\nSoup",
"self": "https://www.givefood.org.uk/api/2/need/0d17c4c1-0967-47a5-978e-e32c48133ecd/"
},
{
"id": "27f24d2a-238e-4da6-abb8-674de85f05bd",
"found": "2026-07-14T19:10:34.200",
"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": "Tinned Meat\nTinned Tomatoes\nTinned Spaghetti\nCustard/Rice Pudding\nUHT Milk\nInstant Coffee\nJam/Spreads\nBiscuits\nClean Strong Shopping Bags",
"excess": "Tea Bags\nPasta\nSoap",
"self": "https://www.givefood.org.uk/api/2/need/27f24d2a-238e-4da6-abb8-674de85f05bd/"
},
{
"id": "34cba4f9-7246-4bd8-a8a8-8c4f33764da4",
"found": "2026-07-14T18:55:13.959",
"foodbank": {
"name": "Yeovil",
"slug": "yeovil",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/yeovil/",
"html": "https://www.givefood.org.uk/needs/at/yeovil/"
}
},
"needs": "Tins Of Macaroni Cheese\nTins Of Chilli\nTins Of Ravioli\nTins Of Sweetcorn\nTins Of Peas\nShower Gel\nShampoo",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/34cba4f9-7246-4bd8-a8a8-8c4f33764da4/"
},
{
"id": "644bd915-5093-4566-a386-8f868ee8c1ee",
"found": "2026-07-14T18:19:50.213",
"foodbank": {
"name": "Rugeley",
"slug": "rugeley",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/rugeley/",
"html": "https://www.givefood.org.uk/needs/at/rugeley/"
}
},
"needs": "Adult Toothbrushes\nJam\nBiscuits\nInstant Mash\nDeodorant\nLoo Rolls",
"excess": "Baked Beans\nSoup\nPasta\nRice Pudding",
"self": "https://www.givefood.org.uk/api/2/need/644bd915-5093-4566-a386-8f868ee8c1ee/"
},
{
"id": "7c6e54ce-553d-45e1-813a-65dc88ae3710",
"found": "2026-07-14T17:22:43.174",
"foodbank": {
"name": "Hunstanton & District",
"slug": "hunstanton-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/hunstanton-district/",
"html": "https://www.givefood.org.uk/needs/at/hunstanton-district/"
}
},
"needs": "Tinned Cold Meat (Ham Etc)\nTinned Vegetables\nTinned Peaches\nReady Made Custard\nSpaghetti Hoops\nFruit Squash\nTinned Rice Pudding\nDeodorant\nShampoo\nNappies (Sizes 6)\nRice In Microwaveable Pouches\nPasta Sauce\nBreakfast Cereals\nBiscuits\nTinned Meatballs, Steak Etc\nTinned Potatoes\nInstant Mashed Potato\nWashing Powder / Liquid\nPasta (500Gr Pack)\nRice (500 Gr Pack)\nTomato Ketchup\nToilet Rolls",
"excess": "Jams\nBaby Food\nTinned Red Kidney Beans\nToothpaste\nInstant Coffee (100Gr Jars)\nBaked Beans\nSoup\nHand Soap\nTeabags (Small Box)\nTinned Fish\nTinned Pulses\nBaby Wipes\nTinned Tomatoes",
"self": "https://www.givefood.org.uk/api/2/need/7c6e54ce-553d-45e1-813a-65dc88ae3710/"
},
{
"id": "f3ff1e08-36ba-4220-94c8-dda98569c77a",
"found": "2026-07-14T16:39:50.764",
"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 Corned Beef / Pork\nRice Pudding\nBreakfast Bars\nTinned Fruit\nSmall Pasta Sauce 440 g or less\nDeodorant Male / Female\nTinned Tomatoes\nBiscuits\nWashing Up Liquid\nReady To Eat Porridge Pots\nSweets",
"excess": "Laundry Pods\nNappies Other Than Size 5 And 6\nBaby Formula Milk\nSkimmed Milk\nChocolate Breakfast Cereals",
"self": "https://www.givefood.org.uk/api/2/need/f3ff1e08-36ba-4220-94c8-dda98569c77a/"
},
{
"id": "c793ff6b-0e4c-46da-aef6-f75319d31bf4",
"found": "2026-07-14T13:42:59.390",
"foodbank": {
"name": "Redbridge",
"slug": "redbridge",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/redbridge/",
"html": "https://www.givefood.org.uk/needs/at/redbridge/"
}
},
"needs": "Tinned Fish\nTinned Fruit\nCooking Sauce\nBiscuits\nLong Life Milk\nDeodorant\nShampoo\nWashing Powder",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/c793ff6b-0e4c-46da-aef6-f75319d31bf4/"
},
{
"id": "a747df02-38ab-4fe7-a1cb-d0e005c2ac0a",
"found": "2026-07-14T13:37:10.644",
"foodbank": {
"name": "Hertford, Ware & District",
"slug": "hertford-ware-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/hertford-ware-district/",
"html": "https://www.givefood.org.uk/needs/at/hertford-ware-district/"
}
},
"needs": "Tinned Meat\nSmall Coffee Jars (100g)\nTinned Rice Pudding/Custard\nTinned Vegetables\nLong Life Fruit Juice\nTinned Potato/Instant Mash\nTinned Fruit\nTinned Spaghetti\nCoffee (100g jars)\nJars of Curry Cooking Sauces\nShower Gel\nSoap (individual bars)",
"excess": "Sanitary Wear\nTinned Soup",
"self": "https://www.givefood.org.uk/api/2/need/a747df02-38ab-4fe7-a1cb-d0e005c2ac0a/"
},
{
"id": "b71df549-f901-4eee-b357-51583afa1490",
"found": "2026-07-14T13:23:14.954",
"foodbank": {
"name": "Horsham District",
"slug": "horsham-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/horsham-district/",
"html": "https://www.givefood.org.uk/needs/at/horsham-district/"
}
},
"needs": "Rice Pudding\nTinned Tomatoes\nTinned Potatoes\nTinned Meat\nSoup\nCoffee\nBiscuits And Sweet Treats",
"excess": "Pasta\nCereal\nTea",
"self": "https://www.givefood.org.uk/api/2/need/b71df549-f901-4eee-b357-51583afa1490/"
},
{
"id": "e8b1c8f0-e3d8-4061-b241-e450198f3c0b",
"found": "2026-07-14T11:33:54.459",
"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": "Adult Toothpaste\nBaby Toiletries\nCleaning Spray\nCrackers\nGravy Granules\nLong-Life Juice\nLong-Life Milk\nNoodles\nPasta Sauce\nRice\nRice Sachets (Microwavable)\nSavoury Snacks\nSponge Puddings\nTinned Custard\nToilet Roll\nToothbrushes",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/e8b1c8f0-e3d8-4061-b241-e450198f3c0b/"
},
{
"id": "dc48191b-132f-477d-ba32-f8fde6feb752",
"found": "2026-07-13T18:55:36.452",
"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": "Adult Toothpaste\nBaby Toiletries\nCleaning Spray\nCrackers\nGravy Granules\nLong-Life Juice\nLong-Life Milk\nNoodles\nRice\nRice Sachets (Microwavable)\nSavoury Snacks\nSponge Puddings\nTinned Custard\nToilet Roll\nToothbrushes",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/dc48191b-132f-477d-ba32-f8fde6feb752/"
},
{
"id": "4179bc9a-954b-4ade-815b-34a3a3e77b0d",
"found": "2026-07-13T18:33:48.919",
"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": "UHT Milk\nTinned Meat\nJam\nTinned Fruit\nCustard & Rice Pudding\nTinned Fish\nTinned Vegetables\nPasta Sauce\nCoffee\nToiletries: Shower Gel, Toothpaste, Soap",
"excess": "Dry Pasta\nBaked Beans\nCereal\nTinned Potatoes\nTinned Tomatoes",
"self": "https://www.givefood.org.uk/api/2/need/4179bc9a-954b-4ade-815b-34a3a3e77b0d/"
},
{
"id": "36ed595f-a17d-48dc-9265-aeb8509e52bc",
"found": "2026-07-13T18:19:01.927",
"foodbank": {
"name": "Witney & West Oxfordshire",
"slug": "witney-west-oxfordshire",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/witney-west-oxfordshire/",
"html": "https://www.givefood.org.uk/needs/at/witney-west-oxfordshire/"
}
},
"needs": "Crackers\nRice Sachets\nTinned Spaghetti\nPorridge Oats\nTinned Meat\nTinned Potatoes\nNappies Size 4-7",
"excess": "Pasta\nBaked Beans",
"self": "https://www.givefood.org.uk/api/2/need/36ed595f-a17d-48dc-9265-aeb8509e52bc/"
},
{
"id": "0b989280-5a08-4d7b-8b1e-723a6bf165ce",
"found": "2026-07-13T18:06:35.975",
"foodbank": {
"name": "County Durham",
"slug": "county-durham",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/county-durham/",
"html": "https://www.givefood.org.uk/needs/at/county-durham/"
}
},
"needs": "Long Life Fruit Juice\nTinned Fruit\nRice Pudding\nCoffee\nTinned Tomatoes",
"excess": "Pasta\nTinned Vegetables\nMeat\nBaked Beans\nTinned Fish\nToilet Rolls",
"self": "https://www.givefood.org.uk/api/2/need/0b989280-5a08-4d7b-8b1e-723a6bf165ce/"
},
{
"id": "21185bb7-a268-4f02-9d07-327e880d1121",
"found": "2026-07-13T13:56:37.499",
"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 Fruit\nDeodorant\nSize 7 Nappies\nBaked Beans Or Tinned Spaghetti\nBiscuits\nBreakfast Cereal\nClothes Washing Tablets\nCoffee, Teabags, Herbal Tea\nCurry Sauce Or Pasta Sauce\nJam, Honey Or Chocolate Spread\nLong Life Juice\nRice Or Pasta\nSnacks\nSugar\nTinned Beans, Pulses Or Lentils\nTinned Fish\nTinned Fruit\nTinned Meat\nTinned Rice Pudding Or Custard\nTinned Soup\nTinned Vegetables\nToilet Roll\nUHT Milk\nWashing-Up Liquid\nDeodorant\nDisposable Razors\nHand Soap\nSanitary Pads\nShampoo & Conditioner\nShower Gel\nToothbrushes\nToothpaste\nNappies (Sizes 4,5 & 6)\nBaby Wipes\nBaby Food (Jars)\nCat Food\nDog Food",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/21185bb7-a268-4f02-9d07-327e880d1121/"
},
{
"id": "3e574dc3-4e7a-4808-b740-078987c595a4",
"found": "2026-07-13T13:18:10.417",
"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": "Pasta/Spaghetti\nHot Meats (Tinned/Jars - Meatballs, Hotdogs)\nTinned Fruit and Veg\nRice 500g\nPasta Sauce (Jar)\nToiletries and Toilet Rolls\nClean, Strong Carrier Bags and Bags for Life",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/3e574dc3-4e7a-4808-b740-078987c595a4/"
},
{
"id": "37282690-3d60-4d2d-8945-63c4013ab257",
"found": "2026-07-13T13:12:41.147",
"foodbank": {
"name": "Sunderland",
"slug": "sunderland",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/sunderland/",
"html": "https://www.givefood.org.uk/needs/at/sunderland/"
}
},
"needs": "Long Life Fruit Juice\nTinned Fruit\nRice Pudding\nCoffee\nTinned Tomatoes",
"excess": "Pasta\nTinned Vegetables\nMeat\nBaked Beans\nTinned Fish\nToilet Rolls",
"self": "https://www.givefood.org.uk/api/2/need/37282690-3d60-4d2d-8945-63c4013ab257/"
},
{
"id": "95fbe356-cb47-41b1-8cb5-7fd4d918e197",
"found": "2026-07-13T12:53:43.555",
"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": "Jam\nMilk\nTinned Meat\nPasta Sauce\nTinned Vegetables\nTinned Meat / Fish\nTinned Potatoes/ Veg\nTinned Tomatoes\nInstant Coffee\nCuppa Soups\nInstant Noodles\nUHT Fruit Juice/Milk\nInstant Pasta (Pasta And Sauce)\nPasta In Sauce\nTinned Custard\nTinned Fruit\nBiscuits And Small Treats\nJams And Spreads\nCoffee\nToiletries",
"excess": "Pasta\nCereal",
"self": "https://www.givefood.org.uk/api/2/need/95fbe356-cb47-41b1-8cb5-7fd4d918e197/"
},
{
"id": "120c82cd-324f-4f11-8c05-7c580018d191",
"found": "2026-07-13T12:52:45.074",
"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": "Tinned Meat\nTinned Fish\nTinned Fruit\nTinned Spaghetti Hoops, Etc\nMicrowave Rice\nJam\nShampoo & Shower Gel\nWashing Up Liquid",
"excess": "Size 1 Nappies\nSoap",
"self": "https://www.givefood.org.uk/api/2/need/120c82cd-324f-4f11-8c05-7c580018d191/"
},
{
"id": "f1db84aa-47fd-4529-ad7f-2a0405f52bc2",
"found": "2026-07-13T12:30:30.458",
"foodbank": {
"name": "Long Eaton & Sawley",
"slug": "long-eaton-sawley",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/long-eaton-sawley/",
"html": "https://www.givefood.org.uk/needs/at/long-eaton-sawley/"
}
},
"needs": "Jam\nTinned Fruit\nRice Pudding\nToilet Roll\nSavoury Snacks\nTinned Vegetables\nShampoo\nLadies Deodorant\nTinned Fish\nSoup\nWashing Powder\nSquash\nTreats\nCustard\nTinned Meat\nCoffee\nBiscuits\nToiletries\nPasta Sauce\nBeans\nTinned Tomatoes\nRice\nTinned Potatoes\nUHT Juice\nInstant Mash\nSponge Puddings\nUHT Milk\nKetchup/ Mayonnaise\nTea",
"excess": "Pasta",
"self": "https://www.givefood.org.uk/api/2/need/f1db84aa-47fd-4529-ad7f-2a0405f52bc2/"
},
{
"id": "d2d27f1c-f5f5-4fd5-af27-9d1d40e9d48c",
"found": "2026-07-13T12:27:46.947",
"foodbank": {
"name": "Basingstoke",
"slug": "basingstoke",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/basingstoke/",
"html": "https://www.givefood.org.uk/needs/at/basingstoke/"
}
},
"needs": "Long-Life Juice\nLong-Life Milk\nPeanut Butter\nShower Gel\nTinned Fruit\nTinned Vegetables\nToilet Roll",
"excess": "Baked Beans\nCereal\nHand Soap\nNappies - Size 0\nNappies - Size 1\nNappies - Size 2\nNappies - Size 3\nNappies - Size 4\nPasta\nRice\nSanitary Towels\nTinned Pulses",
"self": "https://www.givefood.org.uk/api/2/need/d2d27f1c-f5f5-4fd5-af27-9d1d40e9d48c/"
},
{
"id": "f4fec1f6-abaa-46d9-b679-92415a295c2d",
"found": "2026-07-13T12:04:47.555",
"foodbank": {
"name": "Malmesbury & District",
"slug": "malmesbury-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/malmesbury-district/",
"html": "https://www.givefood.org.uk/needs/at/malmesbury-district/"
}
},
"needs": "Tinned Vegetables\nUHT Fruit Juice\nUHT Milk\nTinned Fruit\nChocolates/Sweets\nSpray Deodorants\nWashing Detergent",
"excess": "Pulses\nBaked Beans\nSoup\nDog Food\nJam\nNon Dairy Milk",
"self": "https://www.givefood.org.uk/api/2/need/f4fec1f6-abaa-46d9-b679-92415a295c2d/"
},
{
"id": "067f5ecd-1dc9-4d11-a93d-dab80891491e",
"found": "2026-07-13T11:06:38.781",
"foodbank": {
"name": "Cardiff",
"slug": "cardiff",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/cardiff/",
"html": "https://www.givefood.org.uk/needs/at/cardiff/"
}
},
"needs": "Chocolate\nCoffee\nDeodorant\nJam\nShampoo\nSponge Puddings\nSweets\nTinned Fruit\nToilet Roll\nTomato Sauce\nToothbrushes\nWashing Powder",
"excess": "Nappies\nPasta",
"self": "https://www.givefood.org.uk/api/2/need/067f5ecd-1dc9-4d11-a93d-dab80891491e/"
},
{
"id": "935d3d2f-7566-41b8-8139-19797acdaa23",
"found": "2026-07-12T18:46:21.299",
"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": "Tinned Fruit\nTinned Vegetables\nInstant Mash\nRice Pudding\nTinned Tomatoes\nBars Of Soap\nToothpaste",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/935d3d2f-7566-41b8-8139-19797acdaa23/"
},
{
"id": "32803da2-11c6-41bc-a1b9-3116bf343f16",
"found": "2026-07-12T17:52:56.644",
"foodbank": {
"name": "Bradford Central",
"slug": "bradford-central",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/bradford-central/",
"html": "https://www.givefood.org.uk/needs/at/bradford-central/"
}
},
"needs": "Cereal\nSoup\nBeans Or Spaghetti\nTomatoes Or Pasta Sauce\nVegetables\nMeat\nPudding (Rice, Sponge, Custard) Or Fruit\nBiscuits\nPasta\nTea Or Coffee\nLong-Life Juice\nMilk UHT\nSnacks\nJam\nPacket Pasta / Noodles / Instant Mash\nVeg Meals\nVegetable Oil\nRice\nPulses\nLentils\nChapati Flour/Naan\nCumin/Coriander/Chilli Powder\nPopadoms\nUHT Milk\nTinned Tomatoes\nInstant Noodles\nRice Pudding\nTea / Coffee\nSanitary Towels\nShower Gel",
"excess": "Fish",
"self": "https://www.givefood.org.uk/api/2/need/32803da2-11c6-41bc-a1b9-3116bf343f16/"
},
{
"id": "a1f0c80a-7428-4461-ae66-01762dac8658",
"found": "2026-07-12T17:09:06.342",
"foodbank": {
"name": "Lichfield",
"slug": "lichfield",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/lichfield/",
"html": "https://www.givefood.org.uk/needs/at/lichfield/"
}
},
"needs": "Biscuits\nJam/Peanut Butter/Honey\nTinned Custard\nTinned Fruit\nTinned Tomatoes\nUHT Milk\nPasta Sauce\nTinned Vegetables\nTinned Corned Beef/Ham\nToiletries - Shower Gel, Shampoo/Conditioner\nWashing Up Liquid And Washing Powder/Tablet/Gel\nHandwash & Toilet Paper\nPet Food (Cats/Dogs)",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/a1f0c80a-7428-4461-ae66-01762dac8658/"
},
{
"id": "376e08d2-c5e2-412f-bcb1-373b9cee0f6c",
"found": "2026-07-12T13:22:48.998",
"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": "All Tinned Vegetables\nUHT Fruit Juice\nUHT Milk\nToilet Rolls\nBiscuits",
"excess": "Pulses",
"self": "https://www.givefood.org.uk/api/2/need/376e08d2-c5e2-412f-bcb1-373b9cee0f6c/"
},
{
"id": "816112be-3f74-4b96-b87b-47af4396a725",
"found": "2026-07-12T13:18:53.267",
"foodbank": {
"name": "Bromley Borough",
"slug": "bromley-borough",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/bromley-borough/",
"html": "https://www.givefood.org.uk/needs/at/bromley-borough/"
}
},
"needs": "Tinned Potatoes\nLong Life Desserts\nUHT Milk\nJam\nSweets/Chocolate\nToilet Roll\nMen's Deodorant\nShaving Foam/Gel\nMulti Surface Spary/Wipes\nHand Soap",
"excess": "Cereals\nPasta\nRice",
"self": "https://www.givefood.org.uk/api/2/need/816112be-3f74-4b96-b87b-47af4396a725/"
},
{
"id": "49b738ea-d2d7-4e8e-9c2a-cf8dba2ea5ed",
"found": "2026-07-11T19:39:09.427",
"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": "Long Life Milk\nTinned Fruit\nTinned Meat\nBreakfast Cereals\nSmall Jars Of Coffee\nTinned Fish\nTinned Spaghetti\nJars Of Pasta Sauce/cooking Sauce\nIltr Cartons Of Long Life Fruit Juice\nRoll On Deodorant\nBars Of Soap\nToilet Roll\nShower Gel",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/49b738ea-d2d7-4e8e-9c2a-cf8dba2ea5ed/"
},
{
"id": "57249da6-e163-4b84-abb2-13fc238196c4",
"found": "2026-07-11T14:04:58.629",
"foodbank": {
"name": "Jubilee Storehouse",
"slug": "jubilee-storehouse",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/jubilee-storehouse/",
"html": "https://www.givefood.org.uk/needs/at/jubilee-storehouse/"
}
},
"needs": "Vegetarian or Vegan Options\nPorridge Oats\nShampoo\nToothpaste",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/57249da6-e163-4b84-abb2-13fc238196c4/"
},
{
"id": "e00b38a1-55fe-45d6-9e6c-f0415d5e7805",
"found": "2026-07-11T11:55:54.306",
"foodbank": {
"name": "North Bristol & South Gloucestershire",
"slug": "north-bristol-south-gloucestershire",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/north-bristol-south-gloucestershire/",
"html": "https://www.givefood.org.uk/needs/at/north-bristol-south-gloucestershire/"
}
},
"needs": "Tinned Fruit\nDesserts\nFruit Juices And Squashes\nCereals\nUHT Milk\nTinned Tomatoes And Cooking Sauces\nLaundry Detergent (Small Boxes)\nWashing Up Liquid",
"excess": "Anything Containing Alcohol\nChilled Or Frozen Food\nFizzy Drinks\nInfant Formula Milk Or Powder\nFood That\u2019s Out Of Date, Opened, Or Unpackaged",
"self": "https://www.givefood.org.uk/api/2/need/e00b38a1-55fe-45d6-9e6c-f0415d5e7805/"
},
{
"id": "9c57e287-01ef-4437-bfe0-3ae11c0b8afc",
"found": "2026-07-10T17:17:50.133",
"foodbank": {
"name": "Gloucester",
"slug": "gloucester",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/gloucester/",
"html": "https://www.givefood.org.uk/needs/at/gloucester/"
}
},
"needs": "Adult Toothpaste\nBiscuits\nCoffee\nDeodorant\nInstant Mashed Potato\nLong-Life Juice\nLong-Life Milk\nNappies - Size 4\nNappies - Size 5\nNappies - Size 6\nNappies - Size 7\nNappies - Size 8\nShampoo\nShaving Foam/Gel\nSquash (Small)\nTea Bags\nTinned Custard\nTinned Fruit\nTinned Hot Dogs\nTinned Meatballs\nTinned Potatoes\nTinned Rice Pudding\nTinned Soup\nTinned Spaghetti\nTinned Tomatoes",
"excess": "Baked Beans\nCereal\nCup-A-Soup\nNoodles\nPasta\nPasta Sauce\nPorridge Oats\nRice\nTinned Chickpeas\nTinned Fish\nTinned Macaroni Cheese\nTinned Vegetables",
"self": "https://www.givefood.org.uk/api/2/need/9c57e287-01ef-4437-bfe0-3ae11c0b8afc/"
},
{
"id": "d3431fba-38f1-4833-9886-d8a87707f533",
"found": "2026-07-10T14:23:18.044",
"foodbank": {
"name": "Manna",
"slug": "manna",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/manna/",
"html": "https://www.givefood.org.uk/needs/at/manna/"
}
},
"needs": "Mug Shots Sachets (Or Similar)\nCrackers\nTinned Mixed Bean Salad, Butter Beans Etc (We Have Good Stocks Of Kidney Beans)\nBoxes Of Porridge Sachets\nCrisps\nTinned Pineapple - Small Size 227gms\nTinned Rice Pudding\nTinned Green Beans/Mixed Vegetables/Large Sweetcorn\nJars Of Pasta Sauce\nLong Life Cartons Of Juice Full Size\nTinned Cold Meat\nBars Of Soap\nToothpaste\nBaby Wipes\nLaundry Pods",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/d3431fba-38f1-4833-9886-d8a87707f533/"
},
{
"id": "087de27a-a428-448d-9736-93087dd6329a",
"found": "2026-07-10T12:29:32.113",
"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": "Cooking Oil\nSemi Skimmed Long Life Milk\nShampoo\nLong Life Fruit Juice\nWashing Up Liquid\nDeodorant F & M\nChildren's Chocolate Bars\nToilet Gel & Liquid\nInstant Mashed Potato\nBaby Food\nTinned Meat Meals & Chicken Meat Meals\nTinned Carrots, Sweetcorn, Mixed Vegetables\nScouring Pads, Cleaning Cloths & Sponges\nTinned Chick Peas\nChocolate Spread\nToilet Rolls\nSmall Cartons Laundry Detergent Non Bio\nMulti Pack Snack Bars\nLong Life Sponge Puddings\nHair Conditioner\nCorned Beef\nHot Chocolate\nPeanut Butter\nTinned Salmon",
"excess": "Tea Bags\nSoup\nPorridge\nTinned Pulses\nCereal\nDry Pasta & Spaghetti\nBaked Beans",
"self": "https://www.givefood.org.uk/api/2/need/087de27a-a428-448d-9736-93087dd6329a/"
},
{
"id": "5a31881f-4d6d-434e-9949-dd84c91cc547",
"found": "2026-07-10T11:06:15.925",
"foodbank": {
"name": "North Bristol & South Gloucestershire",
"slug": "north-bristol-south-gloucestershire",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/north-bristol-south-gloucestershire/",
"html": "https://www.givefood.org.uk/needs/at/north-bristol-south-gloucestershire/"
}
},
"needs": "Desserts\nSoft Drinks\nDeodorant\nWashing Powder (Small Boxes)\nWashing Up Liquid\nTinned Fruit\nBars Of Soap\nCat Food",
"excess": "Anything Containing Alcohol\nChilled Or Frozen Food\nFizzy Drinks\nInfant Formula Milk Or Powder\nFood That\u2019s Out Of Date, Opened, Or Unpackaged",
"self": "https://www.givefood.org.uk/api/2/need/5a31881f-4d6d-434e-9949-dd84c91cc547/"
},
{
"id": "ec76ba84-1312-4f72-9ca9-00c4d816a99d",
"found": "2026-07-09T18:00:03.637",
"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 Fish\nTinned Meat\nLong-Life Juice\nTinned Vegetables\nTinned Tomatoes\nTea\nShampoo\nShower Gel\nKetchup/Brown Sauce\nToiletries\nSize 5 Nappies\nToilet Rolls",
"excess": "Egg Boxes",
"self": "https://www.givefood.org.uk/api/2/need/ec76ba84-1312-4f72-9ca9-00c4d816a99d/"
},
{
"id": "686a85ab-c1bd-402f-8ba4-cc04459a8e47",
"found": "2026-07-09T13:50:03.513",
"foodbank": {
"name": "Dundonald",
"slug": "dundonald",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/dundonald/",
"html": "https://www.givefood.org.uk/needs/at/dundonald/"
}
},
"needs": "Long Life Milk (Whole & Semi Skimmed)\nTinned Fruit\nTinned Custard / Rice\nTinned Vegetables\nPasta 'n' Sauce\nSweets\nSmall Box Of Washing Powder\nKitchen Roll\nWashing Up Liquid\nBleach\nDeodorant (Men's & Women's)",
"excess": "Tinned Beans\nTinned Soup\nAll Sized Bags Of Pasta\nTinned Ham",
"self": "https://www.givefood.org.uk/api/2/need/686a85ab-c1bd-402f-8ba4-cc04459a8e47/"
},
{
"id": "ab49519f-c5b6-4448-8acc-747f97b52a04",
"found": "2026-07-09T13:07:04.020",
"foodbank": {
"name": "Bexhill",
"slug": "bexhill",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/bexhill/",
"html": "https://www.givefood.org.uk/needs/at/bexhill/"
}
},
"needs": "Biscuits\nCat Food\nChocolate\nCold Tinned Meat\nCup-A-Soup\nDog Food\nHoney\nHot Chocolate\nHousehold Cleaner\nInstant Coffee\nInstant Mashed Potato\nLong-Life Juice\nLong-Life Milk\nMayonnaise\nMen's Deodorant\nMultipack Crisps/ Snacks\nNappies - Size 7\nNoodles\nPasta Sauce\nPeanut Butter\nShampoo\nSquash\nSugar\nTinned Beans\nTinned Custard\nTinned Fruit\nTinned Ham\nTinned Hot Dogs\nTinned Meat\nTinned Rice Pudding\nTinned Spaghetti\nTinned Sweetcorn\nTinned Tomatoes\nTinned Tuna\nTinned Vegetables\nWashing Up Liquid\nWomen's Deodorant",
"excess": "Bottled Water (Still)\nCereal\nPasta",
"self": "https://www.givefood.org.uk/api/2/need/ab49519f-c5b6-4448-8acc-747f97b52a04/"
},
{
"id": "4fc20823-e262-42b6-aedb-33b99ea5c6d7",
"found": "2026-07-09T12:57:47.619",
"foodbank": {
"name": "Crawley",
"slug": "crawley",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/crawley/",
"html": "https://www.givefood.org.uk/needs/at/crawley/"
}
},
"needs": "Small Bottles Of Water\nShampoo And Shower Gel\nSleeping Bags",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/4fc20823-e262-42b6-aedb-33b99ea5c6d7/"
},
{
"id": "65b3d5dc-022e-48e1-9f98-800d6a5aa321",
"found": "2026-07-09T11:42:45.306",
"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": "Bags For Life\nBaked Beans\nLong-Life Milk\nNappies - Size 5\nNappies - Size 6\nNappies - Size 7\nNappies - Size 8\nPasta\nPasta Sauce\nRice\nTinned Fruit\nWashing Up Liquid",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/65b3d5dc-022e-48e1-9f98-800d6a5aa321/"
},
{
"id": "94c80513-7570-4e1c-8330-6e57bbe84caf",
"found": "2026-07-09T11:20:37.663",
"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": "UHT Milk\nJam/Spread\nNoodles\nToothpaste\nMicrowave Rice",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/94c80513-7570-4e1c-8330-6e57bbe84caf/"
},
{
"id": "8bda9fa2-ed11-4f7c-927a-21c0c55257e2",
"found": "2026-07-08T18:21:37.517",
"foodbank": {
"name": "Wokingham",
"slug": "wokingham",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/wokingham/",
"html": "https://www.givefood.org.uk/needs/at/wokingham/"
}
},
"needs": "Chocolate\nConditioner\nDiluting Juice\nMultipack Crisps/ Snacks\nPreserves\nSavoury Snacks\nShaving Foam/Gel\nSnacks (E.g. Crisps, Cereal Bars, Etc)\nSquash\nTinned Chicken\nTinned Corned Beef\nTinned Curry\nTinned Custard\nTinned Macaroni Cheese\nTinned Meat\nTinned Meatballs\nTinned Ravioli\nTinned Soup\nWashing Powder\nWashing Up Liquid",
"excess": "Cat Food\nDog Food\nNappies",
"self": "https://www.givefood.org.uk/api/2/need/8bda9fa2-ed11-4f7c-927a-21c0c55257e2/"
},
{
"id": "0a4de4e0-7f61-4269-8b1d-5486506cab95",
"found": "2026-07-08T14:03:01.303",
"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": "UHT Milk - Full Fat/blue\nJars Of Pasta Sauce\nTinned Fruit\nMen's Toiletries\nJuice\nRice Pudding\nCustard\nJam\nSoup\nBiscuits\nShower Gel\nToothpaste\nAnti-bacterial Wipes/spray/bleach",
"excess": "Baked Beans\nWashing Powder/pods\nLoo Roll",
"self": "https://www.givefood.org.uk/api/2/need/0a4de4e0-7f61-4269-8b1d-5486506cab95/"
},
{
"id": "75fc7dc4-1875-4fe5-b93b-43d50a8c6e3e",
"found": "2026-07-08T13:35:04.480",
"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": "Jellies & Desserts\nCoffee\nSponge Puddings\nShampoo & Conditioner\nShower Gel\nKitchen Rolls",
"excess": "Pasta\nWater\nSugar\nFlour\nBiscuits\nBagged Sugar",
"self": "https://www.givefood.org.uk/api/2/need/75fc7dc4-1875-4fe5-b93b-43d50a8c6e3e/"
},
{
"id": "58a9795e-2b43-4bd5-81bf-a3d392671907",
"found": "2026-07-08T13:25:18.743",
"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": "Cuppa Soup\nTinned Carrots\nTinned Meat\nTinned Fruit\nUHT Milk\nCream Crackers\nShampoo\nShower Gel\nGood Strong Carrier Bags",
"excess": "Baked Beans\nPasta\nSoup",
"self": "https://www.givefood.org.uk/api/2/need/58a9795e-2b43-4bd5-81bf-a3d392671907/"
},
{
"id": "74a26868-6029-4a57-aa7d-c1e7cc6b3401",
"found": "2026-07-08T12:42:41.840",
"foodbank": {
"name": "Coventry",
"slug": "coventry",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/coventry/",
"html": "https://www.givefood.org.uk/needs/at/coventry/"
}
},
"needs": "UHT Long Life Milk\nRice\nInstant Mash Potato\nTinned Vegetables\nCereal\nTinned Tomatoes\nTea Bags\nInstant Coffee\nCooking Sauce\nSoup\nFruit Juice or Squash\nJam\nTinned Fruit\nTinned Meat",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/74a26868-6029-4a57-aa7d-c1e7cc6b3401/"
},
{
"id": "1708ab32-757c-4e9a-8ffa-cee5f57574e2",
"found": "2026-07-08T12:15:38.770",
"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": "Biscuits\nLong Life Milk\nPasta Sauce\nTinned Meat Meals\nTinned Fruit\nIce Pops (Unfrozen)\nCrisps\nChocolate",
"excess": "Tinned Fish\nBaked Beans",
"self": "https://www.givefood.org.uk/api/2/need/1708ab32-757c-4e9a-8ffa-cee5f57574e2/"
},
{
"id": "e4ed990d-ed28-4299-a561-616d4f60eb6c",
"found": "2026-07-08T11:58:54.791",
"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": "UHT Milk (Full Fat Or Semi Skimmed)\nTinned Potatoes/Instant Mash\nDiluting Juice\nSugar\nBiscuits\nMacaroni Cheese\nBeans And Sausage\nTinned Fruit\nTinned Soup\nPasta Or Curry Sauce\nDeodorant\nShampoo\nShaving Items\nToilet Rolls\nSize 5 Nappies",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/e4ed990d-ed28-4299-a561-616d4f60eb6c/"
},
{
"id": "120f2638-4e1d-4d70-ba01-017d6819ba6f",
"found": "2026-07-08T11:44:24.617",
"foodbank": {
"name": "Taff-Ely",
"slug": "taff-ely",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/taff-ely/",
"html": "https://www.givefood.org.uk/needs/at/taff-ely/"
}
},
"needs": "Instant Mashed Potato\nLong-Life Milk\nTinned Fruit\nTinned Meat\nTinned Soup",
"excess": "Baked Beans\nCereal\nPasta",
"self": "https://www.givefood.org.uk/api/2/need/120f2638-4e1d-4d70-ba01-017d6819ba6f/"
},
{
"id": "023f021f-056e-49b3-9dad-8abced9cdef2",
"found": "2026-07-07T18:41:30.072",
"foodbank": {
"name": "Whitby",
"slug": "whitby",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/whitby/",
"html": "https://www.givefood.org.uk/needs/at/whitby/"
}
},
"needs": "Tinned Fish, Stew, Meatballs\nTinned Hotdogs\nInstant Noodles\nTea, Coffee, Squash\nTinned Ham, Corned Beef, Meat Pies\nJars Of Pasta Or Curry Sauces\nPlain Or Savoury Rice\nSugar\nTinned Spaghetti, Macaroni Cheese\nTinned Potatoes, Packet Mash\nBreakfast Cereals, Porridge\nTinned Fruit\nTinned Vegetables, Tomatoes\nBiscuits, Jams And Spreads\nTinned Rice Pudding, Custard\nUHT Or Powdered Milk\nToiletries\nToilet Rolls\nItems For Household Cleaning And Laundry\nDog Food",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/023f021f-056e-49b3-9dad-8abced9cdef2/"
},
{
"id": "880a3465-aafc-4f14-a775-520d73a8cb54",
"found": "2026-07-07T18:35:06.725",
"foodbank": {
"name": "Chichester District",
"slug": "chichester-district",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/chichester-district/",
"html": "https://www.givefood.org.uk/needs/at/chichester-district/"
}
},
"needs": "Chocolate\nCooking Oil\nDeodorant\nKitchen Roll\nLong-Life Juice\nLong-Life Milk\nNappies - Size 6\nNappies - Size 7\nRed Lentils\nShampoo\nSponge Puddings\nSugar\nTinned Fish\nTinned Fruit\nTinned Meat\nTinned Pulses\nTinned Tomatoes\nTinned Vegetables\nToilet Roll\nTomato Sauce\nToothbrushes\nWashing Powder\nWashing Up Liquid",
"excess": "",
"self": "https://www.givefood.org.uk/api/2/need/880a3465-aafc-4f14-a775-520d73a8cb54/"
},
{
"id": "94e515aa-85a7-44f6-8b2c-78ec24cba71e",
"found": "2026-07-07T17:58:39.146",
"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 Fruit\nRice Pudding\nBreakfast Bars\nTinned Corned Beef / Pork\nSmall Pasta Sauce 440 g or less\nDeodorant Male / Female\nTinned Tomatoes\nBiscuits\nSweets",
"excess": "Laundry Pods\nNappies Other Than Size 5 And 6\nBaby Formula Milk\nSkimmed Milk\nChocolate Breakfast Cereals",
"self": "https://www.givefood.org.uk/api/2/need/94e515aa-85a7-44f6-8b2c-78ec24cba71e/"
},
{
"id": "8f8d480b-c33f-454b-bff3-78fba6c68dfa",
"found": "2026-07-07T16:50:44.647",
"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": "Cooking Oil\nShampoo\nLong Life Fruit Juice\nWashing Up Liquid\nSemi Skimmed Long Life Milk\nDeodorant\nChildren's Chocolates\nToilet Gel & Liquid\nTinned Meat Meals & Chicken Meat Meals\nTinned Carrots, Sweetcorn, Mixed Vegetables\nTinned Chick Peas\nBaby Food\nSmall Cartons Laundry Detergent Non Bio & Bio\nMulti Pack Snack Bars\nToilet Rolls\nInstant Mashed Potato\nChocolate Spread\nLong Life Sponge Puddings\nHair Conditioner\nCorned Beef\nHot Chocolate\nPeanut Butter\nMarmite\nTinned Salmon",
"excess": "Tea Bags\nSoup\nPorridge\nTinned Pulses\nCereal\nDry Pasta & Spaghetti\nBaked Beans",
"self": "https://www.givefood.org.uk/api/2/need/8f8d480b-c33f-454b-bff3-78fba6c68dfa/"
},
{
"id": "e6d56099-7956-483b-af9e-bb380332b008",
"found": "2026-07-07T13:15:08.413",
"foodbank": {
"name": "North Cotswold",
"slug": "north-cotswold",
"urls": {
"self": "https://www.givefood.org.uk/api/2/foodbank/north-cotswold/",
"html": "https://www.givefood.org.uk/needs/at/north-cotswold/"