{"id":"page-249ddebefd","pageData":{},"thumbnail":"https://www.unchealth.org/etc.clientlibs/unchealth/clientlibs/clientlib-react/resources/logo1200x630.png","templateName":"t01-basic-page","contentLanguage":"en","cssClassNames":"page basicpage","metaDescription":"Get diagnosis and treatment in North Carolina for all types of pituitary disorders from UNC Health endocrinologists near you.","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","contentType":"general","pagePath":"/care-services/areas-of-care/brain-nervous-system/pituitary-disorders.model.json","description":"Get diagnosis and treatment in North Carolina for all types of pituitary disorders from UNC Health endocrinologists near you.","url":"https://www.unchealth.org/care-services/areas-of-care/brain-nervous-system/pituitary-disorders","title":"Pituitary Disorders | 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-99b42e6cdf","i18n":{"globalAlertsGeneralLabel":"General Alerts","globalAlertsPriorityLabel":"Priority Alerts"},":type":"unchealth/components/content/global-alerts","dataLayer":{"global-alerts-99b42e6cdf":{"@type":"unchealth/components/content/global-alerts","repo:modifyDate":"2026-02-16T17:18:37Z"}}},"global_header":{"id":"global-header-1e9b0c5fe1","logoLink":"/home","myChartCta":{"id":"global-header-1e9b0c5fe1","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-1e9b0c5fe1":{"@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-03cdd12220","image":{"id":"nav-feauture-card-03cdd12220","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-03cdd12220":{"@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-03cdd12220","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-03cdd12220":{"@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-03cdd12220":{"@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-4c3e5c1806","image":{"id":"nav-feauture-card-4c3e5c1806","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-4c3e5c1806":{"@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-4c3e5c1806","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-4c3e5c1806":{"@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-4c3e5c1806":{"@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-cc1a965c74","image":{"id":"nav-feauture-card-cc1a965c74","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-cc1a965c74":{"@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-cc1a965c74","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-cc1a965c74":{"@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-cc1a965c74":{"@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":"-64a5b4a32c","label":"How to Schedule Care","href":"/care-services/ways-to-schedule-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-64a5b4a32c":{"@type":"nt:unstructured"}}},{"id":"-a3dc3629d4","label":"Pay My Bill","href":"/records-insurance/pay-my-bill","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-a3dc3629d4":{"@type":"nt:unstructured"}}},{"id":"-eb7249dc73","label":"Urgent & Emergency Care","href":"/care-services/urgent-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-eb7249dc73":{"@type":"nt:unstructured"}}},{"id":"-c0985946d5","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c0985946d5":{"@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":"-2cfec2dc76","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-2cfec2dc76":{"@type":"nt:unstructured"}}}},{"iconName":{"name":"profile","title":"Profile"},"cta":{"id":"-5c07bb56ca","label":"My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-5c07bb56ca":{"@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","locale":"en","endpoint":"https://liveapi.yext.com/v2/accounts/me/search/autocomplete","apiKey":"fcb2c208969a29f6bc66c93d5737793e",":type":"unchealth/components/content/global-header","dataLayer":{"global-header-1e9b0c5fe1":{"@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":"Brain & Nervous System","pageUrl":"/care-services/areas-of-care/brain-nervous-system"}],"activePage":[{"pageName":"Pituitary Disorders","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","content_grid_copy_co","background","image_grid_copy_copy","content_grid_copy_co_111903473","accordion_copy_copy_","background_1262584638","video","background_1689425353","content_grid_copy_co_2066916316"],":items":{"page_title_banner_co":{"id":"page-title-banner-990b059ed6","headline":"Pituitary Disorders","description":"<p>Your pituitary gland makes chemical signals called hormones that help control how your body works. Problems with this gland may lead to too many or too few hormones.</p>\r\n","image":{"id":"page-title-banner-990b059ed6","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-pituitary-banner.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":692,"width":900,"disableCsr":false,":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--default","dataLayer":{"page-title-banner-990b059ed6":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-06T19:55:28Z"}}},"cta":{"label":"Find a doctor","descriptiveText":"Find a doctor","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%22Endocrinology%2C+Diabetes+and+Metabolism%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":"_self","disableCsr":false},"secondaryCta":{"label":null,"descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--default","dataLayer":{"page-title-banner-990b059ed6":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-06T19:55:28Z"}}},"content_grid_copy_co":{"id":"content-grid-a80abe07a8",":type":"unchealth/components/containers/content-grid",":items":{"classic_card":{"id":"classic-card-9f5e8e306d","image":{"id":"classic-card-9f5e8e306d","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-9f5e8e306d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-06T19:58:20Z"}}},"headline":"Summary: Pituitary disorder care at UNC Health","headlineLevel":"h2","subheading":"Our trusted experts can help you feel better.","description":"<ul>\r\n<li>The pituitary gland makes important hormones and helps other glands in your endocrine system work.</li>\r\n<li>A pituitary gland disorder could be a tumor on the gland or a condition that affects how it makes hormones.</li>\r\n<li>These hormones affect how your body grows and how it responds to stress.</li>\r\n<li>A UNC Health care team can get you back to feeling more like yourself.</li>\r\n</ul>\r\n","cta":{"id":"classic-card-9f5e8e306d","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-9f5e8e306d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-06T19:58:20Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-9f5e8e306d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-06T19:58:20Z"}}}},":itemsOrder":["classic_card"],"appliedCssClassNames":"topSpacing--none bottomSpacing--small","dataLayer":{"content-grid-a80abe07a8":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2025-08-26T13:33:28Z"}}},"background":{"id":"background-c55084421e",":type":"unchealth/components/containers/background",":items":{"rich_text_copy":{"id":"rich-text-fa9212789b","content":"<h2>What are pituitary gland disorders?</h2>\r\n<p>In most cases, pituitary disorders are the result of a tumor on the gland or a condition that causes the pituitary to make too many or too few hormones. These disorders can cause serious problems, like infertility or changing how a child grows.</p>\r\n","cta":{"id":"rich-text-fa9212789b","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-fa9212789b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:03:36Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-fa9212789b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:03:36Z"}}},"image_grid_copy_copy":{"id":"image-grid-c261fceb2a","headline":"Why is your pituitary gland important?","description":"<div>The pituitary gland is located behind your nose and makes important hormones that affect:</div>\r\n<ul>\r\n<li>How your body grows</li>\r\n<li>Your ability to reproduce</li>\r\n<li>How you respond to stress</li>\r\n</ul>\r\n<p>It’s also called the “master gland” because it helps control how other glands in your endocrine system work.</p>\r\n","images":[{"id":"-c19ccdafab","altText":"Patient with a headache explaining symptoms to doctor","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-patient-headache.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":733,"width":900,"disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c19ccdafab":{"@type":"nt:unstructured"}}}],"cta":{"id":"image-grid-c261fceb2a","style":"secondary","descriptiveText":"Find a Doctor","target":"_self","disableCsr":false,":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--medium bottomSpacing--medium","dataLayer":{"image-grid-c261fceb2a":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-06T21:00:51Z"}}},":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--medium bottomSpacing--medium","dataLayer":{"image-grid-c261fceb2a":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-06T21:00:51Z"}}},"content_grid_1934225":{"id":"content-grid-46384afb8a","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"What are the types of pituitary disorders?","headingLevel":"h2","description":"<p>A wide range of disorders can affect the pituitary gland. It may swell, or it may be affected by a tumor. Many of these disorders make the gland produce too much or too little of the hormones it makes on its own or through other glands and organs in the endocrine system.</p>\r\n",":type":"unchealth/components/containers/content-grid",":items":{"utility_card":{"id":"utility-card-322d400fa4","size":"large","icon":{"name":null,"title":null},"description":"<p>Pituitary adenomas are noncancerous tumors that can change how your gland works and press on nearby organs, causing problems like headaches or blurred vision.</p>\r\n","cta":{"label":"Pituitary adenomas","descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/utility-card","dataLayer":{"utility-card-322d400fa4":{"@type":"unchealth/components/content/utility-card","repo:modifyDate":"2026-05-06T20:07:09Z"}}},"utility_card_1531288386":{"id":"utility-card-8d77ef6729","size":"large","icon":{"name":null,"title":null},"description":"<p>When you have hypopituitarism, your gland isn’t making enough of the hormones that you need to feel well. Symptoms will depend on which hormones you are lacking.</p>\r\n","cta":{"label":"Hypopituitarism","descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/utility-card","dataLayer":{"utility-card-8d77ef6729":{"@type":"unchealth/components/content/utility-card","repo:modifyDate":"2026-05-06T20:07:23Z"}}},"utility_card_97093943":{"id":"utility-card-790578bbf2","size":"large","icon":{"name":null,"title":null},"description":"<p>Hyperpituitarism means having an overactive pituitary gland that is making too many hormones. This condition is often caused by a tumor on your gland.</p>\r\n","cta":{"label":"Hyperpituitarism","descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/utility-card","dataLayer":{"utility-card-790578bbf2":{"@type":"unchealth/components/content/utility-card","repo:modifyDate":"2026-05-06T20:08:01Z"}}},"utility_card_444646583":{"id":"utility-card-5df9913011","size":"large","icon":{"name":null,"title":null},"description":"<p>Also known as hypercortisolism, Cushing syndrome occurs when the body is making too much of the hormone called cortisol. Too much cortisol can increase your breathing rate and blood pressure.</p>\r\n","cta":{"label":"Cushing syndrome","descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/utility-card","dataLayer":{"utility-card-5df9913011":{"@type":"unchealth/components/content/utility-card","repo:modifyDate":"2026-05-06T20:08:16Z"}}}},":itemsOrder":["utility_card","utility_card_1531288386","utility_card_97093943","utility_card_444646583"],"appliedCssClassNames":"topSpacing--small bottomSpacing--default","dataLayer":{"content-grid-46384afb8a":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-05-08T19:22:19Z"}}}},":itemsOrder":["rich_text_copy","image_grid_copy_copy","content_grid_1934225"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-c55084421e":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-06T19:59:06Z"}}},"image_grid_copy_copy":{"id":"image-grid-7cc760a3f5","headline":"Your pituitary disorder care team","description":"<p>Your care team at UNC Health will depend on your unique needs and may include an endocrinologist, a primary care physician, a neurosurgeon and a nurse practitioner. They will bring their own expertise to your team and focus on helping you feel better.</p>\r\n","images":[{"id":"-705c96b88c","altText":"Physicians looking at results on clipboard","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/brain---nervous-system/img-aoc-brain-nervous-system-doctors.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":564,"width":800,"disableCsr":false,":type":"nt:unstructured","dataLayer":{"-705c96b88c":{"@type":"nt:unstructured"}}}],"cta":{"id":"image-grid-7cc760a3f5","style":"secondary","label":"Find a doctor","descriptiveText":"Find a Doctor","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%22Endocrinology%2C+Diabetes+and+Metabolism%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","dataLayer":{"image-grid-7cc760a3f5":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-06T20:11:02Z"}}},":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"image-grid-7cc760a3f5":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-06T20:11:02Z"}}},"content_grid_copy_co_111903473":{"id":"content-grid-1cab146406","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show all","visibilityCtaCollapseLabel":"Show less","visibilityCtaStyle":"secondary","headingLevel":"h2",":type":"unchealth/components/containers/content-grid",":items":{"rich_text_copy_330034922":{"id":"rich-text-3912b91bea","content":"<h4>Endocrinologist</h4>\r\n<p>An endocrinologist is a doctor who diagnoses and treats disorders of the endocrine system, including diabetes, abnormal function and tumors of the endocrine glands, and thyroid cancer.A neurologist is a doctor who specializes in brain health.</p>\r\n","cta":{"id":"rich-text-3912b91bea","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-3912b91bea":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:13:24Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-3912b91bea":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:13:24Z"}}},"rich_text_copy_1346334751":{"id":"rich-text-cdc3214991","content":"<h4>Primary care physician</h4>\r\n<p>A primary care physician is the doctor you see first for most health needs. They help take care of your overall health and can refer you to a specialist when needed.</p>\r\n","cta":{"id":"rich-text-cdc3214991","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-cdc3214991":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:13:40Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-cdc3214991":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:13:40Z"}}},"rich_text_copy_1645779601":{"id":"rich-text-ab9daa489e","content":"<h4>Neurosurgeon</h4>\r\n<p>A neurosurgeon is a surgeon who specializes in operating on the brain and spinal cord. They may operate on a tumor or growth on the pituitary gland.</p>\r\n","cta":{"id":"rich-text-ab9daa489e","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-ab9daa489e":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:13:59Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-ab9daa489e":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:13:59Z"}}},"rich_text":{"id":"rich-text-4a9dd14055","content":"<h4>Nurse practitioner</h4>\r\n<p>A nurse practitioner is a registered nurse with advanced training who works alone or with a doctor to diagnose your condition and manage your care by prescribing medications, ordering tests, performing exams and more.</p>\r\n","cta":{"id":"rich-text-4a9dd14055","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-4a9dd14055":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:14:14Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-4a9dd14055":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:14:14Z"}}}},":itemsOrder":["rich_text_copy_330034922","rich_text_copy_1346334751","rich_text_copy_1645779601","rich_text"],"appliedCssClassNames":"topSpacing--none bottomSpacing--small sideMargins--standard","dataLayer":{"content-grid-1cab146406":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-05-06T20:14:20Z"}}},"accordion_copy_copy_":{"headline":"Frequently asked questions","headingLevel":"h2","singleExpansion":false,"appliedCssClassNames":"topSpacing--small bottomSpacing--small",":itemsOrder":["item_1748882950922","item_1748882953947"],":items":{"item_1748882950922":{"id":"rich-text-3a0acd29a1","content":"<p>Risk factors for pituitary gland disorders include:</p>\r\n<ul>\r\n<li>Head or brain trauma</li>\r\n<li>Previous radiation treatment</li>\r\n<li>Family or genetic conditions that make you more likely to have pituitary tumors</li>\r\n</ul>\r\n","cta":{"id":"rich-text-3a0acd29a1","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-3a0acd29a1":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:20:17Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-3a0acd29a1":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:20:17Z"}},"cq:panelTitle":"What are the risk factors for pituitary gland disorders?"},"item_1748882953947":{"id":"rich-text-0c07d3bfef","content":"<p>Pituitary hormones include:</p>\r\n<ul>\r\n<li><b>Adrenocorticotropic hormone</b> (ACTH) helps the adrenal glands make cortisol, which the body releases during stressful situations.</li>\r\n<li><b>Follicle-stimulating hormone</b> helps the ovaries make eggs and helps the testes make sperm.</li>\r\n<li><b>Luteinizing hormone</b> helps the ovaries make estrogen and progesterone and helps the testes make testosterone.</li>\r\n<li><b>Growth hormone</b> helps bones and muscles grow and repairs damaged cells.</li>\r\n<li><b>Oxytocin</b> stimulates milk production during breastfeeding and helps the uterus contract during pregnancy and childbirth.</li>\r\n<li><b>Prolactin</b> stimulates the breast to produce milk.</li>\r\n<li><b>Thyroid-stimulating hormone</b> helps the thyroid gland make the hormone thyroxine, which aids in growth and how our body uses food as energy.</li>\r\n</ul>\r\n","cta":{"id":"rich-text-0c07d3bfef","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-0c07d3bfef":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:21:16Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-0c07d3bfef":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:21:16Z"}},"cq:panelTitle":"What hormones does the pituitary gland make?"}},":type":"unchealth/components/containers/accordion"},"background_1262584638":{"id":"background-81727629ab",":type":"unchealth/components/containers/background",":items":{"content_grid_copy_co":{"id":"content-grid-63f5efffe4","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headingLevel":"h2",":type":"unchealth/components/containers/content-grid",":items":{"task_card":{"id":"task-card-33eab4eb62","headline":"Find a doctor","headingLevel":"h2","description":"There’s a partner for you wherever you are on your health journey. ","illustration":{"name":"urgentCare","title":"Urgent Care"},"cta":{"id":"task-card-33eab4eb62","label":"View providers","descriptiveText":"View Providers","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%22Endocrinology%2C+Diabetes+and+Metabolism%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/task-card","dataLayer":{"task-card-33eab4eb62":{"@type":"unchealth/components/content/task-card","repo:modifyDate":"2026-05-06T20:22:44Z"}}},":type":"unchealth/components/content/task-card","dataLayer":{"task-card-33eab4eb62":{"@type":"unchealth/components/content/task-card","repo:modifyDate":"2026-05-06T20:22:44Z"}}},"task_card_1607752336":{"id":"task-card-75d2fc12b8","headline":"Find a location","headingLevel":"h2","description":"Get compassionate care throughout North Carolina with UNC Health. ","illustration":{"name":"virtualCare","title":"Virtual Care"},"cta":{"id":"task-card-75d2fc12b8","label":"Search locations","descriptiveText":"Search Locations","href":"https://www.unchealth.org/care-services/locations?specialties=SPEC-12","target":"_blank","disableCsr":false,":type":"unchealth/components/content/task-card","dataLayer":{"task-card-75d2fc12b8":{"@type":"unchealth/components/content/task-card","repo:modifyDate":"2026-05-06T20:22:40Z"}}},":type":"unchealth/components/content/task-card","dataLayer":{"task-card-75d2fc12b8":{"@type":"unchealth/components/content/task-card","repo:modifyDate":"2026-05-06T20:22:40Z"}}}},":itemsOrder":["task_card","task_card_1607752336"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"content-grid-63f5efffe4":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2025-11-24T16:25:29Z"}}}},":itemsOrder":["content_grid_copy_co"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-81727629ab":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-06T20:21:51Z"}}},"video":{"id":"video-3ac44a63fd","headline":"UNC Health Talk: Pituitary Tumors","headingLevel":"h4","title":"Play video","platform":"youTube","videoId":"ge_pXiTBZX8","videoThumbnail":{"id":"video-3ac44a63fd","defaultAspectRatio":"default","mobileAspectRatio":"default","disableCsr":false,":type":"unchealth/components/content/video","dataLayer":{"video-3ac44a63fd":{"@type":"unchealth/components/content/video","repo:modifyDate":"2026-05-08T18:37:55Z"}}},"verticalVideo":false,":type":"unchealth/components/content/video","dataLayer":{"video-3ac44a63fd":{"@type":"unchealth/components/content/video","repo:modifyDate":"2026-05-08T18:37:55Z"}}},"background_1689425353":{"id":"background-84693d98d3",":type":"unchealth/components/containers/background",":items":{"tab_container_copy_c":{"id":"tab-container-2dea46d77a","headline":"Where are you on your care journey? ","description":"<p>If you aren’t feeling well and a pituitary disorder may be the cause, UNC Health can find it quickly and offer you the best treatment options available.</p>\r\n",":type":"unchealth/components/containers/tab-container",":items":{"item_1748881429197":{"id":"tab-set-8c9b43637e","tabTitle":"Diagnosis",":type":"unchealth/components/containers/tab-set",":items":{"item_1748881467638":{"id":"rich-text-a1e7b0413a","content":"<h3>I’m looking for a diagnosis.</h3>\r\n<p>Whether you’re looking for a first diagnosis or are seeking a second opinion, we know you have questions about what comes next. UNC Health experts are here to help.</p>\r\n<h4>What are the symptoms of pituitary gland disorders?</h4>\r\n<p>Symptoms of pituitary disorders can include:</p>\r\n<ul>\r\n<li>Weight changes</li>\r\n<li>Headaches</li>\r\n<li>Fatigue (feeling very tired)</li>\r\n<li>Vision problems</li>\r\n<li>Mood changes</li>\r\n<li>Growth changes in children</li>\r\n<li>Mood swings</li>\r\n</ul>\r\n<h4>How are pituitary gland disorders diagnosed?</h4>\r\n<p>Your doctor will start with a thorough check-up and ask questions about your medical history. They may order tests to measure pituitary hormone levels in your blood or urine, as well as imaging tests like magnetic resonance imaging (MRI) or computed tomography (CT) scan.</p>\r\n","cta":{"id":"rich-text-a1e7b0413a","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-a1e7b0413a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:28:02Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-a1e7b0413a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:28:02Z"}}}},":itemsOrder":["item_1748881467638"],"dataLayer":{"tab-set-8c9b43637e":{"@type":"unchealth/components/containers/tab-set","repo:modifyDate":"2025-12-19T00:50:51Z"}}},"item_1748881439054":{"id":"tab-set-6ae5e42307","tabTitle":"Care & treatment",":type":"unchealth/components/containers/tab-set",":items":{"rich_text":{"id":"rich-text-ddacc5e359","content":"<h3>I’m looking for care and treatment.</h3>\r\n<p>UNC Health endocrinologists use the most advanced techniques for treatment and put your health at the center of everything they do.</p>\r\n<h4>How are pituitary gland disorders treated?</h4>\r\n<p>Treatment for pituitary disorders may involve one of the following treatments:</p>\r\n<ul>\r\n<li>Medication to lower the amount of hormones in your system</li>\r\n<li>Hormone replacement therapy to increase the hormone amount</li>\r\n<li>Surgery or radiation therapy to treat a tumor on the gland</li>\r\n</ul>\r\n","cta":{"id":"rich-text-ddacc5e359","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-ddacc5e359":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:29:35Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-ddacc5e359":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:29:35Z"}}}},":itemsOrder":["rich_text"],"dataLayer":{"tab-set-6ae5e42307":{"@type":"unchealth/components/containers/tab-set","repo:modifyDate":"2026-05-06T20:28:35Z"}}},"item_1748881440435":{"id":"tab-set-272ba5e9c4","tabTitle":"Post-treatment",":type":"unchealth/components/containers/tab-set",":items":{"item_1748881847532":{"id":"rich-text-cc520a6e1a","content":"<h3>I’ve been diagnosed and treated.</h3>\r\n<p>After treatment is finished, you’ll stay in touch with your care team so they can make sure that you are feeling better.</p>\r\n<h4>What post-treatment care is offered for pituitary gland disorders?</h4>\r\n<p>After treatment, you will continue to meet regularly with your doctor to talk about how you are feeling. You may also get regular testing. As a UNC Health patient, you’ll have access to wellness, nutrition, exercise and rehabilitation resources.</p>\r\n","cta":{"id":"rich-text-cc520a6e1a","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-cc520a6e1a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:30:29Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-cc520a6e1a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-06T20:30:29Z"}}}},":itemsOrder":["item_1748881847532"],"dataLayer":{"tab-set-272ba5e9c4":{"@type":"unchealth/components/containers/tab-set","repo:modifyDate":"2026-05-06T20:28:42Z"}}}},":itemsOrder":["item_1748881429197","item_1748881439054","item_1748881440435"],"appliedCssClassNames":"topSpacing--default bottomSpacing--none","dataLayer":{"tab-container-2dea46d77a":{"@type":"unchealth/components/containers/tab-container","repo:modifyDate":"2026-05-06T20:26:34Z"}}}},":itemsOrder":["tab_container_copy_c"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-84693d98d3":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-06T20:25:49Z"}}},"content_grid_copy_co_2066916316":{"id":"content-grid-6520cd1f45","gridGap":"default","columnCount":1,"mobileColumnCount":1,"visibilityCtaStyle":"secondary","headline":"Why choose UNC Health?","headingLevel":"h3",":type":"unchealth/components/containers/content-grid",":items":{"image_card":{"id":"image-card-f550498bec","headline":"Endocrine care for North Carolinians","description":"<p>UNC Health physician-scientists in endocrinology and metabolism deliver care to thousands of people each year in our hospitals and clinics while also conducting research with the UNC School of Medicine. Specialists in the UNC Health system care for patients with endocrine disorders throughout North Carolina and can access leading-edge treatments.</p>\r\n","image":{"id":"image-card-f550498bec","altText":"image of gloved provider using microscope","defaultImgSrc":"/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/fpo/AdobeStock_288553018_Preview.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":668,"width":1000,"disableCsr":false,":type":"unchealth/components/content/image-card","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"image-card-f550498bec":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-06T20:32:15Z"}}},"hideExpandText":true,":type":"unchealth/components/content/image-card","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"image-card-f550498bec":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-06T20:32:15Z"}}}},":itemsOrder":["image_card"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"content-grid-6520cd1f45":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-02-12T17:12:36Z"}}}},":type":"wcm/foundation/components/responsivegrid"},"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["health_talk_copy_cop"],":items":{"health_talk_copy_cop":{"id":"health-talk-eda6d3b17a","mode":"articleId","headline":"Related UNC Health Talk Articles","articles":[{"id":"18265"}],"contentCards":[{"title":"What is a Pituitary Tumor?","image":{"defaultImgSrc":"/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg","altText":"Man lays on exam table, entering CT machine","defaultWebPSrcSet":["/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/wordpress/HealthTalk_PituitaryTumor.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"]},"href":"https://healthtalk.unchealthcare.org/what-is-a-pituitary-tumor/","categories":["Endocrinology","Neurosurgery"],"date":1757894400000,"id":"18265"}],":type":"unchealth/components/content/health-talk","appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"health-talk-eda6d3b17a":{"@type":"unchealth/components/content/health-talk","repo:modifyDate":"2026-05-06T20:33:18Z"}}}},":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-e8c6c2fa30","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":"-2b24fd4dfc","label":"News & Media","href":"https://news.unchealthcare.org/?_ga=2.176331429.1459326530.1662751404-1169189291.1662751404","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-2b24fd4dfc":{"@type":"nt:unstructured"}}},{"id":"-2c210cf3b2","label":"Sitemap","href":"/sitemap","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-2c210cf3b2":{"@type":"nt:unstructured"}}}],"topLinks":[{"id":"-418aad5b5d","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-418aad5b5d":{"@type":"nt:unstructured"}}},{"id":"-b12feb5225","label":"Contact Us","href":"/contact-us","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-b12feb5225":{"@type":"nt:unstructured"}}},{"id":"-cdcf30d395","label":"Clinical Trials","href":"https://researchforme.unc.edu/index.php/en/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-cdcf30d395":{"@type":"nt:unstructured"}}},{"id":"-21447a5a18","label":"Sign In to My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-21447a5a18":{"@type":"nt:unstructured"}}}],"mainLinks":[{"title":"About US","links":[{"id":"-4fc38cd428","label":"Who We Are","href":"/about-us/who-we-are","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4fc38cd428":{"@type":"nt:unstructured"}}},{"id":"-551f615027","label":"Compliance Office","href":"/about-us/compliance-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-551f615027":{"@type":"nt:unstructured"}}},{"id":"-be25ffa7cc","label":"Privacy Office","href":"/about-us/privacy-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-be25ffa7cc":{"@type":"nt:unstructured"}}},{"id":"-65a75935fc","label":"OHCA Members","href":"/about-us/ohca-members","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-65a75935fc":{"@type":"nt:unstructured"}}},{"id":"-a4937b0a93","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":{"-a4937b0a93":{"@type":"nt:unstructured"}}},{"id":"-3f6ca33dc9","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":{"-3f6ca33dc9":{"@type":"nt:unstructured"}}},{"id":"-bb991e9ba5","label":"Financial Assistance","descriptiveText":"link to Financial Assistance page","href":"/records-insurance/financial-assistance-programs","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-bb991e9ba5":{"@type":"nt:unstructured"}}},{"id":"-d6667689d9","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":{"-d6667689d9":{"@type":"nt:unstructured"}}},{"id":"-c4d3de62e4","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":{"-c4d3de62e4":{"@type":"nt:unstructured"}}}]},{"title":"Medical & Clinical Professionals","links":[{"id":"-c3ada30863","label":"Fellowship Program","href":"/for-medical-professionals/fellowship-program","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c3ada30863":{"@type":"nt:unstructured"}}},{"id":"-ff7d225d3c","label":"House Staff Council","href":"/for-medical-professionals/house-staff-council","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ff7d225d3c":{"@type":"nt:unstructured"}}},{"id":"-df36ccacfa","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":{"-df36ccacfa":{"@type":"nt:unstructured"}}}]},{"title":"For UNC Health Employees","links":[{"id":"-7799973503","label":"Well-being Program","href":"/for-unch-health-professionals/well-being-for-unc-health-teammates","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-7799973503":{"@type":"nt:unstructured"}}},{"id":"-50f76f079b","label":"Epic@UNC Training ","href":"/for-unch-health-professionals/epic-training","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-50f76f079b":{"@type":"nt:unstructured"}}},{"id":"-368713a16b","label":"Working Forward","href":"/for-unch-health-professionals/working-forward","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-368713a16b":{"@type":"nt:unstructured"}}}]},{"title":"Supporting Our Community","links":[{"id":"-4cd5ffe6e1","label":"Giving","href":"https://unchealthfoundation.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4cd5ffe6e1":{"@type":"nt:unstructured"}}},{"id":"-bc36e4a2a3","label":"Caring for Our Communities","href":"/supporting-our-community/caring-for-our-communities","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-bc36e4a2a3":{"@type":"nt:unstructured"}}}]}],"utilityLinks":[{"id":"-297f2b8e88","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":{"-297f2b8e88":{"@type":"nt:unstructured"}}},{"id":"-c675c31489","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":{"-c675c31489":{"@type":"nt:unstructured"}}},{"id":"-031ae060ca","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":{"-031ae060ca":{"@type":"nt:unstructured"}}},{"id":"-3c25cd124e","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":{"-3c25cd124e":{"@type":"nt:unstructured"}}},{"id":"-28bead85aa","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":{"-28bead85aa":{"@type":"nt:unstructured"}}},{"id":"-6e04c8ffdd","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":{"-6e04c8ffdd":{"@type":"nt:unstructured"}}}],"utilityLinksSpanish":[{"id":"-8119830b5f","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":{"-8119830b5f":{"@type":"nt:unstructured"}}},{"id":"-0055c5217e","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":{"-0055c5217e":{"@type":"nt:unstructured"}}},{"id":"-41ff0c5f80","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":{"-41ff0c5f80":{"@type":"nt:unstructured"}}}],"disclaimerLinks":[{"id":"-66d068384f","label":"Accessibility","href":"/about-us/accessibility-at-unc-health/language-accessibility-services/website-accessibility-statement","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-66d068384f":{"@type":"nt:unstructured"}}}],"copyright":"©2026 UNC Health. \r\nAll rights reserved.",":type":"unchealth/components/content/global-footer","dataLayer":{"global-footer-e8c6c2fa30":{"@type":"unchealth/components/content/global-footer","repo:modifyDate":"2025-12-05T20:10:26Z"}}},"gsight_survey":{"id":"gsight-survey-a4e1d514b2","samplingPercentage":50,"popupDelayInSeconds":50,"hideGSightSurvey":false,"clientId":"d790eed4-ab64-eb11-8272-12cf99399697",":type":"unchealth/components/content/gsight-survey","dataLayer":{"gsight-survey-a4e1d514b2":{"@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/brain-nervous-system/pituitary-disorders","dataLayer":{"page-249ddebefd":{"@type":"unchealth/components/core/page","repo:modifyDate":"2026-05-08T19:22:39Z"}}}