Welcome to Al Garhoud Medical Fitness Center

At Al Garhoud Medical Fitness Center, we are dedicated to providing you swift and reliable medical fitness examination services for residence visa applications and renewals, as well as occupational health screening. As part of our commitment to safeguarding public health and helping keep the whole community in good health and free from communicable illnesses, we implement rigorous screening processes and adhere strictly to health protocols.

Operated by Deira Medical Center, we use advanced technologies and software, to ensure your experience is smooth and hassle-free when you visit.

Occupational Health Timings

Monday to Thursday 7:30 am - 9:30 pm
Friday 04:00 pm - 7:30 pm
Saturday & Sunday 7:30 am - 11:00 am
04:00 pm - 7:00 pm

At Al Garhoud Medical Fitness Center, we are dedicated to providing you swift and reliable medical fitness examination services for residence visa applications and renewals, as well as occupational health screening. As part of our commitment to safeguarding public health and helping keep the whole community in good health and free from communicable illnesses, we implement rigorous screening processes and adhere strictly to health protocols.

Operated by Deira Medical Center, we use advanced technologies and software, to ensure your experience is smooth and hassle-free when you visit.

Occupational Health Timings

Monday to Thursday 7:30 am - 9:30 pm
Friday 04:00 pm - 7:30 pm
Saturday & Sunday 7:30 am - 11:00 am
04:00 pm - 7:00 pm

No results found.

No results found.
No results found.
No results found.
Medical Fitness Exam for Residency Visa

Medical Fitness Certification for residency visas

Pre-Employment Fitness Screening

Occupational health screening for UAE.

Al Garhoud Medical Fitness Center

Contact number

Working Hours

phone

Monday 07:00 AM - 09:30 PM

phone

Tuesday 07:00 AM - 09:30 PM

phone

Wednesday 07:00 AM - 09:30 PM

phone

Thursday 07:00 AM - 09:30 PM

Friday

phone

07:00 AM - 11:30 AM

phone

04:00 PM - 07:30 PM

phone

Saturday 07:30 AM - 02: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>