{"id":"page-00daef12d6","pageData":{},"templateName":"empty-page","contentLanguage":"en","cssClassNames":"page basicpage","metaDescription":"Get fast and effective urgent care services for cuts, sprains, respiratory problems and more at UNC Health urgent care locations near you in Raleigh, Apex, Holly Springs, Clayton and other parts of the Triangle. ","brandSlug":"UNC Health","defaultMetaSiteName":"UNC Health","siteURL":"https://www.unchealth.org","mainSchemaHtml":"<script type=\"application/ld+json\" id=\"mainSchema\"></script>","customSchemaHtml":"<script type=\"application/ld+json\" id=\"customSchema\"></script>","bodyBottomGlobal":"<script>\r\n  function getLiveChatConfig() {\r\n    const phone =\r\n      \"800-594-8624 (toll-free) or locally at 984-974-2222 Mon. – Thurs., 8:00 AM – 5:00 PM and Fri., 8:00 AM – 11:30 AM.\";\r\n    const nebulaURL = \"https://livechat-livechat.app.st-882.epiccloud.io\";\r\n    const chatScriptURL =\r\n      \"https://livechat-web-client.app.st-882.epiccloud.io/assets/epic-live-chat.es.js\";\r\n    const apiKey =\r\n      \"AAEAAZmakTnG4EHUADF7IlNpdGVJZCI6IjViZmQyYTM4LTUyZjItNDMzZS04NmI2LTdiZTg1NzM5YWFmZCJ9hM+rEbw4ueEid0MN5b0mjsOLTtWsrCjU6rWqKEQwR2Sw+bndAQw0Iw==\";\r\n\r\n    const branding = {\r\n      primaryColor: \"#004263\",\r\n      fontFamily: \"Muller, Arial, sans-serif\",\r\n      minimizedChatTitle: \"How can we help?\",\r\n      liveChatTitle: \"UNC Health Billing Help\",\r\n      organizationImageURL:\r\n        \"https://www.uncmedicalcenter.org/app/files/public/7453/img-system-systemlogo.png\",\r\n      organizationImageDescriptor: \"UNC Health logo\",\r\n    };\r\n\r\n    return { phone, nebulaURL, chatScriptURL, apiKey, branding };\r\n  }\r\n</script>\r\n\r\n<script>\r\n  (function () {\r\n    const containerId = \"lcWidget\";\r\n\r\n    // ✅ Show chat on these pages (exact “records-insurance” routes)\r\n    const CHAT_PATHS = new Set([\r\n      \"/records-insurance/pay-my-bill\",\r\n      \"/records-insurance/financial-assistance-programs\",\r\n      \"/records-insurance/insurance\",\r\n      \"/records-insurance/billing-insurance-terminology\",\r\n      \"/records-insurance/price-estimates\",\r\n      \"/records-insurance/standard-charges\",\r\n    ]);\r\n\r\n    let scriptInjected = false;\r\n    let widgetRendered = false;\r\n\r\n    function normalizePath(rawPath) {\r\n      let p = (rawPath || \"/\")\r\n        // remove query/hash fragments\r\n        .split(\"?\")[0]\r\n        .split(\"#\")[0]\r\n        // convert any weird whitespace (including NBSP) and trim\r\n        .replace(/\\u00A0/g, \" \")\r\n        .trim()\r\n        // drop .html if present\r\n        .replace(/\\.html$/, \"\");\r\n\r\n      // drop trailing slash (except root)\r\n      if (p.length > 1) p = p.replace(/\\/+$/, \"\");\r\n\r\n      // If we're on an AEM content path, reduce to the “pretty” portion\r\n      // Example: /content/unchealth/us/en/records-insurance/insurance  -> /records-insurance/insurance\r\n      const idx = p.indexOf(\"/records-insurance/\");\r\n      if (idx !== -1) {\r\n        p = p.slice(idx);\r\n      }\r\n\r\n      return p;\r\n    }\r\n\r\n    function shouldShowChatNow() {\r\n      const current = normalizePath(window.location.pathname);\r\n      return CHAT_PATHS.has(current);\r\n    }\r\n\r\n    function getContainer() {\r\n      return document.getElementById(containerId);\r\n    }\r\n\r\n    function ensureContainer() {\r\n      if (getContainer()) return;\r\n\r\n      const container = document.createElement(\"div\");\r\n      container.id = containerId;\r\n      container.style.position = \"fixed\";\r\n      container.style.right = \"20px\";\r\n      container.style.bottom = \"20px\";\r\n      container.style.zIndex = \"9999\";\r\n      document.body.appendChild(container);\r\n    }\r\n\r\n    function showChat() {\r\n      ensureContainer();\r\n\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"block\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"block\";\r\n        el.style.visibility = \"visible\";\r\n        el.style.pointerEvents = \"auto\";\r\n      });\r\n    }\r\n\r\n    function hideChat() {\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"none\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"none\";\r\n        el.style.visibility = \"hidden\";\r\n        el.style.pointerEvents = \"none\";\r\n      });\r\n    }\r\n\r\n    function renderWidgetWhenReady() {\r\n      const liveChatProps = getLiveChatConfig();\r\n\r\n      let tries = 0;\r\n      const t = setInterval(() => {\r\n        tries++;\r\n\r\n        if (typeof window.renderLiveChat === \"function\") {\r\n          clearInterval(t);\r\n          try {\r\n            window.renderLiveChat(containerId, liveChatProps);\r\n            widgetRendered = true;\r\n          } catch (e) {\r\n            // ignore and still show\r\n          }\r\n          showChat();\r\n          return;\r\n        }\r\n\r\n        if (tries >= 40) clearInterval(t);\r\n      }, 100);\r\n    }\r\n\r\n    function injectScriptOnceAndRender() {\r\n      const liveChatProps = getLiveChatConfig();\r\n      const endpoint = liveChatProps.chatScriptURL;\r\n      if (!endpoint) return;\r\n\r\n      if (scriptInjected) {\r\n        if (widgetRendered) showChat();\r\n        else renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const existing = document.querySelector(\r\n        `script[type=\"module\"][src=\"${endpoint}\"]`\r\n      );\r\n      if (existing) {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const script = document.createElement(\"script\");\r\n      script.type = \"module\";\r\n      script.src = endpoint;\r\n      script.async = true;\r\n\r\n      script.onload = function () {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n      };\r\n\r\n      document.body.appendChild(script);\r\n    }\r\n\r\n    function onRouteChange() {\r\n      if (shouldShowChatNow()) {\r\n        ensureContainer();\r\n        injectScriptOnceAndRender();\r\n        showChat();\r\n      } else {\r\n        hideChat();\r\n      }\r\n    }\r\n\r\n    // keep your old API name (hide is safer than remove)\r\n    window.removeLiveChatWidget = hideChat;\r\n\r\n    /* -----------------------------\r\n       SPA NAVIGATION DETECTION\r\n    ------------------------------*/\r\n    function installSpaNavHooksOnce() {\r\n      if (window.__liveChatSpaHookInstalled) return;\r\n      window.__liveChatSpaHookInstalled = true;\r\n\r\n      const fire = () => window.dispatchEvent(new Event(\"spa:navigation\"));\r\n\r\n      const _pushState = history.pushState;\r\n      history.pushState = function () {\r\n        const ret = _pushState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      const _replaceState = history.replaceState;\r\n      history.replaceState = function () {\r\n        const ret = _replaceState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      window.addEventListener(\"popstate\", fire);\r\n      window.addEventListener(\"hashchange\", fire);\r\n    }\r\n\r\n    function init() {\r\n      installSpaNavHooksOnce();\r\n      window.addEventListener(\"spa:navigation\", onRouteChange);\r\n      onRouteChange();\r\n    }\r\n\r\n    if (document.readyState === \"loading\") {\r\n      document.addEventListener(\"DOMContentLoaded\", init);\r\n    } else {\r\n      init();\r\n    }\r\n  })();\r\n</script>\r\n","pagePath":"/lp/urgent-care.model.json","thumbnail":"https://www.unchealth.org/etc.clientlibs/unchealth/clientlibs/clientlib-react/resources/logo1200x630.png","description":"Get fast and effective urgent care services for cuts, sprains, respiratory problems and more at UNC Health urgent care locations near you in Raleigh, Apex, Holly Springs, Clayton and other parts of the Triangle. ","contentType":"general","url":"https://www.unchealth.org/lp/urgent-care","title":"UNC Health Urgent Care","tags":[],"schema":[],"language":"en",":type":"unchealth/components/core/page",":itemsOrder":["root"],":items":{"root":{":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["marketing_campaign_h","page_title_banner","background","image_grid","content_grid","open_content","marketing_campaign_f"],":items":{"marketing_campaign_h":{"id":"marketing-campaign-header-293dd6d4cc","logoImage":{"id":"marketing-campaign-header-293dd6d4cc","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"https://www.unchealth.org/care-services/locations?locationTypes=URGENT_CARE","target":"_self","disableCsr":false,":type":"unchealth/components/content/marketing-campaign-header","dataLayer":{"marketing-campaign-header-293dd6d4cc":{"@type":"unchealth/components/content/marketing-campaign-header","repo:modifyDate":"2026-04-09T16:56:42Z"}}},"logoLink":"/home","headerVariation":"cta","ctaLabel":"Find a location","ctaDescriptiveText":"link to urgent care location search results","ctaDestination":"https://www.unchealth.org/care-services/locations?locationTypes=URGENT_CARE","ctaTarget":"_self","cta":{"label":"Find a location","descriptiveText":"link to urgent care location search results","href":"https://www.unchealth.org/care-services/locations?locationTypes=URGENT_CARE","target":"_self","disableCsr":false},"disableCsr":false,":type":"unchealth/components/content/marketing-campaign-header","dataLayer":{"marketing-campaign-header-293dd6d4cc":{"@type":"unchealth/components/content/marketing-campaign-header","repo:modifyDate":"2026-04-09T16:56:42Z"}}},"page_title_banner":{"id":"page-title-banner-9dc48771df","headline":"UNC Health urgent care keeps the Triangle moving ","description":"<p>From Chapel Hill to Clayton and from Knightdale to Apex, there’s a UNC Health urgent care location near you. We’ll get you in quickly and get you out with a plan for care and recovery.</p>\r\n","image":{"id":"page-title-banner-9dc48771df","altText":"Girls soccer players celebrate","defaultImgSrc":"/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/marketing-landing-pages/img-lp-urgent-care-soccer.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":4951,"width":7248,"srcTitle":"Soccer, girl celebration and field with happy piggyback, team building support and solidarity for winning game. Female kids, sports diversity and celebrate with friends, teamwork and goal in football","disableCsr":false,":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--none","dataLayer":{"page-title-banner-9dc48771df":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-04-09T16:37:36Z"}}},"cta":{"label":"Find a location","descriptiveText":"Urgent care location search results","href":"https://www.unchealth.org/care-services/locations?locationTypes=URGENT_CARE","target":"_self","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-9dc48771df":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-04-09T16:37:36Z"}}},"background":{"id":"background-98abc005fd",":type":"unchealth/components/containers/background",":items":{"rich_text":{"id":"rich-text-235c5fb2f3","content":"<h2>Life doesn’t wait for you to feel better</h2>\r\n<p>Having a cold or the flu or a sprain from that backyard football game is a big hassle. With your busy schedule, it’s difficult to put things on hold. You need the right care, right now. UNC Health urgent care centers are located throughout the Triangle, close to your job, your kids’ school or where they (or you) stay active.</p>\r\n<p>Our locations offer a schedule that works for you ꟷ our clinics are open until 8 p.m. and offer weekend hours. And you can reserve a spot online and check wait times using the location page for your clinic.</p>\r\n","cta":{"id":"rich-text-235c5fb2f3","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"rich-text-235c5fb2f3":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-14T17:43:08Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"rich-text-235c5fb2f3":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-14T17:43:08Z"}}},"content_grid_1974662671":{"id":"content-grid-3932753565","gridGap":"default","columnCount":1,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"Urgent care near you","headingLevel":"h2",":type":"unchealth/components/containers/content-grid",":items":{"item_1775753069306":{"id":"rich-text-8343d39eb4","content":"<h3>Wake County</h3>\r\n<p>(Raleigh, Morrisville, Apex, Holly Springs, Garner)</p>\r\n<ul>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-raleigh\">UNC Urgent Care at Raleigh</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-garner\">UNC Urgent Care at Garner</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-fuquay-varina\">UNC Urgent Care at Fuquay-Varina</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-midtown-raleigh\">UNC Urgent Care at Midtown Raleigh</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-park-west-village-morrisville\">UNC Urgent Care at Park West Village (Morrisville)</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-beaver-creek-commons-apex\">UNC Urgent Care at Beaver Creek Commons (Apex)</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-holly-springs-unc-health-rex-at-holly-springs\">UNC Urgent Care at Holly Springs</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-knightdale-unc-health-rex-at-knightdale\">UNC Urgent Care at Knightdale</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-wakefield-unc-health-rex-at-wakefield\">UNC Urgent Care at Wakefield (Raleigh)</a> </li>\r\n</ul>\r\n","cta":{"id":"rich-text-8343d39eb4","style":"primaryButton","label":"View wait times for locations in Wake County","descriptiveText":"Link to Wake County wait times","href":"https://www.rexhealth.com/rh/wait-times/","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-8343d39eb4":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:47:11Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-8343d39eb4":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:47:11Z"}}}},":itemsOrder":["item_1775753069306"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"content-grid-3932753565":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-04-09T16:49:30Z"}}},"content_grid":{"id":"content-grid-5d0f319f50","gridGap":"default","columnCount":3,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headingLevel":"h2",":type":"unchealth/components/containers/content-grid",":items":{"item_1775753070630":{"id":"rich-text-8ca56d8e6f","content":"<h3>Chatham County</h3>\r\n<p>(Siler City, Pittsboro)</p>\r\n<ul>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-chatham-park-pittsboro\">UNC Urgent Care at Chatham Park (Pittsboro)</a> </li>\r\n</ul>\r\n","cta":{"id":"rich-text-8ca56d8e6f","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-8ca56d8e6f":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:47:04Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-8ca56d8e6f":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:47:04Z"}}},"item_1775753072098":{"id":"rich-text-74c9fb6656","content":"<h3>Johnston County</h3>\r\n<p>(Clayton, Smithfield, Benson)</p>\r\n<ul>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-flowers-clayton\">UNC Urgent Care at Flowers (Clayton)</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-clayton\">UNC Urgent Care at Clayton</a></li>\r\n</ul>\r\n","cta":{"id":"rich-text-74c9fb6656","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-74c9fb6656":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:47:52Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-74c9fb6656":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:47:52Z"}}},"item_1775753073585":{"id":"rich-text-f601efdc26","content":"<h3>Orange County</h3>\r\n<p>(Chapel Hill, Carrboro, Hillsborough)</p>\r\n<ul>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-carolina-pointe-ii\">UNC Urgent Care (Chapel Hill)</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-the-family-medicine-center-the-unc-family-medicine-center-at-chapel-hill\">UNC Urgent Care at The Family Medicine Center (Chapel Hill)</a> </li>\r\n<li><a href=\"https://www.unchealth.org/care-services/locations/unc-urgent-care-at-hillsborough\">UNC Urgent Care at Hillsborough</a></li>\r\n</ul>\r\n","cta":{"id":"rich-text-f601efdc26","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f601efdc26":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:48:25Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f601efdc26":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:48:25Z"}}}},":itemsOrder":["item_1775753070630","item_1775753072098","item_1775753073585"],"appliedCssClassNames":"topSpacing--default bottomSpacing--small","dataLayer":{"content-grid-5d0f319f50":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-04-09T16:49:40Z"}}}},":itemsOrder":["rich_text","content_grid_1974662671","content_grid"],"appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"background-98abc005fd":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-04-14T17:42:57Z"}}},"image_grid":{"id":"image-grid-09470a2868","headline":"The quality care you need","description":"<p>Urgent care provides convenient hours and a short wait to be seen while also offering expert care. Our locations include on-site access to:</p>\r\n<ul>\r\n<li>Labs</li>\r\n<li>Exams</li>\r\n<li>Imaging</li>\r\n</ul>\r\n","images":[{"id":"-d5a13fbaaa","altText":"Provider helps pediatric patient while mom watches","defaultImgSrc":"/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/wordpress/HealthTalk_LegLength.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":600,"width":900,"disableCsr":false,":type":"nt:unstructured","dataLayer":{"-d5a13fbaaa":{"@type":"nt:unstructured"}}}],"cta":{"id":"image-grid-09470a2868","style":"secondary","target":"_self","disableCsr":false,":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"image-grid-09470a2868":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-04-09T17:00:47Z"}}},":type":"unchealth/components/content/image-grid","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"image-grid-09470a2868":{"@type":"unchealth/components/content/image-grid","repo:modifyDate":"2026-04-09T17:00:47Z"}}},"content_grid":{"id":"content-grid-b2bdbc15ea","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"Is it urgent care?","headingLevel":"h2","description":"<p>While urgent care offers a convenient solution for minor medical issues, more serious problems may require a visit to the emergency room. If you are experiencing a life-threatening emergency, call 911 immediately.</p>\r\n",":type":"unchealth/components/containers/content-grid",":items":{"rich_text":{"id":"rich-text-6e26b228af","content":"<h4>Urgent care</h4>\r\n<ul>\r\n<li>Sore throats</li>\r\n<li>Strains/sprains</li>\r\n<li>Ear infections</li>\r\n<li>Sinus infections</li>\r\n<li>Minor cuts</li>\r\n<li>Broken bones or deep wounds</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n","cta":{"id":"rich-text-6e26b228af","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-6e26b228af":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:53:32Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-6e26b228af":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:53:32Z"}}},"item_1775753580469":{"id":"rich-text-c88a37c35a","content":"<h4>Emergency room</h4>\r\n<ul>\r\n<li>Chest pain</li>\r\n<li>Severe and prolonged shortness of breath</li>\r\n<li>Allergic reactions to food or insect bites</li>\r\n<li>Head injuries and/or unconsciousness</li>\r\n<li>Severe bleeding</li>\r\n<li>Consistent vomiting</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n","cta":{"id":"rich-text-c88a37c35a","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-c88a37c35a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:54:01Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-c88a37c35a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-04-09T16:54:01Z"}}}},":itemsOrder":["rich_text","item_1775753580469"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"content-grid-b2bdbc15ea":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-04-09T16:53:01Z"}}},"open_content":{"id":"open-content-3acec6e090","html":"<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1SapPUGBWom0dOjx4FmrwUICiUf4xfsY&ehbc=2E312F\" width=\"1200\" height=\"720\"></iframe>","iframe":{"url":null,"title":null,"width":null,"height":null,"scrolling":"auto","fullscreen":"false","customStyle":null},":type":"unchealth/components/content/open-content","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"open-content-3acec6e090":{"@type":"unchealth/components/content/open-content","repo:modifyDate":"2026-04-14T17:56:25Z"}}},"marketing_campaign_f":{"id":"marketing-campaign-footer-5b845faff4","copyright":"©2026 UNC Health. \r\nAll rights reserved.",":type":"unchealth/components/content/marketing-campaign-footer","dataLayer":{"marketing-campaign-footer-5b845faff4":{"@type":"unchealth/components/content/marketing-campaign-footer","repo:modifyDate":"2024-12-23T16:08:22Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}},":hierarchyType":"page",":path":"/content/unchealth/us/en/lp/urgent-care","dataLayer":{"page-00daef12d6":{"@type":"unchealth/components/core/page","repo:modifyDate":"2026-04-14T17:56:55Z"}}}