Categories: Other

Replacement straws for Thermos Bottles

Sorry this has nothing to do with coding.

But if you have kids and have the Thermos aluminum straw Bottles such as the Thermos Funtainer or Foogo Straw bottles, you can get replacement straws directly from Thermos for $1 a piece. My kids like to bite the straws and they get destroyed pretty quickly. If you need just the top part of the straw, that would be $0.50.

Apparently, people are reselling these straws on Ebay and other sites for $7-$10 a piece! So Thermos is limiting each order to 5 straws. I am putting this out there to hopefully direct people to the source.

Call Thermos directly at 1-800-831-9242 to order your replacement straws. If outside the US, try 1-847-439-7821.

Chinh Do

I occasionally blog about programming (.NET, Node.js, Java, PowerShell, React, Angular, JavaScript, etc), gadgets, etc. Follow me on Twitter for tips on those same topics. You can also find me on GitHub. See About for more info.

View Comments

  • I almost paid $7 for one too. Thank you so much for your post! Now we're getting 5 @$1 each for $8 (including shipping). These are the best water bottles we've found...just needed new valves, thank you!!!

  • Hi...
    really helpfull..have found the posts in abay after finding the company closed after hours..wanted to buy because i have no idea of the price ...till thankfull found your link

  • Thank you for the tip! I was able to order the straws and mouthpieces for $1 each set over the phone, plus $3 shipping. As of July 2015 the direct phone number to order replacement straws from Thermos is (800) 831-9242 (press 1 at the automated menu). Have your thermos model number ready (you can get that from the listing of the thermos on Amazon).

  • I plan on calling the company directly tomorrow morning. Thank you very much for the information and for the phone number to call them. Greatly appreciated!

  • Thanks! Just wonder where did you find the model number. I checked around the bottles, and couldn't see anything. Do you mind pointing me to the location? Maybe my bottles are so wore out.

Share
Published by
Chinh Do

Recent Posts

How to switch to a different Kubernetes context or namespace?

To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…

2 years ago

How to ssh into Kubernetes pod

kubectl exec -it <podname> -- sh To get a list of running pods in the…

2 years ago

How to Create a Soft Symbolic Link (symlink) in Unix/Linux

# Create a soft symbolic link from /mnt/original (file or folder) to ~/link ln -s…

4 years ago

How to Configure Git Username and Email Address

git config --global user.name "<your name>" git config --global user.email "<youremail@somewhere.com>" Related Commands Show current…

4 years ago

Getting the Last Monday for Any Month with TypeScript/JavaScript

TypeScript/JavaScript function getLastMonday(d: Date) { let d1 = new Date(d.getFullYear(), d.getMonth() + 1, 0); let…

5 years ago

How to View Raw SMTP Email Headers in Outlook

I had to do some SMTP relay troubleshooting and it wasn't obvious how to view…

5 years ago