{"id":50093,"date":"2020-10-20T10:46:41","date_gmt":"2020-10-20T10:46:41","guid":{"rendered":"https:\/\/blog.headout.com\/?p=50093"},"modified":"2022-02-07T18:57:39","modified_gmt":"2022-02-07T18:57:39","slug":"where-can-you-travel-from-spain","status":"publish","type":"post","link":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/","title":{"rendered":"Where can you travel from Spain, complete guide"},"content":{"rendered":"<p>The Estado Alarma (State of Emergency) in Spain was lifted on 21st June, 2020, following which Spain first reopened borders to a list of EU nations(including the UK), and on July 3rd, 2020 it opened borders to an expanded list of third-party nations outside the EU. Tourists from a approved third countries outside of the EU: Australia, Canada, China, Georgia, Japan, New Zealand, Rwanda, South Korea, Thailand, Tunisia, and Uruguay are allowed to visit Spain, subject stringent checks upon 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=\"#spaintravelrestrictions1\"><\/p>\n<li style=\"color: #03829D;\">Where Can You Travel From Spain Right Now?<\/li>\n<p><\/a> <a href=\"#spaintravelrestrictions2\"><\/p>\n<li style=\"color: #03829D;\">Who Can Visit Spain Now?<\/li>\n<p><\/a> <a href=\"#spaintravelrestrictions3\"><\/p>\n<li style=\"color: #03829D;\">What Should I Keep In Mind While Traveling To and From Spain? <\/li>\n<p><\/a> <a href=\"#spaintravelrestrictions4\"><\/p>\n<li style=\"color: #03829D;\">Where Can I Check The Current Travel Restrictions In Spain?  <\/li>\n<p><\/a><\/ul>\n<h2 id=\"spaintravelrestrictions1\">Where Can You Travel From Spain Right Now?<\/h2>\n<p>Below is the complete list of countries you can visit from Spain.<\/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 &amp;&amp; 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=\"spaintravelrestrictions2\">Who Can Visit Spain Now?<\/h2>\n<p>On June 21st Spain\u2019s borders open to European Union member states, countries in the Schengen area, and the United Kingdom. If you are coming from any of these countries you do not need to do a quarantine after your arrival but you still need to get your Health Control Form. Remember that anybody entering Spain needs to follow the health guidelines and have their Health Control Form upon entry. If you don\u2019t follow these rules you won\u2019t be able to visit Spain.<\/p>\n<p>Spain also opened for a group of non-European countries. From July 1st the following countries can travel to Spain: Australia, New Zealand, Canada, Japan, South Korea, Thailand, Serbia, Montenegro, Morocco, Rwanda, Tunisia, Georgia, Algeria, and Uruguay.<\/p>\n<h2 id=\"spaintravelrestrictions3\">What Should I Keep In Mind While Traveling To and From Spain? <\/h2>\n<ul>\n<li>All passengers upon arrival in Spain can expect a health screening from a border officer, as well temperature scans. Passengers are also being asked to wear a mask and must adhere to social distancing of 5ft (1.5m).<\/li>\n<li>All travelers to Spain must fill out and sign a FCS Health Control Form prior to arrival or download the free &#8220;Spain Travel Health&#8221; app and fill in the information there.  The generated QR code must be presented to officials upon arrival.<\/li>\n<li>There are no quarantine measures in place for visitors to Spain. However some countries have quarantine periods on travelers coming back from Spain &#8211; Canada, South Korea, China, Denmark,Slovenia, Finland, Georgia,Greece, Italy, Norway, Japan, Netherlands, Poland, United Kingdom,  Switzerland, Uruguay, Germany, Austria (exception if arriving from Canary Islands), Australia, Belgium (exception if arriving from the Region of Valencia or the islands of Tenerife, El Hierro, La Gomera or La Palma).<\/li>\n<li>There is free movement within Spain, with occasional exceptions in specific places to ensure safety. <\/li>\n<\/ul>\n<h2 id=\"spaintravelrestrictions4\">Where Can I Check The Current Travel Restrictions In Spain? <\/h2>\n<p>For a complete list of the current travel restrictions in Spain, simply type in your home country and add Spain as the destination. <\/p>\n<p>PS: You can embed this on any website of your choice.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Estado Alarma (State of Emergency) in Spain was lifted on 21st June, 2020, following which Spain first reopened borders to a list of EU nations(including the UK), and on July 3rd, 2020 it opened borders to an expanded list of third-party nations outside the EU. Tourists from a approved third countries outside of the [&hellip;]<\/p>\n","protected":false},"author":30,"featured_media":50248,"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 Spain [Updated Daily]<\/title>\n<meta name=\"description\" content=\"Find exhaustive information on traveling from Spain - 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-you-travel-from-spain\/\" \/>\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 Spain [Updated Daily]\" \/>\n<meta property=\"og:description\" content=\"Find exhaustive information on traveling from Spain - quarantine rules, travel restrictions, list of travel corridors, and more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/\" \/>\n<meta property=\"og:site_name\" content=\"Headout Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-20T10:46:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-07T18:57:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/v2f-zsgZDg_OwLk-unsplash-scaled-e1603294866453.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"1333\" \/>\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 Spain [Updated Daily]","description":"Find exhaustive information on traveling from Spain - 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-you-travel-from-spain\/","og_locale":"en_US","og_type":"article","og_title":"Where Can You Travel From Spain [Updated Daily]","og_description":"Find exhaustive information on traveling from Spain - quarantine rules, travel restrictions, list of travel corridors, and more.","og_url":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/","og_site_name":"Headout Blog","article_published_time":"2020-10-20T10:46:41+00:00","article_modified_time":"2022-02-07T18:57:39+00:00","og_image":[{"width":1000,"height":1333,"url":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/v2f-zsgZDg_OwLk-unsplash-scaled-e1603294866453.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-spain\/#article","isPartOf":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/"},"author":{"name":"Lakshmi Menon","@id":"https:\/\/www.headout.com\/blog\/#\/schema\/person\/fe80bf96115b325c05ea56f8a6e0a2f7"},"headline":"Where can you travel from Spain, complete guide","datePublished":"2020-10-20T10:46:41+00:00","dateModified":"2022-02-07T18:57:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/"},"wordCount":1981,"commentCount":0,"publisher":{"@id":"https:\/\/www.headout.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/#primaryimage"},"thumbnailUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/v2f-zsgZDg_OwLk-unsplash-scaled-e1603294866453.jpg","keywords":["COVID","Global","Travel"],"articleSection":["Travel"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/","url":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/","name":"Where Can You Travel From Spain [Updated Daily]","isPartOf":{"@id":"https:\/\/www.headout.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/#primaryimage"},"image":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/#primaryimage"},"thumbnailUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/v2f-zsgZDg_OwLk-unsplash-scaled-e1603294866453.jpg","datePublished":"2020-10-20T10:46:41+00:00","dateModified":"2022-02-07T18:57:39+00:00","description":"Find exhaustive information on traveling from Spain - quarantine rules, travel restrictions, list of travel corridors, and more.","breadcrumb":{"@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/#primaryimage","url":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/v2f-zsgZDg_OwLk-unsplash-scaled-e1603294866453.jpg","contentUrl":"https:\/\/www.headout.com\/blog\/wp-content\/uploads\/2020\/10\/v2f-zsgZDg_OwLk-unsplash-scaled-e1603294866453.jpg","width":1000,"height":1333,"caption":"Where Can You Travel From Spain"},{"@type":"BreadcrumbList","@id":"https:\/\/www.headout.com\/blog\/where-can-you-travel-from-spain\/#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 Spain"}]},{"@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\/50093"}],"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=50093"}],"version-history":[{"count":1,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/posts\/50093\/revisions"}],"predecessor-version":[{"id":82799,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/posts\/50093\/revisions\/82799"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/media\/50248"}],"wp:attachment":[{"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/media?parent=50093"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/categories?post=50093"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.headout.com\/blog\/wp-json\/wp\/v2\/tags?post=50093"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}