91³Ô¹ÏÍø

Watch CBS News

Experts explain health concerns about micro- and nanoplastics in water. Can you avoid them?

A recent study found bottled water contains far more pieces of plastic — tiny bits known as microplastics and even more minuscule nanoplastics — than previously estimated. The findings raise questions about potential health concerns, but experts say there some ways to reduce your exposure.

Just how much plastic are we talking about? The average liter of bottled water contains around 240,000 detectable plastic fragments, researchers in the study, published Monday in the journal . 

What are nanoplastics and microplastics?

Micro- and nanoplastics are both tiny fragments of plastic which just differ in size. Microplastics are small plastic pieces less than 5 millimeters long. These have been measured in large quantities in previous studies

In the latest study, researchers also examined nanoplastics, which are particles less than 1 micrometer — a size "previously invisible under conventional imaging," they wrote. For reference, the diameter of a human hair is about 70 micrometers.

They were able to find nanoplastics by probing water samples with lasers that were tuned to make specific molecules resonate. 

They found that nanoplastics made up 90% of the plastic particles detected in the water samples, while microplastics accounted for the other 10%.

In response to the study, the International Bottled Water Association noted that there "currently is both a lack of standardized (measuring) methods and no scientific consensus on the potential health impacts of nano- and microplastic particles. Therefore, media reports about these particles in drinking water do nothing more than unnecessarily scare consumers."

Can you avoid plastics in water?

It's very hard to avoid this kind of nanoplastic exposure, says Dr. Céline Gounder, a CBS News medical contributor and editor-at-large for public health at KFF Health News. This is because plastic can be found in any beverages we consume from plastic bottles, and it's in our food supply and in the environment as well.

One basic step you can take? Avoid plastic packaging when possible. "That will help reduce some of the risks," Gounder said on "CBS Mornings." 

"Don't microwave your food in plastics," she advised. For food storage, "Try to use  containers like glass or stainless steel. At least that'll help reduce your exposure a little bit."

Since some water filters can actually introduce other plastics, Gounder says, she suggests most people go straight to their tap for drinking water.

"Tap is generally going to be safe unless you have an area where there's lead pipes or something like that," she said.

has also found microplastics present in tap water, though far less than in bottled water.

Are plastic water bottles bad for you?

Researchers are unsure just how risky microscopic pieces of plastics are for people — it is a subject of ongoing research. 

The International Bottled Water Association notes that there is "no scientific consensus on potential health impacts."

The World Health Organization said in 2019 that potential hazards associated with microplastics come in three forms: from the particles themselves, the chemicals that make them up, and "microorganisms that may attach and colonize on microplastics, known as biofilms."

"We don't know if the plastic itself can cause health effects, but they are bonded to, or combined with, other chemicals like phthalates, for example, which are what make plastic more flexible," Gounder explains. "So when you get these tiny pieces of plastic, you're also getting exposed to these other chemicals."

These chemicals, known as "endocrine disruptors," can mimic things like estrogen and have hormonal effects.

"Those hormones or higher exposures to those kinds of hormones can be associated with anything from diabetes, to neurocognitive effects in little kids to cancer. So that is why we have some real concerns about these exposures," Gounder said.

The study's researchers also note that "nanoplastics are believed to be more toxic since their smaller size renders them much more amenable, compared to microplastics, to enter the human body."

Beizhan Yan, an environmental chemist at Columbia University, also believes there is cause for concern.

"When they are getting into the nano size, they can potentially get into the blood and then they can be transported to the vital organs," he told CBS News.

-Aliza Chasan and David Schechter contributed reporting.

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=50747257b890e014813016b79ece0fb2'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });