{"id":"page-fb0e47dbcd","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 specialized care near you for peripheral artery disease (PAD) from UNC Hospitals providers in Chapel Hill and surrounding communities.","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","description":"Get specialized care near you for peripheral artery disease (PAD) from UNC Hospitals providers in Chapel Hill and surrounding communities.","contentType":"general","pagePath":"/care-services/areas-of-care/heart-vascular-care/peripheral-artery-disease/pad-care-near-you-chapel-hill.model.json","url":"https://www.unchealth.org/care-services/areas-of-care/heart-vascular-care/peripheral-artery-disease/pad-care-near-you-chapel-hill","title":"Peripheral Artery Disease| Chapel Hill","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-32946b7658","i18n":{"globalAlertsGeneralLabel":"General Alerts","globalAlertsPriorityLabel":"Priority Alerts"},":type":"unchealth/components/content/global-alerts","dataLayer":{"global-alerts-32946b7658":{"@type":"unchealth/components/content/global-alerts","repo:modifyDate":"2026-02-16T17:18:37Z"}}},"global_header":{"id":"global-header-86273a113e","logoLink":"/home","myChartCta":{"id":"global-header-86273a113e","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-86273a113e":{"@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-79816a16bd","image":{"id":"nav-feauture-card-79816a16bd","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-79816a16bd":{"@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-79816a16bd","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-79816a16bd":{"@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-79816a16bd":{"@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-8f8f19421f","image":{"id":"nav-feauture-card-8f8f19421f","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-8f8f19421f":{"@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-8f8f19421f","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-8f8f19421f":{"@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-8f8f19421f":{"@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-fb2fa92ee9","image":{"id":"nav-feauture-card-fb2fa92ee9","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-fb2fa92ee9":{"@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-fb2fa92ee9","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-fb2fa92ee9":{"@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-fb2fa92ee9":{"@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":"-4f4737efd0","label":"How to Schedule Care","href":"/care-services/ways-to-schedule-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4f4737efd0":{"@type":"nt:unstructured"}}},{"id":"-2fa49dfbb4","label":"Pay My Bill","href":"/records-insurance/pay-my-bill","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-2fa49dfbb4":{"@type":"nt:unstructured"}}},{"id":"-6826a63e9e","label":"Urgent & Emergency Care","href":"/care-services/urgent-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-6826a63e9e":{"@type":"nt:unstructured"}}},{"id":"-92ac5ff90a","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-92ac5ff90a":{"@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":"-0b497067d8","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-0b497067d8":{"@type":"nt:unstructured"}}}},{"iconName":{"name":"profile","title":"Profile"},"cta":{"id":"-f2ed1681f3","label":"My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-f2ed1681f3":{"@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-86273a113e":{"@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":"Heart & Vascular Care","pageUrl":"/care-services/areas-of-care/heart-vascular-care"},{"pageName":"Peripheral Artery Disease","pageUrl":"/care-services/areas-of-care/heart-vascular-care/peripheral-artery-disease"}],"activePage":[{"pageName":"PAD Care Near You Chapel Hill","childrenPages":[],"hasChildren":false}],"hideSubnav":true,":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_copy_co","image_grid","background_1609396034","content_grid_copy_co_1613181466","personalization_cont","content_grid_copy_co_443870209","background_353797076"],":items":{"page_title_banner_co":{"id":"page-title-banner-6b7455f9f3","headline":"Peripheral Artery Disease (PAD) Care Near You — Chapel Hill","description":"<p>UNC Hospitals offers care for PAD in Chapel Hill, Hillsborough and surrounding communities. Get compassionate support and expert treatment from your local care team.</p>\r\n","image":{"id":"page-title-banner-6b7455f9f3","defaultAspectRatio":"default","mobileAspectRatio":"default","disableCsr":false,":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--none","dataLayer":{"page-title-banner-6b7455f9f3":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-11T23:20:24Z"}}},"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%22Cardiology%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%2C%22affiliation%22%3A%5B%22%7B%5C%22c_affiliation%5C%22%3A%7B%5C%22%24eq%5C%22%3A%5C%22UNC+Hospitals%5C%22%7D%7D%22%5D%7D","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-6b7455f9f3":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-11T23:20:24Z"}}},"background":{"id":"background-f2b2a284f8",":type":"unchealth/components/containers/background",":items":{"content_grid_copy_co":{"id":"content-grid-374375fa3d","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"Diagnostics & screenings","headingLevel":"h2","description":"<p>Your primary care provider (PCP) can help you stay on top of your health and make a referral for diagnostics and screenings. If you don’t have a UNC Health PCP, find primary care near you. If you have a UNC Health PCP, request a referral by messaging your provider in My UNC Chart.</p>\r\n<p>Diagnostics and screenings available near you include:</p>\r\n",":type":"unchealth/components/containers/content-grid",":items":{"item_1726088678891":{"id":"rich-text-49c4533e4c","content":"<ul>\r\n<li>Advanced hemodynamic monitoring</li>\r\n<li>Cardiac computed tomography (CT)</li>\r\n<li>Cardiac magnetic resonance imaging (MRI)</li>\r\n<li>Cardiac computed tomography angiogram (CTA)</li>\r\n<li>Magnetic resonance angiogram (MRA)</li>\r\n<li>Contrast echocardiogram</li>\r\n<li>Transesophageal echocardiogram (TEE)</li>\r\n<li>Intracardiac echocardiogram (ICE)</li>\r\n<li>Exercise stress echocardiogram</li>\r\n</ul>\r\n<p> </p>\r\n","cta":{"id":"rich-text-49c4533e4c","style":"primaryButton","label":"Get primary care","descriptiveText":"Link to find a doctor filtered list","href":"https://www.unchealth.org/care-services/doctors?facetFilters=%7B%22acceptingPatients%22%3A%5B%22%7B%5C%22acceptingNewPatients%5C%22%3A%7B%5C%22%24eq%5C%22%3Atrue%7D%7D%22%5D%2C%22affiliation%22%3A%5B%22%7B%5C%22c_affiliation%5C%22%3A%7B%5C%22%24eq%5C%22%3A%5C%22UNC+Hospitals%5C%22%7D%7D%22%5D%2C%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%7D","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-49c4533e4c":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-11T23:22:41Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-49c4533e4c":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-11T23:22:41Z"}}},"item_1740589209290":{"id":"rich-text-cbf0fbe69b","content":"<ul>\r\n<li>Dobutamine stress echocardiogram</li>\r\n<li>Intravascular ultrasound (IVUS)</li>\r\n<li>Coronary calcium scoring</li>\r\n<li>Cardiac stress test</li>\r\n<li>Positron emission tomography (PET) scan</li>\r\n<li>Myocardial perfusion imaging (nuclear stress test)</li>\r\n<li>PET rubidium study</li>\r\n<li>Multiple gated acquisition (MUGA) scan</li>\r\n<li>Vasodilator challenges</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n","cta":{"id":"rich-text-cbf0fbe69b","style":"primaryButton","label":"Sign in to My UNC Chart","descriptiveText":"sign in to my unc chart","href":"https://www.myuncchart.org/MyChart/Authentication/Login?","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-cbf0fbe69b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-11T23:22:11Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-cbf0fbe69b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-11T23:22:11Z"}}}},":itemsOrder":["item_1726088678891","item_1740589209290"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"content-grid-374375fa3d":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-04-30T17:03:52Z"}}}},":itemsOrder":["content_grid_copy_co"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-f2b2a284f8":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-11T23:20:36Z"}}},"content_grid_copy_co":{"id":"content-grid-39b8a8b2c8","gridGap":"default","columnCount":3,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show all","visibilityCtaCollapseLabel":"Show less","visibilityCtaStyle":"secondary","headline":"Specialized care","headingLevel":"h2","description":"<p>At UNC Hospitals, we offer specialized care related to your condition. Explore the services below and talk to your care team to see if they’re right for you.</p>\r\n",":type":"unchealth/components/containers/content-grid",":items":{"item_1727801049639_c_1716489445":{"id":"classic-card-187054a3d1","image":{"id":"classic-card-187054a3d1","altText":"Illustration of the vascular system inside a body","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.unchealth.org/care-services/locations/unc-health-endovascular-center-chapel-hill","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-vascular-illustration-heart.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":450,"width":700,"srcTitle":"Human heart with blood vessels. 3d illustration","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-187054a3d1":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:36:26Z"}}},"headline":"UNC Health Endovascular Center","headlineLevel":"h2","description":"<p>Get screenings and diagnosis for PAD and other vascular conditions. Ask your primary care doctor for a referral.</p>\r\n","cta":{"id":"classic-card-187054a3d1","label":"View our services","descriptiveText":"link to view services","href":"https://www.unchealth.org/care-services/locations/unc-health-endovascular-center-chapel-hill","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-187054a3d1":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:36:26Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-187054a3d1":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:36:26Z"}}},"item_1727801049639_c":{"id":"classic-card-1daed70613","image":{"id":"classic-card-1daed70613","altText":"300 Meadowmont Village Circle","defaultImgSrc":"/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.unchealth.org/care-services/locations/unc-hospitals-vascular-services-at-meadowmont-vascular-chapel-hill","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3191,"width":5616,"disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-1daed70613":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:36:16Z"}}},"headline":"Expert care for PAD","headlineLevel":"h2","description":"<p>Get tests, medication support, surgical treatments and ongoing care for PAD at UNC Hospitals Vascular Services at Meadowmont (Vascular). Ask your doctor for a referral.</p>\r\n","cta":{"id":"classic-card-1daed70613","label":"View our services","descriptiveText":"view services link","href":"https://www.unchealth.org/care-services/locations/unc-hospitals-vascular-services-at-meadowmont-vascular-chapel-hill","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-1daed70613":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:36:16Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-1daed70613":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:36:16Z"}}},"item_1753458206715_c":{"id":"classic-card-c8cc3aded0","image":{"id":"classic-card-c8cc3aded0","defaultImgSrc":"/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.unchealth.org/care-services/locations/unc-hospitals-vascular-interventional-radiology-clinic-meadowmont","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3191,"width":5616,"disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-c8cc3aded0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:38:17Z"}}},"headline":"Vascular screenings near you","headlineLevel":"h2","description":"<p>Get screened for vascular conditions at the UNC Hospitals Vascular Interventional Radiology Clinic. Ask your primary care doctor for a referral.</p>\r\n","cta":{"id":"classic-card-c8cc3aded0","label":"View our services","descriptiveText":"Link to UNC Hospitals Vascular Interventional Radiology Clinic location page","href":"https://www.unchealth.org/care-services/locations/unc-hospitals-vascular-interventional-radiology-clinic-meadowmont","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-c8cc3aded0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:38:17Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-c8cc3aded0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:38:17Z"}}}},":itemsOrder":["item_1727801049639_c_1716489445","item_1727801049639_c","item_1753458206715_c"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"content-grid-39b8a8b2c8":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-05-11T23:25:13Z"}}},"image_grid":{"id":"image-grid-d6f9bf4206","headline":"UNC Hospitals Vascular and Complex Podiatry","description":"<p>At this extension of UNC Hospitals Vascular Services at Meadowmont in Chapel Hill, we provide PAD screenings, treatment and procedures to open arteries such as angioplasty and stents.</p>\r\n","images":[{"id":"-c3f4552061","altText":"Results, tablet and senior woman with doctor talking about healthcare data, report or communication in elderly care or consultation. Patient, nurse and advice in meeting with medical worker or expert","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/areas-of-care/cancer-care/bone-cancer/AdobeStock_636944559.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":422,"width":689,"srcTitle":"Results, tablet and senior woman with doctor talking about healthcare data, report or communication in elderly care or consultation. Patient, nurse and advice in meeting with medical worker or expert","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c3f4552061":{"@type":"nt:unstructured"}}}],"cta":{"id":"image-grid-d6f9bf4206","style":"secondary","label":"View our services","descriptiveText":"View our services","href":"https://www.unchealth.org/care-services/locations/unc-hospitals-vascular-and-complex-podiatry-unc-hospitals-hillsborough-campus","target":"_blank","disableCsr":false,":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"image-grid-d6f9bf4206":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-11T23:28:42Z"}}},":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"image-grid-d6f9bf4206":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-05-11T23:28:42Z"}}},"background_1609396034":{"id":"background-316b9b2571",":type":"unchealth/components/containers/background",":items":{"content_grid_copy_co":{"id":"content-grid-c43451b627","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show all","visibilityCtaCollapseLabel":"Show less","visibilityCtaStyle":"secondary","headline":"Ways to schedule","headingLevel":"h2","description":"<p>UNC Health offers several ways for you to make an appointment — from primary care that can help you meet your health and wellness goals to advanced care for complex conditions.</p>\r\n<p>Need help with scheduling? Call or text <a href=\"tel:984-974-CARE\">984-974-CARE</a>.</p>\r\n",":type":"unchealth/components/containers/content-grid",":items":{"item_1727801726042":{"id":"classic-card-e639ab6ab1","image":{"id":"classic-card-e639ab6ab1","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.myuncchart.org/MyChart/OpenScheduling","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-e639ab6ab1":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:30:24Z"}}},"headline":"Online scheduling ","headlineLevel":"h2","description":"<p>Several areas of care offer online scheduling for new patients via My UNC Chart. Select the care you need to view available appointments.</p>\r\n","cta":{"id":"classic-card-e639ab6ab1","label":"Schedule online","descriptiveText":"Link to scheduling","href":"https://www.myuncchart.org/MyChart/OpenScheduling","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-e639ab6ab1":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:30:24Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-e639ab6ab1":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:30:24Z"}}},"item_1727801727912_c":{"id":"classic-card-13b85c99ad","image":{"id":"classic-card-13b85c99ad","defaultAspectRatio":"default","mobileAspectRatio":"default","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%22Cardiology%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%2C%22affiliation%22%3A%5B%22%7B%5C%22c_affiliation%5C%22%3A%7B%5C%22%24eq%5C%22%3A%5C%22UNC+Hospitals%5C%22%7D%7D%22%5D%7D","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-13b85c99ad":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:31:07Z"}}},"headline":"Find a doctor","headlineLevel":"h2","description":"<p>View UNC Hospitals peripheral artery disease treatment providers. View a provider’s profile to schedule an appointment by phone or online (when available).</p>\r\n","cta":{"id":"classic-card-13b85c99ad","label":"View providers","descriptiveText":"Link to list of 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%22Cardiology%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%2C%22affiliation%22%3A%5B%22%7B%5C%22c_affiliation%5C%22%3A%7B%5C%22%24eq%5C%22%3A%5C%22UNC+Hospitals%5C%22%7D%7D%22%5D%7D","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-13b85c99ad":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:31:07Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-13b85c99ad":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:31:07Z"}}},"item_1727801727912":{"id":"classic-card-dddee7e626","image":{"id":"classic-card-dddee7e626","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.unchealth.org/care-services/locations?zipcode=27514&specialties=SPEC-7","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-dddee7e626":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:31:42Z"}}},"headline":"Find a location","headlineLevel":"h2","description":"<p>Search UNC Hospitals locations by city or ZIP code. View a location near you for scheduling information and a list of available services.</p>\r\n","cta":{"id":"classic-card-dddee7e626","label":"Search locations","descriptiveText":"Link to Search Locations","href":"https://www.unchealth.org/care-services/locations?zipcode=27514&specialties=SPEC-7","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-dddee7e626":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:31:42Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-dddee7e626":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:31:42Z"}}},"item_1727801729499":{"id":"classic-card-79a5321e8d","image":{"id":"classic-card-79a5321e8d","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.unccarelink.org/EpicCareLink/common/epic_login.asp","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-79a5321e8d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:31:55Z"}}},"headline":"For referring providers","headlineLevel":"h2","description":"<p>Use the UNC CareLink online portal to make a referral or <a href=\"https://www.unchealth.org/care-services/locations\">find the clinic location</a> you need and call them directly.</p>\r\n","cta":{"id":"classic-card-79a5321e8d","label":"Refer by UNC CareLink ","descriptiveText":"Refer by CareLink","href":"https://www.unccarelink.org/EpicCareLink/common/epic_login.asp","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-79a5321e8d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:31:55Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-79a5321e8d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:31:55Z"}}}},":itemsOrder":["item_1727801726042","item_1727801727912_c","item_1727801727912","item_1727801729499"],"appliedCssClassNames":"topSpacing--none bottomSpacing--small","dataLayer":{"content-grid-c43451b627":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-04-30T17:08:21Z"}}}},":itemsOrder":["content_grid_copy_co"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-316b9b2571":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-11T23:29:01Z"}}},"content_grid_copy_co_1613181466":{"id":"content-grid-71dee90ebb","gridGap":"default","columnCount":3,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show all","visibilityCtaCollapseLabel":"Show less","visibilityCtaStyle":"secondary","headline":"Support & resources","headingLevel":"h2","description":"<p>Getting support on your health and wellness journey can help you feel prepared and less alone. Explore the options below to find support that’s right for you.</p>\r\n",":type":"unchealth/components/containers/content-grid",":items":{"item_1753458203690_c":{"id":"classic-card-9f2282c4b0","image":{"id":"classic-card-9f2282c4b0","altText":"100 Sprunt Street","defaultImgSrc":"/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.unchealth.org/care-services/locations/unc-hospitals-cardiac-rehabilitation-unc-wellness-center-at-meadowmont","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/UNC Wellness Center at Meadowmont.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":2550,"width":4848,"disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-9f2282c4b0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:34:56Z"}}},"headline":"Cardiac Rehab for PAD","headlineLevel":"h2","description":"<p>UNC Hospitals Cardiac Rehabilitation helps you manage your PAD and lower your risk for a future heart event. Ask your doctor for a referral.</p>\r\n","cta":{"id":"classic-card-9f2282c4b0","label":"View our services","descriptiveText":"Link to UNC Hospitals Cardiac Rehabilitation location page","href":"https://www.unchealth.org/care-services/locations/unc-hospitals-cardiac-rehabilitation-unc-wellness-center-at-meadowmont","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-9f2282c4b0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:34:56Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-9f2282c4b0":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:34:56Z"}}},"item_1727801414500_c":{"id":"classic-card-606803307d","image":{"id":"classic-card-606803307d","altText":"Senior woman doing fitness exercises at home through virtual class","defaultImgSrc":"/content/dam/unchealth/images/areas-of-care/heart-vascular/img-aoc-hv-woman-virtual-exercise.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://uncwellness.com/programs/videos/","target":"_blank","defaultWebPSrcSet":[],"defaultImgSrcSet":[],"height":467,"width":700,"srcTitle":"Senior woman doing fitness exercises at home through virtual class","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-606803307d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:35:37Z"}}},"headline":"Bringing wellness to you ","headlineLevel":"h2","description":"<p>Improve your health and wellness with a variety of videos from the UNC Wellness Center.</p>\r\n","cta":{"id":"classic-card-606803307d","label":"Watch videos","descriptiveText":"link to UNC Wellness videos","href":"https://uncwellness.com/programs/videos/","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-606803307d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:35:37Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-606803307d":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:35:37Z"}}},"item_1727801048047_c_1661208040":{"id":"classic-card-9d126bfedb","image":{"id":"classic-card-9d126bfedb","altText":"Young blonde business woman sitting on the terrace in a cafe working on a laptop.","defaultImgSrc":"/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://uncwellness.com/coffee-with-the-coach/","target":"_blank","defaultWebPSrcSet":["/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/marketing-landing-pages/neuro---spine/AdobeStock_588415935.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":533,"width":800,"srcTitle":"Young blonde business woman sitting on the terrace in a cafe working on a laptop.","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-9d126bfedb":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:35:24Z"}}},"headline":"Coffee with the Coach","headlineLevel":"h2","description":"<p>Get inspired with whole-person health support on topics like stress management and mindfulness in these virtual sessions.</p>\r\n","cta":{"id":"classic-card-9d126bfedb","label":"View topics","descriptiveText":"view topics","href":"https://uncwellness.com/coffee-with-the-coach/","target":"_blank","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-9d126bfedb":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:35:24Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-9d126bfedb":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T23:35:24Z"}}}},":itemsOrder":["item_1753458203690_c","item_1727801414500_c","item_1727801048047_c_1661208040"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"content-grid-71dee90ebb":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-05-11T23:34:42Z"}}},"personalization_cont":{"id":"personalization-container-a0f7cabb45","displayAsDefault":true,"zipcodes":"27201, 27202, 27215, 27216, 27217, 27220, 27244, 27253, 27258, 27302, 27340, 27349, 27359, 27213, 27228, 27256, 27559, 27503, 27572, 27701, 27702, 27703, 27704, 27705, 27706, 27707, 27708, 27709, 27710, 27711, 27712, 27713, 27715, 27717, 27722, 27237, 27330, 27331, 27332, 27505, 28355, 27231, 27243, 27278, 27510, 27514, 27515, 27516, 27517, 27599, 27502, 27511, 27512, 27513, 27518, 27519, 27523, 27526, 27529, 27539, 27540, 27545, 27560, 27562, 27571, 27587, 27588, 27591, 27592, 27597, 27601, 27602, 27603, 27604, 27605, 27606, 27607, 27608, 27609, 27610, 27611, 27612, 27613, 27614, 27615, 27616, 27617, 27619, 27620, 27621, 27622, 27623, 27624, 27625, 27626, 27627, 27628, 27629, 27634, 27635, 27636, 27640, 27650, 27656, 27658, 27661, 27668, 27675, 27676, 27690, 27695, 27697, 27698, 27699, 27344, 27207, 27208, 27252, 27312, 28611, 28630, 28633, 28638, 28645, 28661, 28667, 27288, 27289, 27025, 27027, 27048, 27320, 27321, 27322, 27323, 27326, 27375","localizedXF":"/content/experience-fragments/unchealth/us/en/site/areas_of_care_xfs_/heart_vascular/unc_hospitals/unch-local-unchospitals-heart-vascular-pad/master","noContentText":"Looks like we don't have local results for zipcode. UNC Health serves communities across North Carolina — update your location to find care and resources near you.","notLocalizedText":"UNC Health serves communities across North Carolina — share your location to find care and resources near you.","isLocalizedText":"Viewing care and resources for zipcode","updateCTAText":"Update My Location","shareCTAText":"Share My Location","radius":"0","searchQuery":"https://liveapi.yext.com/v2/accounts/me/search/vertical/query?api_key=fcb2c208969a29f6bc66c93d5737793e&experienceKey=unc-internal-test-1&locale=en&v=20221201&verticalKey=related_locations_deduped_small_buckets&version=PRODUCTION&input=&limit=1","path":"/content/unchealth/us/en/care-services/areas-of-care/heart-vascular-care/peripheral-artery-disease/pad-care-near-you-chapel-hill/jcr:content/root/responsivegrid_header/personalization_cont",":type":"unchealth/components/content/personalization-container","dataLayer":{"personalization-container-a0f7cabb45":{"@type":"unchealth/components/content/personalization-container","repo:modifyDate":"2026-03-18T16:36:15Z"}}},"content_grid_copy_co_443870209":{"id":"content-grid-03e49feed0",":type":"unchealth/components/containers/content-grid",":items":{"classic_card":{"id":"classic-card-78322263c2","image":{"id":"classic-card-78322263c2","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.unchealth.org/care-services/areas-of-care/heart-vascular-care/peripheral-artery-disease","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-78322263c2":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T22:59:16Z"}}},"headline":"Find care in another location or go back to the main PAD page.","headlineLevel":"h2","description":"<p>Explore care in a different featured location:</p>\r\n<ul>\r\n<li>Raleigh (Wake Co.)</li>\r\n<li>Chapel Hill (Orange Co.)</li>\r\n<li>Eden (Rockingham Co.)</li>\r\n<li>Siler City (Chatham Co.)</li>\r\n</ul>\r\n","cta":{"id":"classic-card-78322263c2","label":"Back to main page","descriptiveText":"Back to main page ","href":"https://www.unchealth.org/care-services/areas-of-care/heart-vascular-care/peripheral-artery-disease","target":"_self","disableCsr":false,":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-78322263c2":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T22:59:16Z"}}},":type":"unchealth/components/content/classic-card","dataLayer":{"classic-card-78322263c2":{"@type":"unchealth/components/content/classic-card","repo:modifyDate":"2026-05-11T22:59:16Z"}}}},":itemsOrder":["classic_card"],"appliedCssClassNames":"topSpacing--none bottomSpacing--small","dataLayer":{"content-grid-03e49feed0":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-04-30T17:16:35Z"}}},"background_353797076":{"id":"background-b0bc939124",":type":"unchealth/components/containers/background",":items":{"content_grid_copy_co":{"id":"content-grid-66a19e8f2b","gridGap":"default","columnCount":3,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"Related locations","headingLevel":"h2",":type":"unchealth/components/containers/content-grid",":items":{"item_1753123688337":{"id":"location-card-1c500911dc","image":{"id":"location-detail-banner-9192cab7f4","altText":"Photo of 300 Meadowmont Village Circle","defaultImgSrc":"/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3191,"width":5616,"disableCsr":false,":type":"unchealth/components/content/location-detail-banner","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"location-detail-banner-9192cab7f4":{"@type":"unchealth/components/content/location-detail-banner","repo:modifyDate":"2023-04-18T13:49:12Z"}}},"location":{"address":{"city":"Chapel Hill","line1":"300 Meadowmont Village Circle","line2":"Suite 301","postalCode":"27517","region":"NC","countryCode":"US"},"detailPage":"/content/unchealth/us/en/care-services/locations/unc-hospitals-vascular-services-at-meadowmont-vascular-chapel-hill","displayCoordinate":{"latitude":"35.9044326","longitude":"-79.0118813"},"entityId":"28","faxNumber":"+19849742988","hours":{"monday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"tuesday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"wednesday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"thursday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"friday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"saturday":{"closed":true,"hour":null},"sunday":{"closed":true,"hour":null}},"image":{"altText":"","caption":null,"elementId":null,"defaultImgSrc":"/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg","mobileImgSrc":null,"defaultAspectRatio":null,"mobileAspectRatio":null,"href":null,"target":null,"mobileImgSrcSet":[],"mobileWebPSrcSet":[],"defaultWebPSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3191,"width":5616,"srcTitle":null},"lastPatientCheckIn":{"monday":"","tuesday":"","wednesday":"","thursday":"","friday":"","saturday":"","sunday":""},"name":"UNC Hospitals Vascular Services at Meadowmont (Vascular)","mainPhone":"+19849745662","subtitle":"Chapel Hill","type":"CLINIC"},"detailPage":"/care-services/locations/unc-hospitals-vascular-services-at-meadowmont-vascular-chapel-hill",":type":"unchealth/components/content/location-card","dataLayer":{"location-card-1c500911dc":{"@type":"unchealth/components/content/location-card","repo:modifyDate":"2025-07-31T22:17:01Z"}}},"item_1753123689577":{"id":"location-card-17715efacd","image":{"id":"location-detail-banner-c7ef0d3ff4","altText":"430 Waterstone Drive Hillsborough, NC","defaultImgSrc":"/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":2873,"width":5034,"disableCsr":false,":type":"unchealth/components/content/location-detail-banner","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"location-detail-banner-c7ef0d3ff4":{"@type":"unchealth/components/content/location-detail-banner","repo:modifyDate":"2025-04-21T15:06:02Z"}}},"location":{"address":{"city":"Hillsborough","line1":"430 Waterstone Drive","line2":null,"postalCode":"27278","region":"NC","countryCode":"US"},"departments":["UNC Hospitals Hillsborough Campus"],"detailPage":"/content/unchealth/us/en/care-services/locations/unc-hospitals-vascular-and-complex-podiatry-unc-hospitals-hillsborough-campus","displayCoordinate":{"latitude":"36.037291","longitude":"-79.091865"},"entityId":"331132323232","faxNumber":"+19849742988","hours":{"monday":{"closed":true,"hour":null},"tuesday":{"closed":false,"hour":{"start":"08:00","end":"16:00"}},"wednesday":{"closed":true,"hour":null},"thursday":{"closed":true,"hour":null},"friday":{"closed":false,"hour":{"start":"08:00","end":"16:00"}},"saturday":{"closed":true,"hour":null},"sunday":{"closed":true,"hour":null}},"image":{"altText":"","caption":null,"elementId":null,"defaultImgSrc":"/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg","mobileImgSrc":null,"defaultAspectRatio":null,"mobileAspectRatio":null,"href":null,"target":null,"mobileImgSrcSet":[],"mobileWebPSrcSet":[],"defaultWebPSrcSet":["/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/img-locations-unch-unc-health-hillsborough-cc.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":2873,"width":5034,"srcTitle":null},"lastPatientCheckIn":{"monday":"","tuesday":"","wednesday":"","thursday":"","friday":"","saturday":"","sunday":""},"name":"UNC Hospitals Vascular and Complex Podiatry","mainPhone":"+19849745662","subtitle":"","type":"CLINIC"},"detailPage":"/care-services/locations/unc-hospitals-vascular-and-complex-podiatry-unc-hospitals-hillsborough-campus",":type":"unchealth/components/content/location-card","dataLayer":{"location-card-17715efacd":{"@type":"unchealth/components/content/location-card","repo:modifyDate":"2025-07-31T22:20:52Z"}}},"item_1753123691390":{"id":"location-card-1994b3e4ec","image":{"id":"location-detail-banner-b74a481ad9","altText":"Photo of 300 Meadowmont Village Circle","defaultImgSrc":"/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3191,"width":5616,"disableCsr":false,":type":"unchealth/components/content/location-detail-banner","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"location-detail-banner-b74a481ad9":{"@type":"unchealth/components/content/location-detail-banner","repo:modifyDate":"2023-04-18T13:48:22Z"}}},"location":{"address":{"city":"Chapel Hill","line1":"300 Meadowmont Village Circle","line2":"Suite 301","postalCode":"27517","region":"NC","countryCode":"US"},"detailPage":"/content/unchealth/us/en/care-services/locations/unc-hospitals-vascular-services-at-meadowmont-wound-healing-and-podiatry-chapel-hill","displayCoordinate":{"latitude":"35.9044326","longitude":"-79.0118813"},"entityId":"24050","faxNumber":"+19849744922","hours":{"monday":{"closed":false,"hour":{"start":"07:30","end":"16:30"}},"tuesday":{"closed":false,"hour":{"start":"07:30","end":"16:30"}},"wednesday":{"closed":false,"hour":{"start":"07:30","end":"16:30"}},"thursday":{"closed":false,"hour":{"start":"07:30","end":"16:30"}},"friday":{"closed":false,"hour":{"start":"07:30","end":"16:30"}},"saturday":{"closed":true,"hour":null},"sunday":{"closed":true,"hour":null}},"image":{"altText":"","caption":null,"elementId":null,"defaultImgSrc":"/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg","mobileImgSrc":null,"defaultAspectRatio":null,"mobileAspectRatio":null,"href":null,"target":null,"mobileImgSrcSet":[],"mobileWebPSrcSet":[],"defaultWebPSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3191,"width":5616,"srcTitle":null},"lastPatientCheckIn":{"monday":"","tuesday":"","wednesday":"","thursday":"","friday":"","saturday":"","sunday":""},"name":"UNC Hospitals Vascular Services at Meadowmont (Wound Healing and Podiatry)","mainPhone":"+19849741900","subtitle":"Chapel Hill","type":"CLINIC"},"detailPage":"/care-services/locations/unc-hospitals-vascular-services-at-meadowmont-wound-healing-and-podiatry-chapel-hill",":type":"unchealth/components/content/location-card","dataLayer":{"location-card-1994b3e4ec":{"@type":"unchealth/components/content/location-card","repo:modifyDate":"2025-07-31T22:19:16Z"}}},"item_1753123692906":{"id":"location-card-1b095b1130","image":{"id":"location-detail-banner-999811735e","altText":"300 Meadowmont Village Circle building location","defaultImgSrc":"/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3191,"width":5616,"disableCsr":false,":type":"unchealth/components/content/location-detail-banner","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"location-detail-banner-999811735e":{"@type":"unchealth/components/content/location-detail-banner","repo:modifyDate":"2023-03-10T19:45:08Z"}}},"location":{"address":{"city":"Chapel Hill","line1":"300 Meadowmont Village Circle","line2":"Suite 104","postalCode":"27517","region":"NC","countryCode":"US"},"detailPage":"/content/unchealth/us/en/care-services/locations/unc-hospitals-vascular-interventional-radiology-clinic-meadowmont","displayCoordinate":{"latitude":"35.9044552","longitude":"-79.0119502"},"entityId":"321","faxNumber":"+19849744789","hours":{"monday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"tuesday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"wednesday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"thursday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"friday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"saturday":{"closed":true,"hour":null},"sunday":{"closed":true,"hour":null}},"image":{"altText":"","caption":null,"elementId":null,"defaultImgSrc":"/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg","mobileImgSrc":null,"defaultAspectRatio":null,"mobileAspectRatio":null,"href":null,"target":null,"mobileImgSrcSet":[],"mobileWebPSrcSet":[],"defaultWebPSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/300 Meadowmont Village Circle Chapel Hill.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3191,"width":5616,"srcTitle":null},"lastPatientCheckIn":{"monday":"","tuesday":"","wednesday":"","thursday":"","friday":"","saturday":"","sunday":""},"name":"UNC Hospitals Vascular Interventional Radiology Clinic","mainPhone":"+19849748778","subtitle":"Meadowmont","type":"DIAGNOSTIC_AND_LAB"},"detailPage":"/care-services/locations/unc-hospitals-vascular-interventional-radiology-clinic-meadowmont",":type":"unchealth/components/content/location-card","dataLayer":{"location-card-1b095b1130":{"@type":"unchealth/components/content/location-card","repo:modifyDate":"2025-07-31T22:18:13Z"}}},"item_1753123695463":{"id":"location-card-2ab7b56498","image":{"id":"location-card-2ab7b56498","defaultAspectRatio":"default","mobileAspectRatio":"default","disableCsr":false,":type":"unchealth/components/content/location-card","dataLayer":{"location-card-2ab7b56498":{"@type":"unchealth/components/content/location-card","repo:modifyDate":"2025-07-31T22:18:36Z"}}},"location":{"address":{"city":"Chapel Hill","line1":"2214 Nelson Highway","line2":null,"postalCode":"27517","region":"NC","countryCode":"US"},"detailPage":"/content/unchealth/us/en/care-services/locations/unc-health-endovascular-center-chapel-hill","displayCoordinate":{"latitude":"35.9118658","longitude":"-78.9849291"},"entityId":"70","faxNumber":"+19199086081","hours":{"monday":{"closed":false,"hour":{"start":"07:00","end":"17:00"}},"tuesday":{"closed":false,"hour":{"start":"07:00","end":"17:00"}},"wednesday":{"closed":false,"hour":{"start":"07:00","end":"17:00"}},"thursday":{"closed":false,"hour":{"start":"07:00","end":"17:00"}},"friday":{"closed":false,"hour":{"start":"07:00","end":"17:00"}},"saturday":{"closed":true,"hour":null},"sunday":{"closed":true,"hour":null}},"image":{"altText":null,"caption":null,"elementId":null,"defaultImgSrc":null,"mobileImgSrc":null,"defaultAspectRatio":null,"mobileAspectRatio":null,"href":null,"target":null,"mobileImgSrcSet":[],"mobileWebPSrcSet":[],"defaultWebPSrcSet":[],"defaultImgSrcSet":[],"height":null,"width":null,"srcTitle":null},"lastPatientCheckIn":{"monday":"","tuesday":"","wednesday":"","thursday":"","friday":"","saturday":"","sunday":""},"name":"UNC Health Endovascular Center","mainPhone":"+19199086080","subtitle":"Chapel Hill","type":"CLINIC"},"detailPage":"/care-services/locations/unc-health-endovascular-center-chapel-hill",":type":"unchealth/components/content/location-card","dataLayer":{"location-card-2ab7b56498":{"@type":"unchealth/components/content/location-card","repo:modifyDate":"2025-07-31T22:18:36Z"}}},"item_1753303629587":{"id":"location-card-afeeb53e67","image":{"id":"location-detail-banner-96fe955948","defaultImgSrc":"/content/dam/unchealth/images/locations/hillsborough-crop.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":2873,"width":4143,"disableCsr":false,":type":"unchealth/components/content/location-detail-banner","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"location-detail-banner-96fe955948":{"@type":"unchealth/components/content/location-detail-banner","repo:modifyDate":"2025-07-02T16:19:05Z"}}},"location":{"address":{"city":"Hillsborough","line1":"430 Waterstone Drive","line2":"First Floor","postalCode":"27278","region":"NC","countryCode":"US"},"departments":["UNC Hospitals Hillsborough Campus"],"detailPage":"/content/unchealth/us/en/care-services/locations/unc-hospitals-hillsborough-campus-imaging-and-radiology-unc-hospitals-hillsborough-campus","displayCoordinate":{"latitude":"36.0372391","longitude":"-79.091348"},"entityId":"12028","faxNumber":"+19842152284","hours":{"monday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"tuesday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"wednesday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"thursday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"friday":{"closed":false,"hour":{"start":"08:00","end":"16:30"}},"saturday":{"closed":true,"hour":null},"sunday":{"closed":true,"hour":null}},"image":{"altText":"","caption":null,"elementId":null,"defaultImgSrc":"/content/dam/unchealth/images/locations/hillsborough-crop.jpg","mobileImgSrc":null,"defaultAspectRatio":null,"mobileAspectRatio":null,"href":null,"target":null,"mobileImgSrcSet":[],"mobileWebPSrcSet":[],"defaultWebPSrcSet":["/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/hillsborough-crop.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":2873,"width":4143,"srcTitle":null},"lastPatientCheckIn":{"monday":"","tuesday":"","wednesday":"","thursday":"","friday":"","saturday":"","sunday":""},"name":"UNC Hospitals Hillsborough Campus (Imaging and Radiology)","mainPhone":"+19842152200","subtitle":"","type":"DIAGNOSTIC_AND_LAB"},"detailPage":"/care-services/locations/unc-hospitals-hillsborough-campus-imaging-and-radiology-unc-hospitals-hillsborough-campus",":type":"unchealth/components/content/location-card","dataLayer":{"location-card-afeeb53e67":{"@type":"unchealth/components/content/location-card","repo:modifyDate":"2025-07-31T22:18:53Z"}}}},":itemsOrder":["item_1753123688337","item_1753123689577","item_1753123691390","item_1753123692906","item_1753123695463","item_1753303629587"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"content-grid-66a19e8f2b":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-05-11T23:39:05Z"}}}},":itemsOrder":["content_grid_copy_co"],"appliedCssClassNames":"topSpacing--none bottomSpacing--none","dataLayer":{"background-b0bc939124":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-11T23:38:49Z"}}}},":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-aee8107284","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":"-00992e2da3","label":"News & Media","href":"https://news.unchealthcare.org/?_ga=2.176331429.1459326530.1662751404-1169189291.1662751404","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-00992e2da3":{"@type":"nt:unstructured"}}},{"id":"-b19f3073c7","label":"Sitemap","href":"/sitemap","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-b19f3073c7":{"@type":"nt:unstructured"}}}],"topLinks":[{"id":"-95f294c8c6","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-95f294c8c6":{"@type":"nt:unstructured"}}},{"id":"-ca1cd33dc4","label":"Contact Us","href":"/contact-us","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ca1cd33dc4":{"@type":"nt:unstructured"}}},{"id":"-dea4fe58f7","label":"Clinical Trials","href":"https://researchforme.unc.edu/index.php/en/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-dea4fe58f7":{"@type":"nt:unstructured"}}},{"id":"-4b19d4a661","label":"Sign In to My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4b19d4a661":{"@type":"nt:unstructured"}}}],"mainLinks":[{"title":"About US","links":[{"id":"-abc34fb425","label":"Who We Are","href":"/about-us/who-we-are","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-abc34fb425":{"@type":"nt:unstructured"}}},{"id":"-a23f658b21","label":"Compliance Office","href":"/about-us/compliance-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-a23f658b21":{"@type":"nt:unstructured"}}},{"id":"-f5819c6ac7","label":"Privacy Office","href":"/about-us/privacy-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-f5819c6ac7":{"@type":"nt:unstructured"}}},{"id":"-d43ee3a79e","label":"OHCA Members","href":"/about-us/ohca-members","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-d43ee3a79e":{"@type":"nt:unstructured"}}},{"id":"-a421e01d82","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":{"-a421e01d82":{"@type":"nt:unstructured"}}},{"id":"-df8902f865","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":{"-df8902f865":{"@type":"nt:unstructured"}}},{"id":"-e63012a820","label":"Financial Assistance","descriptiveText":"link to Financial Assistance page","href":"/records-insurance/financial-assistance-programs","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-e63012a820":{"@type":"nt:unstructured"}}},{"id":"-8e9bee0c13","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":{"-8e9bee0c13":{"@type":"nt:unstructured"}}},{"id":"-d288824c4e","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":{"-d288824c4e":{"@type":"nt:unstructured"}}}]},{"title":"Medical & Clinical Professionals","links":[{"id":"-778f348e38","label":"Fellowship Program","href":"/for-medical-professionals/fellowship-program","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-778f348e38":{"@type":"nt:unstructured"}}},{"id":"-9c5028afba","label":"House Staff Council","href":"/for-medical-professionals/house-staff-council","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-9c5028afba":{"@type":"nt:unstructured"}}},{"id":"-30e7ed4e4f","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":{"-30e7ed4e4f":{"@type":"nt:unstructured"}}}]},{"title":"For UNC Health Employees","links":[{"id":"-ef9cf0bef1","label":"Well-being Program","href":"/for-unch-health-professionals/well-being-for-unc-health-teammates","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ef9cf0bef1":{"@type":"nt:unstructured"}}},{"id":"-18c327b58a","label":"Epic@UNC Training ","href":"/for-unch-health-professionals/epic-training","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-18c327b58a":{"@type":"nt:unstructured"}}},{"id":"-649cd57a8b","label":"Working Forward","href":"/for-unch-health-professionals/working-forward","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-649cd57a8b":{"@type":"nt:unstructured"}}}]},{"title":"Supporting Our Community","links":[{"id":"-5c8a89c769","label":"Giving","href":"https://unchealthfoundation.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-5c8a89c769":{"@type":"nt:unstructured"}}},{"id":"-d0c247fed9","label":"Caring for Our Communities","href":"/supporting-our-community/caring-for-our-communities","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-d0c247fed9":{"@type":"nt:unstructured"}}}]}],"utilityLinks":[{"id":"-8f73b1414d","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":{"-8f73b1414d":{"@type":"nt:unstructured"}}},{"id":"-4051ba126b","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":{"-4051ba126b":{"@type":"nt:unstructured"}}},{"id":"-23cd8ba35c","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":{"-23cd8ba35c":{"@type":"nt:unstructured"}}},{"id":"-58069d35cf","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":{"-58069d35cf":{"@type":"nt:unstructured"}}},{"id":"-dff2823b69","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":{"-dff2823b69":{"@type":"nt:unstructured"}}},{"id":"-d9d6b2a558","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":{"-d9d6b2a558":{"@type":"nt:unstructured"}}}],"utilityLinksSpanish":[{"id":"-b1230b258a","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":{"-b1230b258a":{"@type":"nt:unstructured"}}},{"id":"-361871dcdc","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":{"-361871dcdc":{"@type":"nt:unstructured"}}},{"id":"-eff05be7e7","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":{"-eff05be7e7":{"@type":"nt:unstructured"}}}],"disclaimerLinks":[{"id":"-3f902bee7c","label":"Accessibility","href":"/about-us/accessibility-at-unc-health/language-accessibility-services/website-accessibility-statement","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-3f902bee7c":{"@type":"nt:unstructured"}}}],"copyright":"©2026 UNC Health. \r\nAll rights reserved.",":type":"unchealth/components/content/global-footer","dataLayer":{"global-footer-aee8107284":{"@type":"unchealth/components/content/global-footer","repo:modifyDate":"2025-12-05T20:10:26Z"}}},"gsight_survey":{"id":"gsight-survey-9c5f84a689","samplingPercentage":50,"popupDelayInSeconds":50,"hideGSightSurvey":false,"clientId":"d790eed4-ab64-eb11-8272-12cf99399697",":type":"unchealth/components/content/gsight-survey","dataLayer":{"gsight-survey-9c5f84a689":{"@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/heart-vascular-care/peripheral-artery-disease/pad-care-near-you-chapel-hill","dataLayer":{"page-fb0e47dbcd":{"@type":"unchealth/components/core/page","repo:modifyDate":"2026-05-11T23:44:35Z"}}}