{"id":49722,"date":"2020-10-16T13:22:19","date_gmt":"2020-10-16T13:22:19","guid":{"rendered":"https:\/\/blog.headout.com\/?p=49722"},"modified":"2022-02-07T18:59:08","modified_gmt":"2022-02-07T18:59:08","slug":"where-can-americans-travel-right-now","status":"publish","type":"post","link":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/","title":{"rendered":"Where can Americans travel right now?"},"content":{"rendered":"<p>Short answer &#8211; Americans can now travel to quite a few countries! Long answer &#8211; while a lot of countries are welcoming travelers from USA, there are many restrictions in place. The most important being, upon returning to the U.S. some travelers may face a 14-day quarantine, based on the state. <\/p>\n<p>Though road trips and camping have quickly gained popularity in America, a good share of travelers are itching to leave the U.S.A. As of August 6, the USA Government has lifted a level 4 \u201cdo not travel\u201d advisory, opening the borders for domestic and international travel. <\/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=\"#usatravelrestrictions1\"><\/p>\n<li style=\"color: #03829D;\">Where Can Americans Travel Right Now?<\/li>\n<p><\/a> <a href=\"#usatravelrestrictions2\"><\/p>\n<li style=\"color: #03829D;\">Who CAN Visit USA Now?<\/li>\n<p><\/a> <a href=\"#usatravelrestrictions3\"><\/p>\n<li style=\"color: #03829D;\">Who CANNOT Visit USA Now? <\/li>\n<p><\/a> <a href=\"#usatravelrestrictions4\"><\/p>\n<li style=\"color: #03829D;\">What Should I Keep In Mind While Traveling To and From USA? <\/li>\n<p><\/a><a href=\"#usatravelrestrictions5\"><\/p>\n<li style=\"color: #03829D;\">Where Can I Check The Current Travel Restrictions In USA?<\/li>\n<p><\/a><\/ul>\n<h2 id=\"usatravelrestrictions1\">Where Can Americans Travel Right Now?<\/h2>\n<p>We&#8217;ve compiled all the countries where Americans can currently travel. As rules continuously change, destinations may suddenly reopen or close to American tourists without notice, so we recommend checking the country&#8217;s official website before booking tickets. <\/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 id=\"usatravelrestrictions2\">Who CAN Visit USA Now?<\/h2>\n<p>The USA government has allowed travelers from the following countries, as they do not need a US Visa to enter the country:<\/p>\n<ul>\n<li>Australia<\/li>\n<li>Chile<\/li>\n<li>Japan<\/li>\n<li>New Zealand<\/li>\n<li>South Korea<\/li>\n<li>Canada (via air only)<\/li>\n<\/ul>\n<p> If you hold a tourist visa for USA and your home country is not on the travel ban list, you can enter USA.<\/p>\n<p>Upon arrival in USA, most visitors will face quarantine measures in some states and other social distancing measures.<\/p>\n<p>Sign up for our monthly newsletter<\/p>\n<p>Your dose of travel fix &#8211; from hacks and deals to travel tips and everything in between,      delivered monthly to your inbox<\/p>\n<p>                    Get Inspired      Please enter a valid email      Unsubscribe anytime      <\/p>\n<h2 id=\"usatravelrestrictions3\">Who CANNOT Visit USA Now?<\/h2>\n<p>With specific exceptions, foreign nationals who have been in any of the following countries during the past 14 days may not enter the United States.  <\/p>\n<ul>\n<li>China<\/li>\n<li>Brazil<\/li>\n<li>Iran<\/li>\n<li>European Schengen area (Austria, Belgium, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Iceland, Italy, Latvia, Liechtenstein, Lithuania, Luxembourg, Malta, Netherlands, Norway, Poland, Portugal, Slovakia, Slovenia, Spain, Sweden, Switzerland, Monaco, San Marino, Vatican City) <\/li>\n<li>United Kingdom  (England, Scotland, Wales, Northern Ireland)<\/li>\n<li>Republic of Ireland<\/li>\n<\/ul>\n<p>Both the U.S\/Canada and the US\/Mexico land borders are closed to all non-essential travel and tourists will not be allowed entry unless they are returning home to their country of origin. <\/p>\n<h2 id=\"usatravelrestrictions4\">What Should I Keep In Mind While Traveling To and From USA? <\/h2>\n<ul>\n<li>If you decide to travel from USA, you&#8217;ll also want to check with the State Department for information on returning from your visit as there are some restrictions in place, including specific airports you must transit through and quarantine rules in some cases. <\/li>\n<li>Opting for a domestic vacation during these times has its perks. You won&#8217;t have to worry about visa restrictions, issues with entry or last-minute country closures ruining your trip. <\/li>\n<li>Many countries require Americans to show proof of a negative COVID test within 48-72 hours of your departure to avoid a 14-day quarantine. Make sure to check the official website of the country you&#8217;re visiting for specifics to avoid entry denial upon arrival. <\/li>\n<li>Make sure you are booking refundable tickets and hotels or purchasing travel insurance, to avoid losses on last minute border closures.<\/li>\n<\/ul>\n<h2 id=\"usatravelrestrictions5\">Where Can I Check The Current Travel Restrictions In USA? <\/h2>\n<p>For a complete list of the current travel restrictions in America, simply type in your home country and add Unites States of America as the destination. <\/p>\n<p>PS: You can embed this on any website of your choice.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Short answer &#8211; Americans can now travel to quite a few countries! Long answer &#8211; while a lot of countries are welcoming travelers from USA, there are many restrictions in place. The most important being, upon returning to the U.S. some travelers may face a 14-day quarantine, based on the state. Though road trips and [&hellip;]<\/p>\n","protected":false},"author":30,"featured_media":50208,"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 Americans Travel Right Now? [Updated Daily]<\/title>\n<meta name=\"description\" content=\"Find exhaustive information on traveling from the USA - updated list of countries, quarantine rules, travel restrictions, list of travel corridors, and more.\" \/>\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-americans-travel-right-now\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Where Can Americans Travel Right Now? [Updated Daily]\" \/>\n<meta property=\"og:description\" content=\"Find exhaustive information on traveling from the USA - updated list of countries, quarantine rules, travel restrictions, list of travel corridors, and more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/\" \/>\n<meta property=\"og:site_name\" content=\"Headout Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-16T13:22:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-07T18:59:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/ragnar-vorel-o8Utw2ETExA-unsplash-scaled-e1603291712694.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 Americans Travel Right Now? [Updated Daily]","description":"Find exhaustive information on traveling from the USA - updated list of countries, quarantine rules, travel restrictions, list of travel corridors, and more.","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-americans-travel-right-now\/","og_locale":"en_US","og_type":"article","og_title":"Where Can Americans Travel Right Now? [Updated Daily]","og_description":"Find exhaustive information on traveling from the USA - updated list of countries, quarantine rules, travel restrictions, list of travel corridors, and more.","og_url":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/","og_site_name":"Headout Blog","article_published_time":"2020-10-16T13:22:19+00:00","article_modified_time":"2022-02-07T18:59:08+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/ragnar-vorel-o8Utw2ETExA-unsplash-scaled-e1603291712694.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-americans-travel-right-now\/#article","isPartOf":{"@id":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/"},"author":{"name":"Lakshmi Menon","@id":"https:\/\/www.headout.com\/blog\/#\/schema\/person\/fe80bf96115b325c05ea56f8a6e0a2f7"},"headline":"Where can Americans travel right now?","datePublished":"2020-10-16T13:22:19+00:00","dateModified":"2022-02-07T18:59:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/"},"wordCount":2099,"commentCount":0,"publisher":{"@id":"https:\/\/www.headout.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/#primaryimage"},"thumbnailUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/ragnar-vorel-o8Utw2ETExA-unsplash-scaled-e1603291712694.jpg","keywords":["COVID","Global","Travel"],"articleSection":["Travel"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/","url":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/","name":"Where Can Americans Travel Right Now? [Updated Daily]","isPartOf":{"@id":"https:\/\/www.headout.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/#primaryimage"},"image":{"@id":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/#primaryimage"},"thumbnailUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/ragnar-vorel-o8Utw2ETExA-unsplash-scaled-e1603291712694.jpg","datePublished":"2020-10-16T13:22:19+00:00","dateModified":"2022-02-07T18:59:08+00:00","description":"Find exhaustive information on traveling from the USA - updated list of countries, quarantine rules, travel restrictions, list of travel corridors, and more.","breadcrumb":{"@id":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/#primaryimage","url":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/ragnar-vorel-o8Utw2ETExA-unsplash-scaled-e1603291712694.jpg","contentUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/ragnar-vorel-o8Utw2ETExA-unsplash-scaled-e1603291712694.jpg","width":1000,"height":667,"caption":"Where Can Americans Travel Right Now?"},{"@type":"BreadcrumbList","@id":"https:\/\/www.headout.com\/blog\/where-can-americans-travel-right-now\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Travel","item":"https:\/\/www.headout.com\/blog\/category\/wcp-travel\/"},{"@type":"ListItem","position":2,"name":"Where Can Americans Travel Now?"}]},{"@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\/49722"}],"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=49722"}],"version-history":[{"count":1,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/posts\/49722\/revisions"}],"predecessor-version":[{"id":83340,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/posts\/49722\/revisions\/83340"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/media\/50208"}],"wp:attachment":[{"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/media?parent=49722"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/categories?post=49722"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/tags?post=49722"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}