Welcome to Al Mizhar Health Center

At Al Mizhar Health Center, part of the Dubai Health network, we have been providing accessible, high-quality healthcare for families and individuals in the community since 2010. As well as offering comprehensive primary and family healthcare, our multidisciplinary team provide expertise care across a wide range of specialties including general obstetrics and gynecology, ophthalmology and dentistry.

 

In addition to our general pediatric services, Al Mizhar Health Center is also home to our highly specialized Pediatric Developmental and Autism Rehabilitation Center, where our highly-trained specialist team of physicians and therapists provide compassionate care and support for children with developmental delays and autism.

At Al Mizhar Health Center, part of the Dubai Health network, we have been providing accessible, high-quality healthcare for families and individuals in the community since 2010. As well as offering comprehensive primary and family healthcare, our multidisciplinary team provide expertise care across a wide range of specialties including general obstetrics and gynecology, ophthalmology and dentistry.

 

In addition to our general pediatric services, Al Mizhar Health Center is also home to our highly specialized Pediatric Developmental and Autism Rehabilitation Center, where our highly-trained specialist team of physicians and therapists provide compassionate care and support for children with developmental delays and autism.


Leadership team

Leader image

Dr. Amani Salem

Director
image

Saliya Abdulla

Head of Administrative Office
image

Gina Fajardo

Charge Nurse

No results found.
No results found.
Showing 1 to 6 of 109
Children's Vaccinations

Shielding Little Ones for a Healthier Tomorrow

Premarital Screening

Mandatory medical screening for marriage in the UAE.

Request for Medical Report

Request your medical report from any Dubai Health facility.

Request for Sick Leave Certificate

Request your sick leave certificate from any Dubai Health facility.

Travel Clinics

Preparing you for safe and healthy travel.

Vaccination Services

Safeguard Your Health at Every Stage of Life

Al Mizhar Health Center

Contact number

Clinic Hours

phone

Monday 07:30 AM - 10:00 PM

phone

Tuesday 07:30 AM - 10:00 PM

phone

Wednesday 07:30 AM - 10:00 PM

phone

Thursday 07:30 AM - 10:00 PM

phone

Friday 07:30 AM - 12:00 PM

phone

Sunday 07:30 AM - 09:00 PM

circle-lgo

lang-icon
Need an Appointment?

Explore our directory of doctors across multiple departments and specialties to find the care that best meets your needs.

Book Appointment
An error occurred while processing the template.
The following has evaluated to null or missing:
==> ObjectEntry_objectEntryFriendlyURL  [in template "50514338544647#20120#null" at line 11, column 53]

----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: ${ObjectEntry_objectEntryFriendlyURL...  [in template "50514338544647#20120#null" at line 11, column 51]
----
1<#assign visitingPatientHours = restClient.get("/c/facilitieses/${ObjectEntry_objectEntryId.getData()}/facilityToVisitingPatientHours") /> 
2<#assign hasGeo = ObjectField_latitude.getData()?has_content || ObjectField_longitude.getData()?has_content> 
3<#assign hasPhone = ObjectField_contactNo.getData()?has_content> 
4<#assign hideWorkingHours = getterUtil.getBoolean(ObjectField_hideWorkingHours.getData()) /> 
5 
6<script type="application/ld+json"> 
7
8  "@context": "https://schema.org", 
9  "@type": "MedicalBusiness", 
10  "name": "${ObjectField_name.getData()?json_string}", 
11  "@id": "${themeDisplay.getPortalURL()}/facility/${ObjectEntry_objectEntryFriendlyURL.getData()}", 
12  "url": "${themeDisplay.getPortalURL()}/facility/${ObjectEntry_objectEntryFriendlyURL.getData()}", 
13  "address": { 
14    "@type": "PostalAddress", 
15    "streetAddress": "<#if ObjectField_location.getData()?has_content>${ObjectField_location.getData()?js_string}<#else>Not available</#if>", 
16    "addressLocality": "Dubai", 
17    "addressCountry": "AE" 
18
19  <#if hasGeo>, 
20  "geo": { 
21    "@type": "GeoCoordinates" 
22    <#if ObjectField_latitude.getData()?has_content>, 
23    "latitude": "${ObjectField_latitude.getData()}"</#if> 
24    <#if ObjectField_longitude.getData()?has_content><#if ObjectField_latitude.getData()?has_content>,</#if> 
25    "longitude": "${ObjectField_longitude.getData()}"</#if> 
26
27  </#if> 
28  <#if hasPhone>, 
29  "telephone": "${ObjectField_contactNo.getData()?js_string}"<#if visitingPatientHours.items?has_content && !hideWorkingHours>,</#if> 
30  </#if> 
31  <#if visitingPatientHours.items?has_content && !hideWorkingHours> 
32  "openingHoursSpecification": [ 
33    <#if visitingPatientHours.items?has_content> 
34      <#assign timeGroups = {} /> 
35      <#list visitingPatientHours.items as visitingPatientHour> 
36        <#if visitingPatientHour.startTime?has_content && visitingPatientHour.endTime?has_content> 
37          <#assign startDate = visitingPatientHour.startTime /> 
38          <#assign endDate = visitingPatientHour.endTime /> 
39          <#assign startTimeDate = dateUtil.parseDate("yyyy-MM-dd'T'HH:mm", startDate, locale)> 
40         <#assign endTimeDate = dateUtil.parseDate("yyyy-MM-dd'T'HH:mm", endDate, locale)> 
41          <#assign dayOfWeek = dateUtil.getDate(startTimeDate,"EEEE", locale) /> 
42<#assign startTime = dateUtil.getDate(startTimeDate,"HH:mm", locale) /> 
43<#assign endTime = dateUtil.getDate(endTimeDate,"HH:mm", locale) /> 
44<#assign timeKey = startTime + "-" + endTime /> 
45          <#if timeGroups[timeKey]?has_content> 
46            <#assign timeGroups = timeGroups + {timeKey: timeGroups[timeKey] + [dayOfWeek]} /> 
47          <#else> 
48            <#assign timeGroups = timeGroups + {timeKey: [dayOfWeek]} /> 
49          </#if> 
50        </#if> 
51      </#list> 
52      <#list timeGroups?keys as key> 
53        <#assign days = timeGroups[key]> 
54        <#assign times = key?split("-")> 
55
56          "@type": "OpeningHoursSpecification", 
57          "dayOfWeek": [<#list days as d>"${d}"<#if d?has_next>, </#if></#list>], 
58          "opens": "${times[0]}", 
59          "closes": "${times[1]}" 
60        }<#if key_has_next>,</#if> 
61      </#list> 
62    <#else> 
63
64        "@type": "OpeningHoursSpecification", 
65        "dayOfWeek": ["Monday"], 
66        "opens": "00:00", 
67        "closes": "00:00" 
68
69    </#if> 
70
71  </#if> 
72
73</script>