{"id":"page-915320836d","pageData":{},"templateName":"t01-basic-page","contentLanguage":"en","cssClassNames":"page basicpage","metaDescription":"Find the latest recommendations on how and when to screen for certain cancers and how UNC Health experts can help.","brandSlug":"UNC Health","defaultMetaSiteName":"UNC Health","siteURL":"https://www.unchealth.org","mainSchemaHtml":"<script type=\"application/ld+json\" id=\"mainSchema\"></script>","customSchemaHtml":"<script type=\"application/ld+json\" id=\"customSchema\"></script>","bodyBottomGlobal":"<script>\r\n  function getLiveChatConfig() {\r\n    const phone =\r\n      \"800-594-8624 (toll-free) or locally at 984-974-2222 Mon. – Thurs., 8:00 AM – 5:00 PM and Fri., 8:00 AM – 11:30 AM.\";\r\n    const nebulaURL = \"https://livechat-livechat.app.st-882.epiccloud.io\";\r\n    const chatScriptURL =\r\n      \"https://livechat-web-client.app.st-882.epiccloud.io/assets/epic-live-chat.es.js\";\r\n    const apiKey =\r\n      \"AAEAAZmakTnG4EHUADF7IlNpdGVJZCI6IjViZmQyYTM4LTUyZjItNDMzZS04NmI2LTdiZTg1NzM5YWFmZCJ9hM+rEbw4ueEid0MN5b0mjsOLTtWsrCjU6rWqKEQwR2Sw+bndAQw0Iw==\";\r\n\r\n    const branding = {\r\n      primaryColor: \"#004263\",\r\n      fontFamily: \"Muller, Arial, sans-serif\",\r\n      minimizedChatTitle: \"How can we help?\",\r\n      liveChatTitle: \"UNC Health Billing Help\",\r\n      organizationImageURL:\r\n        \"https://www.uncmedicalcenter.org/app/files/public/7453/img-system-systemlogo.png\",\r\n      organizationImageDescriptor: \"UNC Health logo\",\r\n    };\r\n\r\n    return { phone, nebulaURL, chatScriptURL, apiKey, branding };\r\n  }\r\n</script>\r\n\r\n<script>\r\n  (function () {\r\n    const containerId = \"lcWidget\";\r\n\r\n    // ✅ Show chat on these pages (exact “records-insurance” routes)\r\n    const CHAT_PATHS = new Set([\r\n      \"/records-insurance/pay-my-bill\",\r\n      \"/records-insurance/financial-assistance-programs\",\r\n      \"/records-insurance/insurance\",\r\n      \"/records-insurance/billing-insurance-terminology\",\r\n      \"/records-insurance/price-estimates\",\r\n      \"/records-insurance/standard-charges\",\r\n    ]);\r\n\r\n    let scriptInjected = false;\r\n    let widgetRendered = false;\r\n\r\n    function normalizePath(rawPath) {\r\n      let p = (rawPath || \"/\")\r\n        // remove query/hash fragments\r\n        .split(\"?\")[0]\r\n        .split(\"#\")[0]\r\n        // convert any weird whitespace (including NBSP) and trim\r\n        .replace(/\\u00A0/g, \" \")\r\n        .trim()\r\n        // drop .html if present\r\n        .replace(/\\.html$/, \"\");\r\n\r\n      // drop trailing slash (except root)\r\n      if (p.length > 1) p = p.replace(/\\/+$/, \"\");\r\n\r\n      // If we're on an AEM content path, reduce to the “pretty” portion\r\n      // Example: /content/unchealth/us/en/records-insurance/insurance  -> /records-insurance/insurance\r\n      const idx = p.indexOf(\"/records-insurance/\");\r\n      if (idx !== -1) {\r\n        p = p.slice(idx);\r\n      }\r\n\r\n      return p;\r\n    }\r\n\r\n    function shouldShowChatNow() {\r\n      const current = normalizePath(window.location.pathname);\r\n      return CHAT_PATHS.has(current);\r\n    }\r\n\r\n    function getContainer() {\r\n      return document.getElementById(containerId);\r\n    }\r\n\r\n    function ensureContainer() {\r\n      if (getContainer()) return;\r\n\r\n      const container = document.createElement(\"div\");\r\n      container.id = containerId;\r\n      container.style.position = \"fixed\";\r\n      container.style.right = \"20px\";\r\n      container.style.bottom = \"20px\";\r\n      container.style.zIndex = \"9999\";\r\n      document.body.appendChild(container);\r\n    }\r\n\r\n    function showChat() {\r\n      ensureContainer();\r\n\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"block\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"block\";\r\n        el.style.visibility = \"visible\";\r\n        el.style.pointerEvents = \"auto\";\r\n      });\r\n    }\r\n\r\n    function hideChat() {\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"none\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"none\";\r\n        el.style.visibility = \"hidden\";\r\n        el.style.pointerEvents = \"none\";\r\n      });\r\n    }\r\n\r\n    function renderWidgetWhenReady() {\r\n      const liveChatProps = getLiveChatConfig();\r\n\r\n      let tries = 0;\r\n      const t = setInterval(() => {\r\n        tries++;\r\n\r\n        if (typeof window.renderLiveChat === \"function\") {\r\n          clearInterval(t);\r\n          try {\r\n            window.renderLiveChat(containerId, liveChatProps);\r\n            widgetRendered = true;\r\n          } catch (e) {\r\n            // ignore and still show\r\n          }\r\n          showChat();\r\n          return;\r\n        }\r\n\r\n        if (tries >= 40) clearInterval(t);\r\n      }, 100);\r\n    }\r\n\r\n    function injectScriptOnceAndRender() {\r\n      const liveChatProps = getLiveChatConfig();\r\n      const endpoint = liveChatProps.chatScriptURL;\r\n      if (!endpoint) return;\r\n\r\n      if (scriptInjected) {\r\n        if (widgetRendered) showChat();\r\n        else renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const existing = document.querySelector(\r\n        `script[type=\"module\"][src=\"${endpoint}\"]`\r\n      );\r\n      if (existing) {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const script = document.createElement(\"script\");\r\n      script.type = \"module\";\r\n      script.src = endpoint;\r\n      script.async = true;\r\n\r\n      script.onload = function () {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n      };\r\n\r\n      document.body.appendChild(script);\r\n    }\r\n\r\n    function onRouteChange() {\r\n      if (shouldShowChatNow()) {\r\n        ensureContainer();\r\n        injectScriptOnceAndRender();\r\n        showChat();\r\n      } else {\r\n        hideChat();\r\n      }\r\n    }\r\n\r\n    // keep your old API name (hide is safer than remove)\r\n    window.removeLiveChatWidget = hideChat;\r\n\r\n    /* -----------------------------\r\n       SPA NAVIGATION DETECTION\r\n    ------------------------------*/\r\n    function installSpaNavHooksOnce() {\r\n      if (window.__liveChatSpaHookInstalled) return;\r\n      window.__liveChatSpaHookInstalled = true;\r\n\r\n      const fire = () => window.dispatchEvent(new Event(\"spa:navigation\"));\r\n\r\n      const _pushState = history.pushState;\r\n      history.pushState = function () {\r\n        const ret = _pushState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      const _replaceState = history.replaceState;\r\n      history.replaceState = function () {\r\n        const ret = _replaceState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      window.addEventListener(\"popstate\", fire);\r\n      window.addEventListener(\"hashchange\", fire);\r\n    }\r\n\r\n    function init() {\r\n      installSpaNavHooksOnce();\r\n      window.addEventListener(\"spa:navigation\", onRouteChange);\r\n      onRouteChange();\r\n    }\r\n\r\n    if (document.readyState === \"loading\") {\r\n      document.addEventListener(\"DOMContentLoaded\", init);\r\n    } else {\r\n      init();\r\n    }\r\n  })();\r\n</script>\r\n","pagePath":"/care-services/areas-of-care/cancer-care/cancer-screening.model.json","thumbnail":"https://www.unchealth.org/etc.clientlibs/unchealth/clientlibs/clientlib-react/resources/logo1200x630.png","description":"Find the latest recommendations on how and when to screen for certain cancers and how UNC Health experts can help.","contentType":"general","url":"https://www.unchealth.org/care-services/areas-of-care/cancer-care/cancer-screening","title":"Cancer Screening | North Carolina","tags":[],"schema":[],"language":"en",":type":"unchealth/components/core/page",":itemsOrder":["root"],":items":{"root":{":itemsOrder":["experiencefragment-header","subnav","responsivegrid_header","responsivegrid","responsivegrid_footer","experiencefragment-footer"],":items":{"experiencefragment-header":{":type":"unchealth/components/core/experiencefragment",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid","logo"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["global_alerts","global_header"],":items":{"global_alerts":{"id":"global-alerts-2b42314d9b","i18n":{"globalAlertsGeneralLabel":"General Alerts","globalAlertsPriorityLabel":"Priority Alerts"},":type":"unchealth/components/content/global-alerts","dataLayer":{"global-alerts-2b42314d9b":{"@type":"unchealth/components/content/global-alerts","repo:modifyDate":"2026-02-16T17:18:37Z"}}},"global_header":{"id":"global-header-ddb6c3cebb","logoLink":"/home","myChartCta":{"id":"global-header-ddb6c3cebb","label":"My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"unchealth/components/content/global-header","dataLayer":{"global-header-ddb6c3cebb":{"@type":"unchealth/components/content/global-header","repo:modifyDate":"2025-04-28T19:39:38Z"}}},"primaryNavItems":[{"link":"/care-services","featureCard":{":type":"nt:unstructured",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["nav_feauture_card_co"],":items":{"nav_feauture_card_co":{"id":"nav-feauture-card-18bbf34786","image":{"id":"nav-feauture-card-18bbf34786","altText":"Parents carrying son on shoulders on beach vacation","defaultImgSrc":"/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"/content/unchealth/us/en/care-services/areas-of-care/primary-care","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":4947,"width":7421,"srcTitle":"Parents carrying son on shoulders on beach vacation","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-18bbf34786":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}},"headline":"Looking for Primary Care?","description":"Learn about the different primary care options available at UNC Health and how to find a healthcare provider.","cta":{"id":"nav-feauture-card-18bbf34786","label":"View Details","descriptiveText":"About UNC Health's Primary Care Options","href":"/care-services/areas-of-care/primary-care","target":"_self","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-18bbf34786":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}},":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-18bbf34786":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}},"title":"Care & Services","items":[{"title":"Ways to Schedule Care","link":"/care-services/ways-to-schedule-care","target":null},{"title":"Areas of Care","link":"/care-services/areas-of-care","target":null},{"title":"Find a Doctor","link":"/care-services/doctors","target":null},{"title":"Locations","link":"/care-services/locations","target":null},{"title":"Urgent Care","link":"/care-services/urgent-care","target":"_self"},{"title":"Emergency & Trauma","link":"/care-services/emergency-trauma","target":null},{"title":"Virtual Care","link":"/care-services/virtual-care","target":null}]},{"link":"/living-well","featureCard":{":type":"nt:unstructured",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["nav_feauture_card_co"],":items":{"nav_feauture_card_co":{"id":"nav-feauture-card-d371ed88e1","image":{"id":"nav-feauture-card-d371ed88e1","altText":"Happy senior people after yoga sport class having fun sitting outdoors in park city","defaultImgSrc":"/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"/content/unchealth/us/en/living-well/classes-events","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":2626,"width":3940,"srcTitle":"Happy senior people after yoga sport class having fun sitting outdoors in park city","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-d371ed88e1":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}},"headline":"Looking for Classes & Events?","description":"Learn where to find support groups and classes across UNC Health’s system.","cta":{"id":"nav-feauture-card-d371ed88e1","label":"View Details","descriptiveText":" about Classes and Events","href":"/living-well/classes-events","target":"_self","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-d371ed88e1":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}},":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-d371ed88e1":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}},"title":"Living Well","items":[{"title":"Nutrition & Recipes","link":"/living-well/nutrition-recipes","target":null},{"title":"Health Talk","link":"/living-well/health-talk","target":null},{"title":"Spiritual Care","link":"/living-well/spiritual-care","target":null},{"title":"Wellness & Rehabilitation Centers ","link":"/living-well/wellness-rehabilitation-centers","target":null},{"title":"Classes & Events","link":"/living-well/classes-events","target":null}]},{"link":"/records-insurance","featureCard":{":type":"nt:unstructured",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["nav_feauture_card_co"],":items":{"nav_feauture_card_co":{"id":"nav-feauture-card-c97f3dd113","image":{"id":"nav-feauture-card-c97f3dd113","altText":"Person using calculator on top of a stack of bills.","defaultImgSrc":"/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"/content/unchealth/us/en/records-insurance/financial-assistance-programs","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3339,"width":5009,"srcTitle":"Tuition.","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-c97f3dd113":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}},"headline":"Need help with a bill?","description":"Financial navigators can help explain our financial assistance options to help with your medical bills.","cta":{"id":"nav-feauture-card-c97f3dd113","label":"View Details","descriptiveText":" about getting help with a medical bill","href":"/records-insurance/financial-assistance-programs","target":"_self","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-c97f3dd113":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}},":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-c97f3dd113":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}},"title":"Records & Insurance","items":[{"title":"Pay My Bill","link":"/records-insurance/pay-my-bill","target":"_self"},{"title":"Insurance","link":"/records-insurance/insurance","target":"_self"},{"title":"Billing & Insurance Terminology","link":"/records-insurance/billing-insurance-terminology","target":"_self"},{"title":"Standard Charges","link":"/records-insurance/standard-charges","target":"_self"},{"title":"Price Estimates Help","link":"/records-insurance/price-estimates","target":"_self"},{"title":"Financial Assistance Program","link":"/records-insurance/financial-assistance-programs","target":"_self"},{"title":"My UNC Chart Features","link":"/records-insurance/my-unc-chart","target":null},{"title":"Medical Records","link":"/records-insurance/medical-records","target":null},{"title":"Advance Care Planning","link":"/records-insurance/advance-care-planning","target":null},{"title":"NC Medicaid","link":"/records-insurance/nc-medicaid","target":null},{"title":"Financial Planning for Pregnancy & Birth Care | UNC Health","link":"/records-insurance/financial-planning-for-pregnancy-birth-care","target":null}]}],"quickLinks":[{"id":"-a1f8421c56","label":"How to Schedule Care","href":"/care-services/ways-to-schedule-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-a1f8421c56":{"@type":"nt:unstructured"}}},{"id":"-060c396f17","label":"Pay My Bill","href":"/records-insurance/pay-my-bill","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-060c396f17":{"@type":"nt:unstructured"}}},{"id":"-c2e674db2d","label":"Urgent & Emergency Care","href":"/care-services/urgent-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c2e674db2d":{"@type":"nt:unstructured"}}},{"id":"-345e4bb875","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-345e4bb875":{"@type":"nt:unstructured"}}}],"searchTerms":[{"searchTerm":"Sore Throat"},{"searchTerm":"Cancer Care"},{"searchTerm":"Orthopedics"},{"searchTerm":"Stomach Pains"},{"searchTerm":"Chronic Headaches"}],"geolocationLinkLabel":"Use My Location","secondaryLinks":[{"iconName":{"name":"directory","title":"Directory"},"cta":{"id":"-c08a8d3c6f","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c08a8d3c6f":{"@type":"nt:unstructured"}}}},{"iconName":{"name":"profile","title":"Profile"},"cta":{"id":"-dd55eb20cb","label":"My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-dd55eb20cb":{"@type":"nt:unstructured"}}}}],"searchUrl":"/search","locationSearchUrl":"/care-services/locations","shareHeadline":"Share your location with us","shareCopy":"We can provide a more personalized experience for you when you share your location. We will use your location to give you the most relevant and helpful information possible, like UNC Health centers close to home, nearby search results, estimated travel distances, and more. Your location will be displayed on the upper right-hand corner of your screen and can be updated at any time.","updateCopy":"We will use your location to give you the most relevant and helpful information possible, like UNC Health centers close to home, healthcare professionals nearby, estimated travel distances, and more. Your location can be updated at any time.","errorHeadline":"Sorry, we can't seem to find you.","errorCopy":"We were not able to geolocate your device, to continue using our location based functionality please manually input your general location.","shareButton":"Share my location","v":"20221201","experienceKey":"unch-aem-site-search","endpoint":"https://liveapi.yext.com/v2/accounts/me/search/autocomplete","locale":"en","apiKey":"fcb2c208969a29f6bc66c93d5737793e",":type":"unchealth/components/content/global-header","dataLayer":{"global-header-ddb6c3cebb":{"@type":"unchealth/components/content/global-header","repo:modifyDate":"2025-04-28T19:39:38Z"}}}},":type":"wcm/foundation/components/responsivegrid"},"logo":{":type":"nt:folder"}},":type":"wcm/foundation/components/responsivegrid"}}},"subnav":{"id":"sub-nav-203522e3d6","breadcrumbPages":[{"redirect":true,"pageName":"Care & Services","pageUrl":"/care-services"},{"pageName":"Areas of Care","pageUrl":"/care-services/areas-of-care"},{"pageName":"Cancer Care","pageUrl":"/care-services/areas-of-care/cancer-care"}],"activePage":[{"pageName":"Cancer Screening","childrenPages":[],"hasChildren":false}],"hideSubnav":false,":type":"unchealth/components/content/sub-nav","dataLayer":{"sub-nav-203522e3d6":{"@type":"unchealth/components/content/sub-nav"}}},"responsivegrid_header":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["page_title_banner_co","background","content_grid","rich_text","background_111753613"],":items":{"page_title_banner_co":{"id":"page-title-banner-e32eee94af","headline":"Cancer Screening","description":"<p>Early detection of cancer is important so that treatment can begin as quickly as possible, and because not all cancers show signs at the beginning.</p>\r\n","image":{"id":"page-title-banner-e32eee94af","defaultAspectRatio":"default","mobileAspectRatio":"default","disableCsr":false,":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--none","dataLayer":{"page-title-banner-e32eee94af":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-06-02T20:14:08Z"}}},"cta":{"label":null,"descriptiveText":null,"href":null,"target":"_blank","disableCsr":false},"secondaryCta":{"label":null,"descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--none","dataLayer":{"page-title-banner-e32eee94af":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-06-02T20:14:08Z"}}},"background":{"id":"background-75ac58ac13",":type":"unchealth/components/containers/background",":items":{"content_grid":{"id":"content-grid-4935991f32",":type":"unchealth/components/containers/content-grid",":items":{"rich_text":{"id":"rich-text-f8cc63ee25","content":"<h2>An essential tool</h2>\r\n<p>Regular cancer screenings are an important tool for early detection. Early detection is often possible even before symptoms appear. When cancer is found and treated early, your chances of having a positive outcome and staying healthy are better.</p>\r\n<ul>\r\n<li>Screening guidelines should be considered a baseline.</li>\r\n<li>If you are at high risk for certain types of cancer, or if you’ve previously been diagnosed with cancer, your doctor may give you different recommendations.</li>\r\n</ul>\r\n<p>If you get a cancer diagnosis, UNC Health Cancer offers compassionate care backed by groundbreaking research and the most advanced treatments available.</p>\r\n","cta":{"id":"rich-text-f8cc63ee25","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-f8cc63ee25":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-06-02T20:14:59Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-f8cc63ee25":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-06-02T20:14:59Z"}}}},":itemsOrder":["rich_text"],"appliedCssClassNames":"topSpacing--none bottomSpacing--small","dataLayer":{"content-grid-4935991f32":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-06-02T20:14:17Z"}}},"image_grid":{"id":"image-grid-b75fae9c0b","headline":"How to get a cancer screening","description":"<p>Your primary care physician (PCP) is the first step to getting cancer screenings at the right time for you.</p>\r\n<ul>\r\n<li>Talk to your PCP about screening recommendations based on your personal and family health history.</li>\r\n<li>Ask how to get screening services.</li>\r\n</ul>\r\n<p><b>If you have a UNC Health PCP</b>: Request a cancer screening through <a href=\"https://www.myuncchart.org/mychart/Authentication/Login\" target=\"_blank\">My UNC Chart</a>.</p>\r\n<p><b>If you don’t have a PCP</b>: Find UNC Health primary care near you.</p>\r\n","images":[{"id":"-5cb4539be9","altText":"A female doctor exams a male patient's skin around his elbow","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-screening-skin.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":667,"width":1000,"disableCsr":false,":type":"nt:unstructured","dataLayer":{"-5cb4539be9":{"@type":"nt:unstructured"}}},{"id":"-f460f8c255","altText":"Happy senior man walking and relaxing in park","defaultImgSrc":"/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/marketing-landing-pages/AdobeStock_89753338.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3305,"width":4957,"srcTitle":"Happy senior man walking and relaxing in park","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-f460f8c255":{"@type":"nt:unstructured"}}},{"id":"-acad0b7d4f","altText":"A female patient recieves a mammogram while a technician looks at the imaging","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/img-aoc-cancer-cancer-screening-mammo.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":628,"width":1000,"disableCsr":false,":type":"nt:unstructured","dataLayer":{"-acad0b7d4f":{"@type":"nt:unstructured"}}}],"cta":{"id":"image-grid-b75fae9c0b","style":"secondary","label":"Find primary care","descriptiveText":"find primary care","href":"https://www.unchealth.org/care-services/doctors?facetFilters=%7B%22specialties%22%3A%5B%22%7B%5C%22c_answersSpecialty.name%5C%22%3A%7B%5C%22%24eq%5C%22%3A%5C%22Primary+Care%5C%22%7D%7D%22%5D%2C%22acceptingPatients%22%3A%5B%22%7B%5C%22acceptingNewPatients%5C%22%3A%7B%5C%22%24eq%5C%22%3Atrue%7D%7D%22%5D%7D","target":"_blank","disableCsr":false,":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small imageAlign--right","dataLayer":{"image-grid-b75fae9c0b":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-06-04T16:03:25Z"}}},":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small imageAlign--right","dataLayer":{"image-grid-b75fae9c0b":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-06-04T16:03:25Z"}}}},":itemsOrder":["content_grid","image_grid"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-75ac58ac13":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-06-02T20:11:11Z"}}},"content_grid":{"id":"content-grid-d2b49756a6","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"Screening recommendations","headingLevel":"h2","description":"<p>These recommendations are intended as a starting point. There are no specific recommendations for some age groups. Talk to your doctor about whether you are at higher risk for cancer and what that might mean for you.</p>\r\n",":type":"unchealth/components/containers/content-grid",":items":{"classic_card":{"id":"classic-card-b54aeadade","image":{"id":"classic-card-b54aeadade","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-b54aeadade":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:57:54Z"}}},"headline":"Your 20s — Women","headlineLevel":"h2","description":"<p><b>Cervical cancer</b></p>\r\n<ul>\r\n<li><p>Pap test every three years</p>\r\n</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you. </p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-b54aeadade","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-b54aeadade":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:57:54Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-b54aeadade":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:57:54Z"}}},"classic_card_1224756726":{"id":"classic-card-853157eec0","image":{"id":"classic-card-853157eec0","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-853157eec0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:02Z"}}},"headline":"Your 20s — Men","headlineLevel":"h2","description":"<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-853157eec0","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-853157eec0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:02Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-853157eec0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:02Z"}}},"classic_card_1502791932":{"id":"classic-card-3dc3ead08e","image":{"id":"classic-card-3dc3ead08e","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-3dc3ead08e":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:14Z"}}},"headline":"Your 30s — Women","headlineLevel":"h2","description":"<p><b>Cervical cancer </b>(one of the following)</p>\r\n<ul>\r\n<li>Pap test every three years</li>\r\n<li>High-risk human papillomavirus (hrHPV) test every five years</li>\r\n<li>Pap test and hrHPV test every five years</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-3dc3ead08e","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-3dc3ead08e":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:14Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-3dc3ead08e":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:14Z"}}},"classic_card_1349262564":{"id":"classic-card-55e760112a","image":{"id":"classic-card-55e760112a","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-55e760112a":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:22Z"}}},"headline":"Your 30s — Men","headlineLevel":"h2","description":"<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-55e760112a","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-55e760112a":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:22Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-55e760112a":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:22Z"}}},"classic_card_1319966539":{"id":"classic-card-fbc14ff83f","image":{"id":"classic-card-fbc14ff83f","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-fbc14ff83f":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:31Z"}}},"headline":"Your 40s — Women","headlineLevel":"h2","description":"<p><b>Breast cancer</b></p>\r\n<ul>\r\n<li><p>Mammogram screening every two years</p>\r\n</li>\r\n</ul>\r\n<p><b>Cervical cancer </b>(one of the following)</p>\r\n<ul>\r\n<li>Pap test every three years</li>\r\n<li>HrHPV test every five years</li>\r\n<li>Pap test and hrHPV test every five years</li>\r\n</ul>\r\n<p><b>Colorectal cancer</b> (one of the following starting at age 45)</p>\r\n<ul>\r\n<li>Stool test every one to three years</li>\r\n<li>DNA testing (Cologuard or a similar test) every one to three years</li>\r\n<li>Direct visualization test (colonoscopy) every five to 10 years, depending on the test</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-fbc14ff83f","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-fbc14ff83f":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:31Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-fbc14ff83f":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:31Z"}}},"classic_card_172399060":{"id":"classic-card-815b326948","image":{"id":"classic-card-815b326948","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-815b326948":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:39Z"}}},"headline":"Your 40s — Men","headlineLevel":"h2","description":"<p><b>Colorectal cancer</b> (one of the following, starting at age 45)</p>\r\n<ul>\r\n<li>Stool test every one to three years</li>\r\n<li>DNA testing (Cologuard or a similar test) every one to three years</li>\r\n<li>Direct visualization test (colonoscopy) every five to 10 years, depending on the test</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-815b326948","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-815b326948":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:39Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-815b326948":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:39Z"}}},"classic_card_40641768":{"id":"classic-card-a72a0470c6","image":{"id":"classic-card-a72a0470c6","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-a72a0470c6":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:49Z"}}},"headline":"Your 50s — Women","headlineLevel":"h2","description":"<p><b>Breast cancer</b></p>\r\n<ul>\r\n<li><p>Mammogram screening every two years</p>\r\n</li>\r\n</ul>\r\n<p><b>Cervical cancer</b> (one of the following)</p>\r\n<ul>\r\n<li>Pap test every three years</li>\r\n<li>HrHPV test every five years</li>\r\n<li>Pap test and hrHPV test every five years</li>\r\n</ul>\r\n<p><b>Colorectal cancer</b> (one of the following)</p>\r\n<ul>\r\n<li>Stool test every one to three years</li>\r\n<li>DNA testing (Cologuard or a similar test) every one to three years</li>\r\n<li>Direct visualization test (colonoscopy) every five to 10 years, depending on the test</li>\r\n</ul>\r\n<p><b>Lung cancer </b>(adults who have a 20-year pack-year* history and are currently smoking or have quit within the last 15 years)</p>\r\n<ul>\r\n<li><p>Low-dose computed tomography (CT) chest scan every year</p>\r\n</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-a72a0470c6","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-a72a0470c6":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:49Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-a72a0470c6":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:49Z"}}},"classic_card_1011561944":{"id":"classic-card-517b989b8e","image":{"id":"classic-card-517b989b8e","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-517b989b8e":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:58Z"}}},"headline":"Your 50s — Men","headlineLevel":"h2","description":"<p><b>Colorectal cancer</b> (one of the following)</p>\r\n<ul>\r\n<li>Stool test every one to three years</li>\r\n<li>DNA testing (Cologuard or a similar test) every one to three years</li>\r\n<li>Direct visualization test (colonoscopy) every five to 10 years, depending on the test</li>\r\n</ul>\r\n<p><b>Lung cancer </b>(adults who have a 20-year pack-year* history and are currently smoking or have quit within the last 15 years)</p>\r\n<ul>\r\n<li><p>Low-dose computed tomography (CT) chest scan every year</p>\r\n</li>\r\n</ul>\r\n<p><b>Prostate cancer</b> (starting at age 55)</p>\r\n<ul>\r\n<li><p>Prostate-specific antigen (PSA) test (talk with your doctor about the risks and benefits)</p>\r\n</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-517b989b8e","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-517b989b8e":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:58Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-517b989b8e":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:58:58Z"}}},"classic_card_1502122111":{"id":"classic-card-10c908f519","image":{"id":"classic-card-10c908f519","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-10c908f519":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:59:30Z"}}},"headline":"Your 60s — Women","headlineLevel":"h2","description":"<p><b>Breast cancer</b></p>\r\n<ul>\r\n<li><p>Mammogram screening every two years</p>\r\n</li>\r\n</ul>\r\n<p><b>Cervical cancer</b> (one of the following until age 65)</p>\r\n<ul>\r\n<li>Pap test every three years</li>\r\n<li>HrHPV test every five years</li>\r\n<li>Pap test and hrHPV test every five years</li>\r\n</ul>\r\n<p><b>Colorectal cancer</b> (one of the following)</p>\r\n<ul>\r\n<li>Stool test every one to three years</li>\r\n<li>DNA testing (Cologuard or a similar test) every one to three years</li>\r\n<li>Direct visualization test (colonoscopy) every five to 10 years, depending on the test</li>\r\n</ul>\r\n<p><b>Lung cancer</b> (adults who have a 20-year pack-year* history and are currently smoking or have quit within the last 15 years)</p>\r\n<ul>\r\n<li><p>Low-dose CT chest scan every year</p>\r\n</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-10c908f519","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-10c908f519":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:59:30Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-10c908f519":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:59:30Z"}}},"classic_card_345891575":{"id":"classic-card-42cb7e81c1","image":{"id":"classic-card-42cb7e81c1","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-42cb7e81c1":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:59:41Z"}}},"headline":"Your 60s — Men","headlineLevel":"h2","description":"<p><b>Colorectal cancer</b> (one of the following)</p>\r\n<ul>\r\n<li>Stool test every one to three years</li>\r\n<li>DNA testing (Cologuard or a similar test) every one to three years</li>\r\n<li>Direct visualization test (colonoscopy) every five to 10 years, depending on the test</li>\r\n</ul>\r\n<p><b>Lung cancer</b> (adults who have a 20-year pack-year* history and are currently smoking or have quit within the last 15 years)</p>\r\n<ul>\r\n<li><p>Low-dose CT chest scan every year</p>\r\n</li>\r\n</ul>\r\n<p><b>Prostate cancer</b></p>\r\n<ul>\r\n<li><p>PSA test (talk with your doctor about the risks and benefits)</p>\r\n</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-42cb7e81c1","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-42cb7e81c1":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:59:41Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-42cb7e81c1":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:59:41Z"}}},"classic_card_1624423424":{"id":"classic-card-46e317de1e","image":{"id":"classic-card-46e317de1e","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-46e317de1e":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:59:51Z"}}},"headline":"Your 70s — Women","headlineLevel":"h2","description":"<p><b>Breast cancer</b> (until age 74)</p>\r\n<ul>\r\n<li><p>Mammogram screening every two years</p>\r\n</li>\r\n</ul>\r\n<p><b>Colorectal cancer</b> (one of the following until age 75)</p>\r\n<ul>\r\n<li>Stool test every one to three years</li>\r\n<li>DNA testing (Cologuard or a similar test) every one to three years</li>\r\n<li>Direct visualization test (colonoscopy) every five to 10 years, depending on the test</li>\r\n</ul>\r\n<p><b>Lung cancer</b> (adults who have a 20-year pack-year* history and are currently smoking or have quit within the last 15 years)</p>\r\n<ul>\r\n<li><p>Low-dose CT chest scan every year</p>\r\n</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-46e317de1e","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-46e317de1e":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:59:51Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-46e317de1e":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T15:59:51Z"}}},"classic_card_895706554":{"id":"classic-card-8147ad17ed","image":{"id":"classic-card-8147ad17ed","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-8147ad17ed":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T16:00:04Z"}}},"headline":"Your 70s — Men","headlineLevel":"h2","description":"<p><b>Colorectal cancer</b> (one of the following until age 75)</p>\r\n<ul>\r\n<li>Stool test every one to three years</li>\r\n<li>DNA testing (Cologuard or a similar test) every one to three years</li>\r\n<li>Direct visualization test (colonoscopy) every five to 10 years, depending on the test</li>\r\n</ul>\r\n<p><b>Lung cancer</b> (adults who have a 20-year pack-year* history and are currently smoking or have quit within the last 15 years)</p>\r\n<ul>\r\n<li><p>Low-dose CT chest scan every year</p>\r\n</li>\r\n</ul>\r\n<p><b>Skin cancer</b></p>\r\n<ul>\r\n<li><p>Regular exams are recommended on an annual basis to check for skin changes. Talk to your doctor about the best screening for you.</p>\r\n</li>\r\n</ul>\r\n","cta":{"id":"classic-card-8147ad17ed","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-8147ad17ed":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T16:00:04Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-8147ad17ed":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-06-04T16:00:04Z"}}}},":itemsOrder":["classic_card","classic_card_1224756726","classic_card_1502791932","classic_card_1349262564","classic_card_1319966539","classic_card_172399060","classic_card_40641768","classic_card_1011561944","classic_card_1502122111","classic_card_345891575","classic_card_1624423424","classic_card_895706554"],"appliedCssClassNames":"topSpacing--default bottomSpacing--none","dataLayer":{"content-grid-d2b49756a6":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-06-04T20:39:06Z"}}},"rich_text":{"id":"rich-text-1a3e9325a7","content":"<p>*In the lung cancer guidelines, your pack-year history is the number of years you smoked multiplied by your number of packs per day.</p>\r\n","cta":{"id":"rich-text-1a3e9325a7","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--small bottomSpacing--default","dataLayer":{"rich-text-1a3e9325a7":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-06-04T20:41:13Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--small bottomSpacing--default","dataLayer":{"rich-text-1a3e9325a7":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-06-04T20:41:13Z"}}},"background_111753613":{"id":"background-7748db9d54",":type":"unchealth/components/containers/background",":items":{"content_grid":{"id":"content-grid-5214aea3e0",":type":"unchealth/components/containers/content-grid",":items":{"rich_text":{"id":"rich-text-92a83f8e0b","content":"<h2>There when you need us&nbsp;</h2>\r\n<p>If a screening shows possible cancer, UNC Health offers compassionate, expert diagnosis and treatment. Our cancer specialists are located in convenient locations across North Carolina and will work to schedule you as quickly as possible.</p>\r\n","cta":{"id":"rich-text-92a83f8e0b","style":"primaryButton","label":"Learn about UNC Health Cancer","descriptiveText":"Learn more","href":"https://www.unchealth.org/care-services/areas-of-care/cancer-care","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-92a83f8e0b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-06-04T15:56:00Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-92a83f8e0b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-06-04T15:56:00Z"}}}},":itemsOrder":["rich_text"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"content-grid-5214aea3e0":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-06-02T20:27:41Z"}}}},":itemsOrder":["content_grid"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-7748db9d54":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-06-02T20:27:31Z"}}}},":type":"wcm/foundation/components/responsivegrid"},"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":[],":items":{},":type":"wcm/foundation/components/responsivegrid"},"responsivegrid_footer":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":[],":items":{},":type":"wcm/foundation/components/responsivegrid"},"experiencefragment-footer":{":type":"unchealth/components/core/experiencefragment",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["global_footer","gsight_survey"],":items":{"global_footer":{"id":"global-footer-d52d3c0a68","logoLink":"/home","address":"101 Manning Drive\r\nChapel Hill, NC 27514","mapLinkLabel":"Open in Maps","phoneNumber":"984-974-1000","socialIcons":[{"platform":"facebook","descriptiveText":"facebook","href":"https://www.facebook.com/unchealthcare","target":"_blank"},{"platform":"twitter","descriptiveText":"Twitter","href":"https://twitter.com/unc_health_care","target":"_blank"},{"platform":"instagram","descriptiveText":"Instagram","href":"https://www.instagram.com/unchealth/","target":"_blank"},{"platform":"youtube","descriptiveText":"Youtube","href":"https://www.youtube.com/@UNCHealth","target":"_blank"},{"platform":"linkedIn","descriptiveText":"LinkedIn","href":"https://www.linkedin.com/company/unchealth/","target":"_blank"}],"leftPanelLinks":[{"id":"-ea096941aa","label":"News & Media","href":"https://news.unchealthcare.org/?_ga=2.176331429.1459326530.1662751404-1169189291.1662751404","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ea096941aa":{"@type":"nt:unstructured"}}},{"id":"-b5d20eda57","label":"Sitemap","href":"/sitemap","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-b5d20eda57":{"@type":"nt:unstructured"}}}],"topLinks":[{"id":"-e96cda7de2","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-e96cda7de2":{"@type":"nt:unstructured"}}},{"id":"-a11bbd30bf","label":"Contact Us","href":"/contact-us","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-a11bbd30bf":{"@type":"nt:unstructured"}}},{"id":"-e03e106f24","label":"Clinical Trials","href":"https://researchforme.unc.edu/index.php/en/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-e03e106f24":{"@type":"nt:unstructured"}}},{"id":"-8f96f7450b","label":"Sign In to My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-8f96f7450b":{"@type":"nt:unstructured"}}}],"mainLinks":[{"title":"About US","links":[{"id":"-9c6be1e0fb","label":"Who We Are","href":"/about-us/who-we-are","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-9c6be1e0fb":{"@type":"nt:unstructured"}}},{"id":"-7592e7a14a","label":"Compliance Office","href":"/about-us/compliance-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-7592e7a14a":{"@type":"nt:unstructured"}}},{"id":"-32cf185a22","label":"Privacy Office","href":"/about-us/privacy-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-32cf185a22":{"@type":"nt:unstructured"}}},{"id":"-5fd6c6b0be","label":"OHCA Members","href":"/about-us/ohca-members","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-5fd6c6b0be":{"@type":"nt:unstructured"}}},{"id":"-ee2055897e","label":"Price Transparency","descriptiveText":"View Standard Charges links for UNC Health hospitals","href":"/records-insurance/standard-charges","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ee2055897e":{"@type":"nt:unstructured"}}},{"id":"-392fd0fff5","label":"Accessibility at UNC Health","descriptiveText":"Accessibility at UNC Health link","href":"/about-us/accessibility-at-unc-health","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-392fd0fff5":{"@type":"nt:unstructured"}}},{"id":"-1651442bd8","label":"Financial Assistance","descriptiveText":"link to Financial Assistance page","href":"/records-insurance/financial-assistance-programs","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-1651442bd8":{"@type":"nt:unstructured"}}},{"id":"-c015c30511","label":"Equal Employment Opportunity Policy Statement","descriptiveText":"link to EOO policy","href":"https://www.unchealthcare.org/app/files/public/415447ef-be77-45ae-bdab-e818ac20b001/pdf-system-unc-health-eeo-aa-statement.pdf","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c015c30511":{"@type":"nt:unstructured"}}},{"id":"-93a5d19758","label":"AI and UNC Health","descriptiveText":"link to AI at UNC Health policy","href":"/about-us/ai-at-unc-health","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-93a5d19758":{"@type":"nt:unstructured"}}}]},{"title":"Medical & Clinical Professionals","links":[{"id":"-d3ce5b18c0","label":"Fellowship Program","href":"/for-medical-professionals/fellowship-program","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-d3ce5b18c0":{"@type":"nt:unstructured"}}},{"id":"-65b868d795","label":"House Staff Council","href":"/for-medical-professionals/house-staff-council","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-65b868d795":{"@type":"nt:unstructured"}}},{"id":"-4c0742bcb4","label":"Professional Liability Insurance Verification","descriptiveText":"Link to Professional Liability Insurance Verification page","href":"/for-medical-professionals/professional-liability-insurance-verification","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4c0742bcb4":{"@type":"nt:unstructured"}}}]},{"title":"For UNC Health Employees","links":[{"id":"-8014bacef5","label":"Well-being Program","href":"/for-unch-health-professionals/well-being-for-unc-health-teammates","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-8014bacef5":{"@type":"nt:unstructured"}}},{"id":"-1f06a161b7","label":"Epic@UNC Training ","href":"/for-unch-health-professionals/epic-training","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-1f06a161b7":{"@type":"nt:unstructured"}}},{"id":"-4a5dc88f61","label":"Working Forward","href":"/for-unch-health-professionals/working-forward","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4a5dc88f61":{"@type":"nt:unstructured"}}}]},{"title":"Supporting Our Community","links":[{"id":"-b8f3ffd465","label":"Giving","href":"https://unchealthfoundation.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-b8f3ffd465":{"@type":"nt:unstructured"}}},{"id":"-2016ed7077","label":"Caring for Our Communities","href":"/supporting-our-community/caring-for-our-communities","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-2016ed7077":{"@type":"nt:unstructured"}}}]}],"utilityLinks":[{"id":"-17ad816358","label":"Website Privacy Policy","href":"https://www.unchealthcare.org/app/files/public/6fe67aba-927b-4950-82ee-b5a3c4a81394/pdf-system-unc-health-website-privacy-policy.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-17ad816358":{"@type":"nt:unstructured"}}},{"id":"-556cabfed4","label":"Website Terms and Conditions","href":"https://www.unchealthcare.org/app/files/public/37e972c1-d9ba-4a00-a998-7699f14c4cb7/pdf-system-unc-health-websites-terms-and-conditions.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-556cabfed4":{"@type":"nt:unstructured"}}},{"id":"-4b5105e780","label":"Notice of Privacy Practices","href":"https://www.unchealthcare.org/app/files/public/169/Notice-of-Privacy-Practice.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4b5105e780":{"@type":"nt:unstructured"}}},{"id":"-4e32460471","label":"Non-Discrimination Notice and Notice of Availability","href":"https://www.unchealthcare.org/app/files/public/7035/pdf-system-unc-health-care-nondiscrimination-notice.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4e32460471":{"@type":"nt:unstructured"}}},{"id":"-5741677d5c","label":"Surprise Billing and Good Faith Estimate Notices","href":"https://www.unchealthcare.org/app/files/public/1902c85a-5f29-4bd3-bb4d-2c906c48e769/pdf-system-surprise-billing-gfe-notice-english.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-5741677d5c":{"@type":"nt:unstructured"}}},{"id":"-b83cd5bcca","label":"UNC Health SMS Terms and Conditions","descriptiveText":"Link to UNC Health SMS Terms and Conditions PDF","href":"https://www.unchealth.org/pdfs/legal-documents/pdf-system-unc-health-sms-terms-conditions.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-b83cd5bcca":{"@type":"nt:unstructured"}}}],"utilityLinksSpanish":[{"id":"-688679cd07","label":"Aviso de Praticas Privadas","href":"https://www.unchealthcare.org/app/files/public/170/Aviso-de-Practicas-Privadas.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-688679cd07":{"@type":"nt:unstructured"}}},{"id":"-e4c86d57d6","label":"Aviso de no Discriminación y Aviso de Disponibilidad","href":"https://www.unchealthcare.org/app/files/public/61397723-4548-4dd8-be08-734a04e7b306/pdf-system-unc-health-care-aviso-de-no-discriminaci%C3%B3n.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-e4c86d57d6":{"@type":"nt:unstructured"}}},{"id":"-c0e0f9e3f5","label":"Avisos de facturas médicas sorpresas y avisos de presupuestos de buena fe","href":"https://www.unchealthcare.org/app/files/public/5f731a2c-291f-42ad-9a00-b15f4aa36478/pdf-system-surprise-billing-gfe-notice-spanish.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c0e0f9e3f5":{"@type":"nt:unstructured"}}}],"disclaimerLinks":[{"id":"-91659fab16","label":"Accessibility","href":"/about-us/accessibility-at-unc-health/language-accessibility-services/website-accessibility-statement","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-91659fab16":{"@type":"nt:unstructured"}}}],"copyright":"©2026 UNC Health. \r\nAll rights reserved.",":type":"unchealth/components/content/global-footer","dataLayer":{"global-footer-d52d3c0a68":{"@type":"unchealth/components/content/global-footer","repo:modifyDate":"2025-12-05T20:10:26Z"}}},"gsight_survey":{"id":"gsight-survey-0a343f37a3","samplingPercentage":50,"popupDelayInSeconds":50,"hideGSightSurvey":false,"clientId":"d790eed4-ab64-eb11-8272-12cf99399697",":type":"unchealth/components/content/gsight-survey","dataLayer":{"gsight-survey-0a343f37a3":{"@type":"unchealth/components/content/gsight-survey","repo:modifyDate":"2023-07-06T20:52:16Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}}},":type":"wcm/foundation/components/responsivegrid"}},":hierarchyType":"page",":path":"/content/unchealth/us/en/care-services/areas-of-care/cancer-care/cancer-screening","dataLayer":{"page-915320836d":{"@type":"unchealth/components/core/page","repo:modifyDate":"2026-06-05T12:22:22Z"}}}