Find Free Food and Groceries (2024)

').show(); // Loading... faSetCookie('cms_cons_zip', zip, 365); FA.ws.request('GetOrganizationsByZip', { zip: zip }, 'Organization', function(data) { var counter = 0; results.empty(); for (var key in data) { counter++; if (counter > 2) { return; } // Display only first two results var org = data[key]; if (org.SocialUrls.WebUrl != '') { window.location = org.SocialUrls.WebUrl+'&twoStep=true&zip='+zip+'&s_channel='+channel+'&s_subsrc='+subsrc+'&s_keyword='+keyword; } else { var profileUrlName = (org.FullName.replace(/ - /g, '-')).replace(/ /g, '-').toLowerCase(); var profileUrl = '/find-your-local-foodbank/' + (profileUrlName.replace(/[&]/g, 'and')).replace(/[^a-zA-Z0-9-]/g, ''); $('.blurb').html('Based on that zip code, online SNAP application assistance is not available. Please contact your local food bank for help with applying for SNAP.'); results.append([ '

', '', org.FullName, ' • ', org.MailAddress.City, ', ', org.MailAddress.State, ' • ', '' + org.Phone + '', ' • ', org.URL, '', '

' ].join('')); results.show(); } } if (counter == 0) { // No results results.append('This is an invalid zip. Please try a valid U.S. zip'); } }, function(response) { // Error results.html('Our online search is not working at this time. To find out your food bank, please call us at 800.771.2303'); // console.log( "response" ) // console.log( response ) }); if (doState) { stateHungerMeterByZip(zip); } } } var s_keyword = Drupal.behaviors.fa*getAttributionValue("s_keyword"); s_keyword = s_keyword.substring(0, 200); var s_channel = Drupal.behaviors.fa*getAttributionValue("s_channel"); s_channel = s_channel.substring(0, 200); var s_subsrc = Drupal.behaviors.fa*getAttributionValue("s_subsrc"); s_subsrc = s_subsrc.substring(0, 200); var s_subsrc = (s_subsrc != '') ? s_subsrc : window.location.href; if (s_keyword.length > 0) { $('input[name="s_keyword"]').val(s_keyword); } if (s_channel.length > 0) { $('input[name="s_channel"]').val(s_channel); } if (s_subsrc.length > 0) { $('input[name="s_subsrc"]').val(s_subsrc); } // GSNAP: Find Your Local Food Bank $('#gsnap_zip_search_form button[type="submit"]').click(function(e) { e.preventDefault(); $('#gsnap_zip_search_form input[name="zip"]') .val($('#gsnap_zip_search_form input[name="zip"]').val()) .attr('value',$('#gsnap_zip_search_form input[name="zip"]').val()); findYourLocalFoodBank($('#gsnap_zip_search_form input[name="zip"]').val(), false); }); // --- Find Your Local Food Bank --- function findYourLocalFoodBankEn(zip, doState) { var results = jQuery('#homepage_zip_search_results'); results.empty().hide(); // Clear the display // Validate zip var dZip = zip.replace(/\D/g,''); if (dZip.length != 5 || dZip != zip) { results.append('This is an invalid zip. Please try a valid U.S. zip').show(); return; } // Do the request if (zip != '') { results.append('').show(); // Loading... faSetCookie('cms_cons_zip', zip, 365); FA.ws.request('GetOrganizationsByZip', { zip: zip }, 'Organization', function(data) { var counter = 0; results.empty(); for (var key in data) { counter++; if (counter > 2) { return; } // Display only first two results var org = data[key]; var profileUrlName = (org.FullName.replace(/ - /g, '-')).replace(/ /g, '-').toLowerCase(); var profileUrl = '/find-your-local-foodbank/' + (profileUrlName.replace(/[&]/g, 'and')).replace(/[^a-zA-Z0-9-]/g, ''); results.append([ '

', '', org.FullName, ' • ', org.MailAddress.City, ', ', org.MailAddress.State, ' • ', '' + org.Phone + '', ' • ', org.URL, '', '

' ].join('')); } if (counter == 0) { // No results results.append('This is an invalid zip. Please try a valid U.S. zip'); } }, function(response) { // Error results.html('Our online search is not working at this time. To find out your food bank, please call us at 800.771.2303'); }); if (doState) { stateHungerMeterByZipEn(zip); } } } function stateHungerMeterByZipEn(zip) { if (zip != '') { // Do the request FA.ws.request('GetStateStatisticsByZip', { zip: zip }, '/', function(data) { if (data && data.StateID && data.Name) {// displayHungerMeterResults(data.Name, data.StateID, data.Name, data.StateStats.FoodInsecurityRate); displayHungerMeterResults(data.Name, data.StateID, data.Name, data.StateStats.MMG_FI_FULL_POP_RATE); jQuery('#homepage_ending_select').val(data.StateID); faSetCookie('cms_cons_state', data.StateID, 365); return; } // No results // ... }, function(response) { // Error // No results behaviour }); } } // Homepage: Find Your Local Food Bank jQuery('#homepage_zip_search_form_en button[type="submit"]').once().click(function(e) { e.preventDefault(); $('#homepage_zip_search_form_en input[name="zip"]') .val($('#homepage_zip_search_form_en input[name="zip"]').val()) .attr('value',$('#homepage_zip_search_form_en input[name="zip"]').val()); findYourLocalFoodBankEn(jQuery('#homepage_zip_search_form_en input[name="zip"]').val(), true); }); var cms_cons_zip = fa*getCookie('cms_cons_zip'); // Get zip from cookies if (cms_cons_zip && cms_cons_zip == '') { cms_cons_zip = jQuery('#cms_cons_zip').val(); // Get zip from user's record } if (cms_cons_zip && cms_cons_zip != '') { // We already have the user's zip jQuery('#homepage_zip_search_form_en input[name="zip"]').attr('value',cms_cons_zip).val(cms_cons_zip); findYourLocalFoodBankEn(cms_cons_zip, true); } // --- Hunger Meter --- // Homepage: State hunger meter jQuery('#homepage_ending_select').change(function(e) { e.preventDefault(); var id = jQuery(this).val(); switch (id) { case 'US' : nationHungerMeter(); break; default : if (id != '') { faSetCookie('cms_cons_state', id, 365); stateHungerMeter(id); } break; } }); if (cms_cons_zip && cms_cons_zip != '') { // We already have the user's zip // Do nothing } else { var cms_cons_state = fa*getCookie('cms_cons_state'); // Get state from cookies if (cms_cons_state && cms_cons_state == '') { cms_cons_state = jQuery('#cms_cons_state').val(); // Get state from user's record } if (cms_cons_state && cms_cons_state != '') { // We already have the user's state jQuery('#homepage_ending_select').val(cms_cons_state); faSetCookie('cms_cons_state', cms_cons_state, 365); stateHungerMeter(cms_cons_state); } else { // Nationwide nationHungerMeter(); } } } });})(jQuery);});

If you need food today

Your local food bank can help you find food today, even if you need temporary help. They partner with food pantries, soup kitchens, and meal programs in your local community to give away free food.

Enter your zip code to find the food bank partnering with Feeding America. They'll share the locations and hours of nearby food distributions.

On

Find Free Food and Groceries (2024)

FAQs

What to do if can't afford food? ›

Get a referral to access a foodbank

your support worker. your local council. your social worker. a local charity, like Citizens Advice.

What to do when you don't have food or money? ›

What to do if you need emergency help with money and food
  1. Trust funds.
  2. Credit unions.
  3. Councils.
  4. Energy providers.
  5. The Government.
  6. Charities.

How do I claim free food? ›

How to get help from a food bank
  1. Find your local food bank. Search by postcode to find your local Trussell Trust food bank and click through to find their website and contact details.
  2. Get a food voucher.
  3. Exchange your voucher for a food parcel. What to expect when you visit a food bank.

What if you don't have money to buy food? ›

Government Emergency Programs

This can include the Supplemental Nutrition Assistance Program (also known as food stamps), WIC and cash programs. Both the WIC program and SNAP benefits are designed with low-income families on a limited budget in mind.

What to do if I have no money? ›

Whatever your situation, here are 13 fun things to do that don't cost money with friends and family:
  1. Go on a picnic. ...
  2. Go to no-cost museum and zoo days. ...
  3. Give geocaching a try. ...
  4. Leverage your chamber of commerce. ...
  5. Take a historical city tour. ...
  6. Visit a farmers market. ...
  7. Go camping. ...
  8. Do a photography challenge.
Feb 14, 2024

What's the cheapest food you can live on? ›

Cheapest Foods to Live On:
  • Oatmeal.
  • Eggs.
  • Bread.
  • Rice.
  • Bananas.
  • Beans.
  • Apples.
  • Pasta.

How to eat if you have no money? ›

Your local food bank can help you find food today, even if you need temporary help. They partner with food pantries, soup kitchens, and meal programs in your local community to give away free food. Enter your zip code to find the food bank partnering with Feeding America.

How can I get free meals with no money? ›

The Emergency Food Assistance Program (TEFAP) is a federal program that helps supplement the diets of people with low income by providing them with emergency food assistance at no cost. USDA provides 100% American-grown USDA Foods and administrative funds to states to operate TEFAP.

