{"id":49716,"date":"2020-10-09T12:01:25","date_gmt":"2020-10-09T12:01:25","guid":{"rendered":"https:\/\/blog.headout.com\/?p=49716"},"modified":"2024-01-17T11:49:03","modified_gmt":"2024-01-17T07:49:03","slug":"where-can-you-travel-from-uae","status":"publish","type":"post","link":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/","title":{"rendered":"Where can you travel from United Arab Emirates, complete list"},"content":{"rendered":"<p>Starting from July 4, international travel has opened up for UAE residents and citizens, albeit with restrictions in place. Although a number of countries have started to reopen their borders for international visitors, not all of them are open to travelers departing from the UAE. Nationals and residents leaving Dubai will need to produce a negative COVID\u201119 PCR test and an official, printed certificate upon arrival. They are also required to complete the quarantine undertaking form and submit this to the Dubai Health Authority staff on arrival.<\/p>\n<p>Note: The following information is accurate as of the date of publishing (major developments updated daily) and to the best of our knowledge. The countries mentioned and travel restrictions listed are subject to change as new developments unfold. If you are planning to travel to any of these destinations, please visit the official website of the country you&#8217;re visiting for the. <\/p>\n<p>In This Article<\/p>\n<ul> <a href=\"#uaetravelrestrictions1\"><\/p>\n<li style=\"color: #24a1b2;\">Where Can You Travel From United Arab Emirates Right Now?<\/li>\n<p><\/a> <a href=\"#uaetravelrestrictions2\"><\/p>\n<li style=\"color: #24a1b2;\">Who Can Visit United Arab Emirates Now?<\/li>\n<p><\/a> <a href=\"#uaetravelrestrictions3\"><\/p>\n<li style=\"color: #24a1b2;\">What Should I Keep In Mind While Traveling To and From UAE? <\/li>\n<p><\/a> <a href=\"#uaetravelrestrictions4\"><\/p>\n<li style=\"color: #24a1b2;\">Where Can I Check The Current Travel Restrictions In UAE?  <\/li>\n<p><\/a><\/ul>\n<h2>Where Can You Travel From United Arab Emirates Right Now?<\/h2>\n<p>Below is the complete list of countries those from United Arab Emirates can travel to, with no or minimal restrictions upon arrival.<\/p>\n<p>    View More                                                                 [tcb-script src=&#8221;https:\/\/cdn.jsdelivr.net\/npm\/markedjs@10.0.0\/marked.min.js&#8221; integrity=&#8221;sha256-L5R7HpR5ankOAI75aZBmBcQI558i+sIi6MtlUJcYcIE=&#8221; crossorigin=&#8221;anonymous&#8221;][\/tcb-script][tcb-script]  String.prototype.toTitleCase = function () {    &#8220;use strict&#8221;;    var smallWords = \/^(a|an|and|as|at|but|by|en|for|if|in|nor|of|on|or|per|the|to|v.?|vs.?|via)$\/i;    var alphanumericPattern = \/([A-Za-z0-9u00C0-u00FF])\/;    var wordSeparators = \/([ :\u2013\u2014-])\/;    return this.split(wordSeparators)      .map(function (current, index, array) {        if (          current.search(smallWords) &gt; -1 &amp;&amp;          index !== 0 &amp;&amp;          index !== array.length &#8211; 1 &amp;&amp;          array[index &#8211; 3] !== &#8220;:&#8221; &amp;&amp;          array[index + 1] !== &#8220;:&#8221; &amp;&amp;          (array[index + 1] !== &#8220;-&#8221; ||            (array[index &#8211; 1] === &#8220;-&#8221; &amp;&amp; array[index + 1] === &#8220;-&#8220;))        ) {          return current.toLowerCase();        }        if (current.substr(1).search(\/[A-Z]|..\/) &gt; -1) {          return current;        }        if (array[index + 1] === &#8220;:&#8221; &amp;&amp; array[index + 2] !== &#8220;&#8221;) {          return current;        }        return current.replace(alphanumericPattern, function (match) {          return match.toUpperCase();        });      })      .join(&#8220;&#8221;);  };[\/tcb-script][tcb-script]  function getCurrentDate() {    const current = new Date();    const yesterday = new Date(current.getTime() &#8211; 86400000);    const options = { year: &#8220;numeric&#8221;, month: &#8220;long&#8221;, day: &#8220;numeric&#8221; };    return yesterday.toLocaleDateString(&#8220;en-US&#8221;, options);  }  const covidRestrictionsWrapper = document.querySelector(    &#8220;.covid-restrictions-wrapper&#8221;  );  const countryRestrictionsWrapper = covidRestrictionsWrapper.querySelector(    &#8220;.country-restrictions-wrapper&#8221;  );  const originCountry = countryRestrictionsWrapper    .getAttribute(&#8220;data-country&#8221;)    .toTitleCase();  const travelRestrictionsTableURL =    &#8220;https:\/\/api.airtable.com\/v0\/appCiV6q7KyN8meXg\/Travel%20Restrictions?view=Country+Table+(Restrictions)&#8221;;  async function getFirst100Results() {    const config = {      airtableURL: travelRestrictionsTableURL,    };    try {      const response = await fetch(&#8220;https:\/\/vivillion.netlify.app\/api\/airtable&#8221;, {        method: &#8220;POST&#8221;,        body: JSON.stringify(config),      });      return await response.json();    } catch (error) {      console.log(error);    }  }  async function getNext100Results(offsetValue) {    const config = {      airtableURL: offsetValue        ? `${travelRestrictionsTableURL}&amp;offset=${offsetValue}`        : travelRestrictionsTableURL,    };    try {      const response = await fetch(&#8220;https:\/\/vivillion.netlify.app\/api\/airtable&#8221;, {        method: &#8220;POST&#8221;,        body: JSON.stringify(config),      });      return await response.json();    } catch (error) {      console.log(error);    }  }  async function getCompleteData() {    const firstDataset = await getFirst100Results();    const secondDataset = await getNext100Results(firstDataset.data.offset);    const finalDataset = firstDataset.data.records.concat(      secondDataset.data.records    );    return finalDataset;  }  function generateListMarkup(arr) {    let markup = &#8220;&#8221;;    for (let i = 0; i &lt; arr.length; i++) {      markup += `&lt;li&gt;${marked(arr[i])}&lt;\/li&gt;`;    }    return markup;  }  function generateCountryMarkup(dataArr, startIndex, stopIndex) {    let markup = &#8220;&#8221;;    for (let i = startIndex; i &lt; stopIndex; i++) {      const data = dataArr[i];      const imageUrl = data[&#8220;Country Image&#8221;];      const quarantine = data[&#8220;Quarantine Restrictions&#8221;]        ? data[&#8220;Quarantine Restrictions&#8221;]        : &#8220;&#8221;;      const travelRestrictions = data[&#8220;Travel Restrictions&#8221;]        ? data[&#8220;Travel Restrictions&#8221;]        : &#8220;&#8221;;      const re = \/https?:\/\/[^()]+\/;      const officialLinks = data[&#8220;Official links&#8221;]        ? data[&#8220;Official links&#8221;].match(re)[0].trim()        : &#8220;&#8221;;      const countrySlug = data.Country        ? data.Country.split(&#8221; &#8220;).join(&#8220;-&#8220;).toLowerCase()        : &#8220;&#8221;;      const countryRank = data[&#8220;Rank (from countryTable)&#8221;];      const quarantineDetails = data[&#8220;Quarantine Rule Details&#8221;]        ? data[&#8220;Quarantine Rule Details&#8221;]        : &#8220;&#8221;;      const healthCheckup = data[&#8220;Health Check Up on Arrival&#8221;]        ? data[&#8220;Health Check Up on Arrival&#8221;]        : &#8220;&#8221;;      const freeTextContent = data[&#8220;Free Text Content&#8221;]        ? data[&#8220;Free Text Content&#8221;]        : &#8220;&#8221;;      const negativeCertificate = data[&#8220;Covid 19 negative certificate&#8221;]        ? data[&#8220;Covid 19 negative certificate&#8221;]        : &#8220;&#8221;;      const formRequirements = data[&#8220;New Forms\/Documents Required&#8221;]        ? data[&#8220;New Forms\/Documents Required&#8221;]        : &#8220;&#8221;;      const travelHealthInsurance = data[&#8220;Travel Health Insurance&#8221;]        ? data[&#8220;Travel Health Insurance&#8221;]        : &#8220;&#8221;;      const downloadApps = data[&#8220;Download Apps&#8221;] ? data[&#8220;Download Apps&#8221;] : &#8220;&#8221;;      const covidCases = data.covid        ? data.covid.lastWeekCases.toLocaleString()        : &#8220;n\/a&#8221;;      const travelRestrictionsClass = travelRestrictions        .split(&#8221; &#8220;)        .join(&#8220;-&#8220;)        .toLowerCase();      const listItems = [        quarantineDetails,        healthCheckup,        freeTextContent,        negativeCertificate,        formRequirements,        travelHealthInsurance,        downloadApps,      ].filter((str) =&gt; {        if (str &amp;&amp; str.length != 1) {          return str;        }      });      const listItemMarkup = generateListMarkup(listItems);      const countryMarkup = `    &lt;div&gt;        &lt;div&gt;          &lt;div&gt;            &lt;picture&gt;              &lt;source type=&#8221;image\/webp&#8221; data-srcset=&#8221;${imageUrl          ? `${imageUrl}?fm=webp&amp;auto=compress&amp;w=500&amp;crop=faces&amp;fit=min`          : &#8220;&#8221;        }&#8221;&gt;              &lt;img data-src=&#8221;${imageUrl          ? `${imageUrl}?fm=pjpg&amp;auto=compress&amp;w=500&amp;crop=faces&amp;fit=min`          : &#8220;&#8221;        }&#8221; data-sizes=&#8221;auto&#8221; alt=&#8221;${data.Country ? data.Country : &#8220;&#8221;}&#8221;&gt;            &lt;\/picture&gt;          &lt;\/div&gt;          &lt;div&gt;            &lt;div&gt;${data.Country}&lt;\/div&gt;            &lt;div&gt;              &lt;div&gt;&lt;span&gt;&lt;\/span&gt;&lt;span&gt;${travelRestrictions}&lt;\/span&gt;&lt;\/div&gt;              &lt;div&gt;${quarantine}&lt;\/div&gt;            &lt;\/div&gt;            &lt;div&gt;             &lt;svg width=&#8221;6&#8243; height=&#8221;12&#8243; viewBox=&#8221;0 0 6 12&#8243; fill=&#8221;none&#8221;                xmlns=&#8221;http:\/\/www.w3.org\/2000\/svg&#8221; style=&#8221;margin-left: 12px;&#8221;invert&#8221; : &#8220;&#8221;        }&#8221;&gt;                &lt;path d=&#8221;M0.5 11L5.5 6L0.5 1&#8243; stroke=&#8221;#444&#8243; stroke-linecap=&#8221;round&#8221; stroke-linejoin=&#8221;round&#8221;&gt;&lt;\/path&gt;              &lt;\/svg&gt;            &lt;\/div&gt;          &lt;\/div&gt;        &lt;\/div&gt;        &lt;divrestrictions-info show&#8221; : &#8220;restrictions-info&#8221;}&#8221;&gt;          &lt;div&gt;            &lt;h3&gt;Rules for travelers&lt;\/h3&gt;            &lt;ol&gt;${listItemMarkup}&lt;\/ol&gt;          &lt;\/div&gt;          &lt;div&gt;            &lt;div&gt;              &lt;div&gt;\ud83c\udfe1&lt;\/div&gt;              &lt;div&gt;Quarantine&lt;\/div&gt;              &lt;div&gt;${quarantine}&lt;\/div&gt;            &lt;\/div&gt;            &lt;div&gt;              &lt;div&gt;\ud83c\udff0&lt;\/div&gt;              &lt;div&gt;Tourist Attractions&lt;\/div&gt;              &lt;div&gt;${data[&#8220;Tourist Attractions&#8221;]}&lt;\/div&gt;            &lt;\/div&gt;            &lt;div&gt;              &lt;div&gt;\ud83d\ude8c&lt;\/div&gt;              &lt;div&gt;Public Transport&lt;\/div&gt;              &lt;div&gt;${data[&#8220;Public Transport&#8221;]}&lt;\/div&gt;            &lt;\/div&gt;            &lt;div&gt;              &lt;div&gt;\ud83c\udf7b&lt;\/div&gt;              &lt;div&gt;Dining &amp; Bars&lt;\/div&gt;              &lt;div&gt;${data[&#8220;Dining and Bars&#8221;]}&lt;\/div&gt;            &lt;\/div&gt;            &lt;div&gt;              &lt;div&gt;\ud83d\ude97&lt;\/div&gt;              &lt;div&gt;Land Borders&lt;\/div&gt;              &lt;div&gt;${data[&#8220;Land Borders&#8221;] ? data[&#8220;Land Borders&#8221;] : &#8220;&#8221;}&lt;\/div&gt;            &lt;\/div&gt;            &lt;div&gt;              &lt;div&gt;\ud83d\ude37&lt;\/div&gt;              &lt;div&gt;Covid-19 Cases (last 7 days)&lt;\/div&gt;              &lt;div&gt;${covidCases}&lt;\/div&gt;            &lt;\/div&gt;          &lt;\/div&gt;          &lt;div&gt;            ${countryRank          ? `&lt;a href=&#8221;https:\/\/www.headout.com\/post-covid19-travelling-to-${countrySlug}&#8221;                target=&#8221;_blank&#8221; role=&#8221;button&#8221;&gt;Know More&lt;svg width=&#8221;6&#8243;                  height=&#8221;12&#8243; viewBox=&#8221;0 0 6 12&#8243; fill=&#8221;none&#8221; xmlns=&#8221;http:\/\/www.w3.org\/2000\/svg&#8221;&gt;                  &lt;path d=&#8221;M0.5 11L5.5 6L0.5 1&#8243; stroke=&#8221;#8000FF&#8221; stroke-linecap=&#8221;round&#8221; stroke-linejoin=&#8221;round&#8221;&gt;&lt;\/path&gt;                &lt;\/svg&gt;                &lt;\/a&gt;`          : &#8220;&#8221;        }            &lt;div&gt;Exceptions may apply, check full details &lt;a                href=&#8221;${officialLinks}&#8221;                target=&#8221;_blank&#8221;&gt;here.&lt;\/a&gt;&lt;\/div&gt;            &lt;div&gt;Last verified on: ${getCurrentDate()}&lt;\/div&gt;          &lt;\/div&gt;        &lt;\/div&gt;      &lt;\/div&gt;    `;      markup += countryMarkup;    }    countryRestrictionsWrapper.insertAdjacentHTML(&#8220;beforeend&#8221;, markup);    covidRestrictionsWrapper.setAttribute(&#8220;data-stop-index&#8221;, stopIndex);  }  const calcLastWeekCases = (originalArray) =&gt; {    const lastDay = originalArray[originalArray.length &#8211; 1];    const firstDay = originalArray[0];    return lastDay &#8211; firstDay;  };  async function getCasesForAllCountries(countries) {    const response = await fetch(      `https:\/\/disease.sh\/v3\/covid-19\/historical\/${countries}?lastdays=8`    );    const data = await response.json();    const cases = data.map((el) =&gt; {      if (el.timeline) {        const cases = Object.values(el.timeline.cases);        const finalcases = calcLastWeekCases(cases);        return {          country: el.country,          lastWeekCases: finalcases,        };      }    });    return cases;  }  async function getCasesForPuertoRico() {    const response = await fetch(      &#8220;https:\/\/disease.sh\/v3\/covid-19\/nyt\/states\/puerto rico?lastdays=8&#8221;    );    const data = await response.json();    const cases = data.map((day) =&gt; day.cases);    const finalCases = calcLastWeekCases(cases);    return {      country: data[0].state,      lastWeekCases: finalCases,    };  }  async function getCasesForHongKong() {    const response = await fetch(      &#8220;https:\/\/disease.sh\/v3\/covid-19\/historical\/chn\/hong kong?lastdays=8&#8221;    );    const data = await response.json();    const cases = Object.values(data.timeline.cases);    const finalCases = calcLastWeekCases(cases);    const finalData = {      country: data.province,      lastWeekCases: finalCases,    };    return finalData;  }  async function covidRestrictionsFinalData() {    const data = await getCompleteData();    const filteredData = data.filter((country) =&gt; {      const allowedCountries = country.fields.Allowed;      if (allowedCountries) {        if (          allowedCountries.includes(originCountry) ||          allowedCountries.includes(&#8220;All&#8221;)        ) {          return country;        }      }    });    const filteredCountries = filteredData      .filter((data) =&gt; {        if (data.fields.ISO3 !== &#8220;PRI&#8221;) {          return data;        }      })      .map((data) =&gt; data.fields.ISO3)      .join(&#8220;,&#8221;);    const covidCasesAllCountries = await getCasesForAllCountries(      filteredCountries    );    const covidCasesPuertoRico = await getCasesForPuertoRico();    const covidCasesHongKong = await getCasesForHongKong();    const finalData = [];    filteredData.forEach((data) =&gt; {      const index = covidCasesAllCountries.findIndex((x) =&gt; {        let country = &#8220;&#8221;;        if (x != undefined) {          switch (x.country) {            case &#8220;UK&#8221;:              country = &#8220;United Kingdom&#8221;;              break;            case &#8220;USA&#8221;:              country = &#8220;United States of America&#8221;;              break;            case &#8220;UAE&#8221;:              country = &#8220;United Arab Emirates&#8221;;              break;            case &#8220;LAO&#8221;:              country = &#8220;Lao People&#8217;s Democratic Republic&#8221;;              break;            case &#8220;DRC&#8221;:              country = &#8220;Democratic Republic of Congo&#8221;;              break;            case &#8220;Bosnia&#8221;:              country = &#8220;Bosnia and Herzegovina&#8221;;              break;            case &#8220;Kyrgyzstan&#8221;:              country = &#8220;Kyrgyz Republic&#8221;;              break;            case &#8220;S. Korea&#8221;:              country = &#8220;South Korea&#8221;;              break;            default:              country = x.country;          }        }        return country === data.fields.Country;      });      let covidData;      if (data.fields.Country === &#8220;Puerto Rico&#8221;) {        covidData = covidCasesPuertoRico;      } else if (data.fields.Country === &#8220;Hong Kong&#8221;) {        covidData = covidCasesHongKong;      } else {        covidData = covidCasesAllCountries[index];      }      const obj = {        &#8230;data.fields,        covid: covidData,      };      finalData.push(obj);    });    return finalData;  }  document.addEventListener(&#8220;DOMContentLoaded&#8221;, () =&gt; {    const viewBtn = covidRestrictionsWrapper.querySelector(&#8220;.view-btn&#8221;);    covidRestrictionsFinalData().then((data) =&gt; {      const numOfCardsToAdd = 4;      const finalData = [&#8230;data];      generateCountryMarkup(finalData, 0, numOfCardsToAdd);      viewBtn.addEventListener(&#8220;click&#8221;, function (e) {        let stopIndex;        const currentStopIndex = parseInt(          covidRestrictionsWrapper.getAttribute(&#8220;data-stop-index&#8221;)        );        const formula = finalData.length &#8211; currentStopIndex &#8211; numOfCardsToAdd;        if (formula &gt; 0) {          stopIndex = currentStopIndex + numOfCardsToAdd;        } else {          stopIndex = finalData.length;          e.target.classList.add(&#8220;hide&#8221;);        }        generateCountryMarkup(finalData, currentStopIndex, stopIndex);      });    });    countryRestrictionsWrapper.addEventListener(&#8220;click&#8221;, function (e) {      if (e.target.matches(&#8220;.country-info *&#8221;)) {        const countryCard = e.target.closest(&#8220;.country-restrictions&#8221;);        const restrictionsInfo = countryCard.querySelector(&#8220;.restrictions-info&#8221;);        const arrowSvg = countryCard.querySelector(&#8220;.arrow svg&#8221;);        restrictionsInfo.classList.toggle(&#8220;show&#8221;);        arrowSvg.classList.toggle(&#8220;invert&#8221;);      }    });  });[\/tcb-script]<\/p>\n<h2>Who Can Visit United Arab Emirates Now?<\/h2>\n<p>As of October 2, 2020, UAE is open for travel to most nationalities, provided they produce a negative result of a PCR test conducted within 96 hours before travelling to Dubai. <\/p>\n<p>All passengers arriving from Afghanistan, Angola, Argentina, Bangladesh, Cambodia, Chile, Cote d&#8217;Ivoire, Croatia, Cyprus, Czechia, Djibouti, Egypt, Eritrea, Ethiopia, Georgia, Ghana, Greece, Guinea, Hungary, India, Iran, Iraq, Israel, Jordan, Kenya, Lebanon, Malta, Moldova (Rep.), Montenegro, Morocco, Myanmar, Nepal, Pakistan, Philippines, Romania, Russian Fed., Rwanda, Senegal, Slovakia, Somalia, South Sudan, Sudan, Syria, Tajikistan, Tanzania, Tunisia, Turkmenistan, USA (only California, Florida and Texas), Ukraine, Uzbekistan, Viet Nam, Zambia or Zimbabwe must have a medical certificate with a negative CCOVID-19 PCR test result 96 hours before departure. <\/p>\n<p>Incoming visitors will be required to fill out the typical visa application, have medical insurance, and download the COVID-19 DXB app prior to arrival. Along with the negative coronavirus test, health declaration form and temperature checks at the airport is mandatory.<\/p>\n<h2>What Should I Keep In Mind While Traveling To and From UAE? <\/h2>\n<ul>\n<li>A COVID-19 PCR test and quarantine undertaking form is compulsory upon entry to UAE. <\/li>\n<li>If you&#8217;re traveling from <a href=\"https:\/\/www.headout.com\/blog\/dubai-guide-abu-dhabi-day-trip\/\" target=\"_blank\" rel=\"noopener\">Dubai to Abu Dhabi <\/a> or vice versa via road, there are strict rules in place. For entry to Abu Dhabi from Dubai, you are required to produce a negative COVID\u201119 PCR test result issued within 96 hours.  <\/li>\n<li>If you&#8217;re traveling from one emirate to the other, your quarantine time will be reduced by the number of days you have already been in another emirate of the UAE. For example, if you have been in Dubai for 10 days before entering Ajman, you must quarantine for 4 days after entering Ajman.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Starting from July 4, international travel has opened up for UAE residents and citizens, albeit with restrictions in place. Although a number of countries have started to reopen their borders for international visitors, not all of them are open to travelers departing from the UAE. Nationals and residents leaving Dubai will need to produce a [&hellip;]<\/p>\n","protected":false},"author":30,"featured_media":50238,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[45],"tags":[6559,6311,6310],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Where Can You Travel From United Arab Emirates [Updated Daily]<\/title>\n<meta name=\"description\" content=\"Find exhaustive information on traveling from United Arab Emirates - quarantine rules, travel restrictions, list of travel corridors, and more here.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Where Can You Travel From United Arab Emirates [Updated Daily]\" \/>\n<meta property=\"og:description\" content=\"Find exhaustive information on traveling from United Arab Emirates - quarantine rules, travel restrictions, list of travel corridors, and more here.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/\" \/>\n<meta property=\"og:site_name\" content=\"Headout Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-09T12:01:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-17T07:49:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/mohsin-5nV92BGm1oc-unsplash-scaled-e1603294443695.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Lakshmi Menon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Lakshmi Menon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Where Can You Travel From United Arab Emirates [Updated Daily]","description":"Find exhaustive information on traveling from United Arab Emirates - quarantine rules, travel restrictions, list of travel corridors, and more here.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/","og_locale":"en_US","og_type":"article","og_title":"Where Can You Travel From United Arab Emirates [Updated Daily]","og_description":"Find exhaustive information on traveling from United Arab Emirates - quarantine rules, travel restrictions, list of travel corridors, and more here.","og_url":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/","og_site_name":"Headout Blog","article_published_time":"2020-10-09T12:01:25+00:00","article_modified_time":"2024-01-17T07:49:03+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/mohsin-5nV92BGm1oc-unsplash-scaled-e1603294443695.jpg","type":"image\/jpeg"}],"author":"Lakshmi Menon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Lakshmi Menon","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/#article","isPartOf":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/"},"author":{"name":"Lakshmi Menon","@id":"https:\/\/www.headout.com\/blog\/#\/schema\/person\/fe80bf96115b325c05ea56f8a6e0a2f7"},"headline":"Where can you travel from United Arab Emirates, complete list","datePublished":"2020-10-09T12:01:25+00:00","dateModified":"2024-01-17T07:49:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/"},"wordCount":1934,"commentCount":0,"publisher":{"@id":"https:\/\/www.headout.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/#primaryimage"},"thumbnailUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/mohsin-5nV92BGm1oc-unsplash-scaled-e1603294443695.jpg","keywords":["COVID","Global","Travel"],"articleSection":["Travel"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/","url":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/","name":"Where Can You Travel From United Arab Emirates [Updated Daily]","isPartOf":{"@id":"https:\/\/www.headout.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/#primaryimage"},"image":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/#primaryimage"},"thumbnailUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/mohsin-5nV92BGm1oc-unsplash-scaled-e1603294443695.jpg","datePublished":"2020-10-09T12:01:25+00:00","dateModified":"2024-01-17T07:49:03+00:00","description":"Find exhaustive information on traveling from United Arab Emirates - quarantine rules, travel restrictions, list of travel corridors, and more here.","breadcrumb":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/#primaryimage","url":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/mohsin-5nV92BGm1oc-unsplash-scaled-e1603294443695.jpg","contentUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/mohsin-5nV92BGm1oc-unsplash-scaled-e1603294443695.jpg","width":1000,"height":667,"caption":"Where can you travel from UAE?"},{"@type":"BreadcrumbList","@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-uae\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Travel","item":"https:\/\/www.headout.com\/blog\/category\/wcp-travel\/"},{"@type":"ListItem","position":2,"name":"Where Can You Travel From United Arab Emirates"}]},{"@type":"WebSite","@id":"https:\/\/www.headout.com\/blog\/#website","url":"https:\/\/www.headout.com\/blog\/","name":"Headout Blog","description":"Where will you go next?","publisher":{"@id":"https:\/\/www.headout.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.headout.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.headout.com\/blog\/#organization","name":"Headout","url":"https:\/\/www.headout.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.headout.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2016\/07\/headout-logo.png","contentUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2016\/07\/headout-logo.png","width":550,"height":84,"caption":"Headout"},"image":{"@id":"https:\/\/www.headout.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.headout.com\/blog\/#\/schema\/person\/fe80bf96115b325c05ea56f8a6e0a2f7","name":"Lakshmi Menon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.headout.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/47293d4b1b985cc456d8d147bb654bc4?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/47293d4b1b985cc456d8d147bb654bc4?s=96&r=g","caption":"Lakshmi Menon"},"description":"Born to parents bit by the wander bug, Lakshmi calls her love for travel \"hereditary and habitual\". Perpetually ensconced with a book in her hand and a mug of coffee in the other, she has been to over 15 countries in her 23 years of existence and is currently saving miles and money for her solo trip to Iceland. Always hustling towards the least trodden path, she has encountered some wonderful people during her escapades and if you ever meet her, she won't stop gushing about them.","url":"https:\/\/www.headout.com\/blog\/author\/lakshmi-menon\/"}]}},"_links":{"self":[{"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/posts\/49716"}],"collection":[{"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/users\/30"}],"replies":[{"embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/comments?post=49716"}],"version-history":[{"count":3,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/posts\/49716\/revisions"}],"predecessor-version":[{"id":158992,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/posts\/49716\/revisions\/158992"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/media\/50238"}],"wp:attachment":[{"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/media?parent=49716"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/categories?post=49716"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/tags?post=49716"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}