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

  • Hi. Thank you for posting. It's very helpful to know because we are debating whether buying new bottle or the straws from EBay or Amazon as a last resort.

  • Thank you so much for the info, I was checking on other websites and indeed the prices were $6.95 each. With this info you've provided, I'm definitely ringing thermos to find out!

    Thanks again!!

    Happy New Year!

  • Just wanted to say thanks for this tip. We have 2 of the Funtainers because the straw on the first one was chewed. When searching online I was surprised to replacements being sold for $10! This info saved me time and money. Two thumbs up!

  • Thank you so much! You just saved me so much money. I just paid $7 for 4 straws and shipping. The straws for both ours were looking pretty gross wasn't sure if it was juice stained or dirty. Glad I did a google search and found your blog!

  • Hi. I am from the Philippines and I was looking for a replacement straw that I could buy online so my friend in the US can bring it here. I was surprised to see that the price of a replacement straw was even more expensive than the bottle itself that I thought I would just buy a new bottle. Your post was really helpful. If you don't mind, can I also order via email since I am not from US?

1 2 3 4
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