How to get money when you have none? ›

96 Ways To Earn Money If You're Unemployed
  1. Take Online Surveys. Taking online surveys is one of the easiest ways to earn extra money. ...
  2. Test Websites. ...
  3. Open a High-Yield Savings Account. ...
  4. Participate In Mock Trials. ...
  5. Get Rewards for Searching. ...
  6. Become a Beta. ...
  7. Participate In Clinical Trials. ...
  8. Enter Contests.
May 8, 2023

What food can you get for free with an app? ›

If you're looking to download restaurant apps, here are 17 to consider putting on your phone.
  • Auntie Anne's. Install Auntie Anne's Rewards app and you'll get a free pretzel with your first purchase of $1 or more. ...
  • Burger King. ...
  • Chick-fil-A. ...
  • Chipotle. ...
  • The Coffee Bean & Tea Leaf. ...
  • Dairy Queen. ...
  • Dunkin' ...
  • Jamba Juice.
May 28, 2024

What is the free just eat credit? ›

The Just Eat stamp card is a loyalty rewards program that gives you free gift cards when you order food. For each order you place, you'll get 10% back in credit. After your fifth order, you can cash in. So if you spent £20 each time, you'd get £10 in free Just Eat gift cards.

How do I claim Mcdonald's free food? ›

Redeem your free reward on the app and select 'add to code'. Give your code when you order at Drive-thru, Front-Counter or Kiosk to redeem your rewards! Plus, receive 1000 bonus points and free medium fries on your first order.

How do you pay for groceries when you have no money? ›

Tips on How to Get Groceries – No-Money-Needed Options
  1. SNAP (Supplemental Nutrition Assistance Program) ...
  2. WIC (Women, Infants, and Children) ...
  3. National School Lunch Program. ...
  4. Senior Farmers' Market Nutrition Program. ...
  5. Emergency Food Assistance Program. ...
  6. Turn to Local Food Pantries.

How to get money fast? ›

How to make money fast
  1. Test user experiences. ...
  2. Take surveys online. ...
  3. Sell stock photos. ...
  4. Sell other stuff you already own. ...
  5. Become a dog walker. ...
  6. Try pet sitting or animal care. ...
  7. Consider house sitting. ...
  8. Drive for a rideshare company.
Dec 13, 2023

What to eat when you can't afford food? ›

Canned fruits and vegetables are just as nutritious as the more expensive fresh fruits and vegetables. Buying cheap foods that you can add to other foods, like beans and lettuce, can help fill you up and save money. Heavily processed foods are often cheap but not very healthy.

What happens if you can't afford your food? ›

Restaurants may ask guests to leave some form of collateral behind when they can't pay their bill, such as a cell phone or piece of ID, per Restaurant Clicks. This is to give the establishment's staff peace of mind that they will be compensated for their food.

How do you not be hungry when you can't afford food? ›

How do you suppress your hunger without eating?
  1. Control hunger by drinking more water, incorporating green tea, and hitting all of your key nutrients.
  2. Distract yourself by diving into your hobbies and relationships—for instance, try listening to a long podcast.

What to do when you don t have much food? ›

15 Delicious Things to Throw Together When You're Pressed for Food Options
  1. Buttery, gooey grilled cheese. ...
  2. PB&J because duh. ...
  3. Tuna melt tostadas. ...
  4. Pancakes! ...
  5. Scrambled eggs. ...
  6. Waffles. ...
  7. A Hagrid-size bowl of cereal. ...
  8. Spaghetti carbonara.
Apr 28, 2020

How do you eat on low income? ›

Nutritious and Inexpensive Staples
  1. Beans, peas, lentils (dried, frozen, canned)
  2. Canned fish (tuna, salmon, sardines)
  3. Ground turkey 90% lean.
  4. Chicken thighs with skin (these are cheaper than skinless chicken thighs but the skin can be removed before cooking)
  5. Peanut butter.
  6. Lowfat cottage cheese.
  7. Tofu.
  8. Eggs.

Top Articles
Latest Posts
Article information

Author: Arline Emard IV

Last Updated:

Views: 5584

Rating: 4.1 / 5 (72 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Arline Emard IV

Birthday: 1996-07-10

Address: 8912 Hintz Shore, West Louie, AZ 69363-0747

Phone: +13454700762376

Job: Administration Technician

Hobby: Paintball, Horseback riding, Cycling, Running, Macrame, Playing musical instruments, Soapmaking

Introduction: My name is Arline Emard IV, I am a cheerful, gorgeous, colorful, joyous, excited, super, inquisitive person who loves writing and wants to share my knowledge and understanding with you.