{"id":59163,"date":"2024-06-06T13:40:21","date_gmt":"2024-06-06T11:40:21","guid":{"rendered":"https:\/\/www.toulouse-tourisme.com\/what-to-see-and-do\/pass-explorateurs\/"},"modified":"2026-03-11T15:38:13","modified_gmt":"2026-03-11T14:38:13","slug":"pass-explorateurs","status":"publish","type":"page","link":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/","title":{"rendered":"The Pass Explorateurs"},"content":{"rendered":"\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">What a super idea!<\/h2>\n\n\n\n<p>With the Explorers Pass, you get free entry to all the major scientific discovery attractions: the Aeroscopia museum, the Cit\u00e9 de I&#8217;espace, the Flight of the Pioneers, Le Mus\u00e9um and the Quai des Savoirs. <strong>And the Pass is valid for 5 days!<\/strong><\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading is-style-h4\">Adult Explorers Pass: \u20ac48<br>Child Explorers Pass: \u20ac35<\/h2>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<script>\n(() => {\n  \/\/ ================================\n  \/\/ Config (UUIDs autoris\u00e9s -> pass)\n  \/\/ ================================\n  const PASS_BY_UUID = {\n    'f6RamNo4lUrWVPsYxb7KtQug1ZLEkMnhDc0y': { key: 'toulouse',     className: 'is-pass-toulouse' },\n    'DUZ59sXro2y6W4QGHPienCu1Lzt0bNY7SOhc': { key: 'explorateurs', className: 'is-pass-explorateurs' },\n    'iWNjoaVk84cxyU5fYbS9g0RqmZhAX7pdJ263': { key: 'tourisme',     className: 'is-pass-tourisme' },\n  };\n\n  const CLASS_TO_KEY = {\n    'is-pass-toulouse': 'toulouse',\n    'is-pass-explorateurs': 'explorateurs',\n    'is-pass-tourisme': 'tourisme',\n  };\n\n  const GROUP_CLASS = 'g-group-field';\n  const LABEL_SELECTOR = '.g-group-field-label';\n  const DATEPICKER_SELECTOR = '.gdp-fix-datepicker.g-datepicker';\n  const BANNER_ATTR = 'data-pass-info';\n\n  \/\/ i18n (garde seulement l\u2019essentiel ici \u2014 ajoute d\u2019autres langues si besoin)\n  const I18N = {\n    fr: {\n      headerFrom:  [\/^Dates et heures$\/i],\n      headerTo:    'Dates',\n      titleFrom:   [\/^S\u00e9lectionnez vos dates et heures$\/i],\n      titleTo:     'S\u00e9lectionnez vos dates',\n      banners: {\n        toulouse:     \"\u2139\ufe0f Le pass est valable 1 an \u00e0 compter de sa premi\u00e8re utilisation. La date s\u00e9lectionn\u00e9e est purement indicative.\",\n        explorateurs: \"\u2139\ufe0f Le pass est valable 5 jours \u00e0 compter de sa premi\u00e8re utilisation. La date s\u00e9lectionn\u00e9e est purement indicative.\",\n        tourisme:     \"\u2139\ufe0f Le pass est valable 3 jours \u00e0 compter de sa premi\u00e8re utilisation. La date s\u00e9lectionn\u00e9e est purement indicative.\",\n      }\n    },\n    en: {\n      headerFrom:  [\/^Dates (and|&) times$\/i],\n      headerTo:    'Dates',\n      titleFrom:   [\/^Select your dates (and|&) times$\/i],\n      titleTo:     'Select your dates',\n      banners: {\n        toulouse:     \"\u2139\ufe0f The pass is valid for 1 year from its first use. The selected date is for information only.\",\n        explorateurs: \"\u2139\ufe0f The pass is valid for 5 days from its first use. The selected date is for information only.\",\n        tourisme:     \"\u2139\ufe0f The pass is valid for 3 days from its first use. The selected date is for information only.\",\n      }\n    }\n  };\n\n  \/\/ ================================\n  \/\/ Utils\n  \/\/ ================================\n  const normalize = (s) => (s || '').replace(\/\\s+\/g, ' ').trim();\n  const lang = (() => {\n    const meta = document.querySelector('meta[property=\"og:locale\"]');\n    const raw = (meta?.content || document.documentElement.lang || 'fr').toLowerCase();\n    const code = (raw.match(\/^[a-z]{2}\/) || ['fr'])[0];\n    return I18N[code] ? code : 'fr';\n  })();\n  const T = I18N[lang];\n\n  const getRoots = () => {\n    const roots = [document];\n    const w = document.querySelector('guidap-booking-widget');\n    if (w?.shadowRoot) roots.push(w.shadowRoot);\n    return roots;\n  };\n\n  const replaceAny = (el, patterns, to) => {\n    if (!el) return false;\n    const txt = normalize(el.textContent);\n    for (const re of patterns) {\n      if (re.test(txt)) { el.textContent = txt.replace(re, to); return true; }\n    }\n    return false;\n  };\n\n  \/\/ ================================\n  \/\/ Activation pilot\u00e9e par l\u2019URL\n  \/\/ ================================\n  const getPassFromLocation = () => {\n    const href = String(location.href || '');\n    for (const [uuid, info] of Object.entries(PASS_BY_UUID)) {\n      if (href.includes(uuid)) return { uuid, ...info }; \/\/ actif uniquement si l\u2019UUID est dans l\u2019URL\n    }\n    return null;\n  };\n\n  let activePass = null;           \/\/ { uuid, key, className } | null\n  let observers = [];              \/\/ observers actifs quand un pass est actif\n  let domObserverForShadow = null; \/\/ pour raccrocher au shadow plus tard\n\n  \/\/ ================================\n  \/\/ Actions (apply \/ cleanup)\n  \/\/ ================================\n  function tagPassGroups(passClass) {\n    let n = 0;\n    for (const root of getRoots()) {\n      root.querySelectorAll?.(DATEPICKER_SELECTOR)?.forEach((picker) => {\n        const group = picker.closest?.(`.${GROUP_CLASS}`);\n        if (group && !group.classList.contains(passClass)) {\n          group.classList.add(passClass);\n          n++;\n        }\n      });\n    }\n    return n;\n  }\n\n  function attachBanner(text) {\n    if (!text) return 0;\n    let changes = 0;\n    for (const root of getRoots()) {\n      root.querySelectorAll?.(\n        `.g-group-field.is-pass-toulouse,\n         .g-group-field.is-pass-explorateurs,\n         .g-group-field.is-pass-tourisme`\n      )?.forEach((group) => {\n        const preferred = group.querySelector?.('.date-field');\n        const fallback  = group.querySelector?.(DATEPICKER_SELECTOR);\n        const target    = preferred || fallback;\n\n        group.querySelectorAll?.(`[${BANNER_ATTR}]`)?.forEach((el) => {\n          if (el !== target) el.removeAttribute(BANNER_ATTR);\n        });\n\n        if (target && target.getAttribute(BANNER_ATTR) !== text) {\n          target.setAttribute(BANNER_ATTR, text);\n          changes++;\n        }\n      });\n    }\n    return changes;\n  }\n\n  function applyCopy(pass) {\n    let changes = 0;\n    for (const root of getRoots()) {\n      root.querySelectorAll?.('.g-stepper-horizontal-header-label')?.forEach((el) => {\n        changes += replaceAny(el, T.headerFrom, T.headerTo) ? 1 : 0;\n      });\n      root.querySelectorAll?.('.g-step-page-title')?.forEach((el) => {\n        changes += replaceAny(el, T.titleFrom, T.titleTo) ? 1 : 0;\n      });\n    }\n    const banner = T.banners[pass.key];\n    attachBanner(banner);\n    return changes;\n  }\n\n  function cleanupAll() {\n    \/\/ Retire classes et banni\u00e8res pos\u00e9es par le script si on quitte l\u2019URL \u00e9ligible\n    document.documentElement.classList.remove('is-pass-page', 'is-pass-toulouse', 'is-pass-explorateurs', 'is-pass-tourisme');\n\n    for (const root of getRoots()) {\n      root.querySelectorAll?.(`.${GROUP_CLASS}.is-pass-toulouse, .${GROUP_CLASS}.is-pass-explorateurs, .${GROUP_CLASS}.is-pass-tourisme`)\n        ?.forEach((g) => g.classList.remove('is-pass-toulouse','is-pass-explorateurs','is-pass-tourisme'));\n      root.querySelectorAll?.(`[${BANNER_ATTR}]`)?.forEach((el) => el.removeAttribute(BANNER_ATTR));\n    }\n  }\n\n  \/\/ ================================\n  \/\/ Run + Observers (activ\u00e9s seulement si URL ok)\n  \/\/ ================================\n  const runAll = () => {\n    if (!activePass) return;\n    document.documentElement.classList.add('is-pass-page', activePass.className);\n    tagPassGroups(activePass.className);\n    applyCopy(activePass);\n  };\n\n  const scheduleFactory = () => {\n    let scheduled = false;\n    return () => {\n      if (scheduled) return;\n      scheduled = true;\n      requestAnimationFrame(() => { scheduled = false; runAll(); });\n    };\n  };\n\n  function observeWhenActive() {\n    const schedule = scheduleFactory();\n\n    \/\/ 1) Observe document\n    const obsDoc = new MutationObserver((muts) => {\n      for (const m of muts) {\n        if ((m.addedNodes && m.addedNodes.length) || m.type === 'characterData') { schedule(); break; }\n      }\n    });\n    obsDoc.observe(document.documentElement, { childList: true, subtree: true, characterData: true });\n    observers.push(obsDoc);\n\n    \/\/ 2) Observe shadowRoot si pr\u00e9sent maintenant\u2026\n    const hookShadow = () => {\n      const w = document.querySelector('guidap-booking-widget');\n      if (w?.shadowRoot) {\n        const obsShadow = new MutationObserver((muts) => {\n          for (const m of muts) {\n            if ((m.addedNodes && m.addedNodes.length) || m.type === 'characterData') { schedule(); break; }\n          }\n        });\n        obsShadow.observe(w.shadowRoot, { childList: true, subtree: true, characterData: true });\n        observers.push(obsShadow);\n      }\n    };\n    hookShadow();\n\n    \/\/ \u2026et plus tard si le widget arrive apr\u00e8s\n    domObserverForShadow = new MutationObserver(hookShadow);\n    domObserverForShadow.observe(document.documentElement, { childList: true, subtree: true });\n  }\n\n  function stopObservers() {\n    observers.forEach(o => o.disconnect());\n    observers = [];\n    domObserverForShadow?.disconnect();\n    domObserverForShadow = null;\n  }\n\n  \/\/ ================================\n  \/\/ Router hooks (d\u00e9tecte changement d\u2019URL)\n  \/\/ ================================\n  let lastHref = location.href;\n\n  function reevaluateActivation() {\n    const pass = getPassFromLocation();\n    const changed = (pass?.uuid !== activePass?.uuid);\n\n    if (!changed) return; \/\/ rien \u00e0 faire\n\n    \/\/ On change d\u2019\u00e9tat (activation\/d\u00e9sactivation\/\u00e9change de pass)\n    stopObservers();\n    cleanupAll();\n    activePass = pass;\n\n    if (activePass) {\n      \/\/ activer\n      observeWhenActive();\n      runAll();\n      console.log('[pass] actif pour UUID:', activePass.uuid, activePass.key);\n    } else {\n      console.log('[pass] inactif (aucun UUID \u00e9ligible dans l\u2019URL).');\n    }\n  }\n\n  \/\/ Hook pushState \/ replaceState\n  ['pushState','replaceState'].forEach((m) => {\n    const orig = history[m];\n    history[m] = function(...args) {\n      const ret = orig.apply(this, args);\n      if (location.href !== lastHref) {\n        lastHref = location.href;\n        reevaluateActivation();\n      }\n      return ret;\n    };\n  });\n  \/\/ popstate & hashchange\n  window.addEventListener('popstate', () => { if (location.href !== lastHref) { lastHref = location.href; reevaluateActivation(); } });\n  window.addEventListener('hashchange', () => { if (location.href !== lastHref) { lastHref = location.href; reevaluateActivation(); } });\n\n  \/\/ ================================\n  \/\/ Boot\n  \/\/ ================================\n  const boot = () => reevaluateActivation();\n\n  if (document.readyState === 'loading') {\n    document.addEventListener('DOMContentLoaded', boot, { once: true });\n  } else {\n    boot();\n  }\n\n  \/\/ Debug helper\n  window.__PassWatcher__ = {\n    get active() { return activePass; },\n    recheck: reevaluateActivation,\n    cleanup: cleanupAll\n  };\n})();\n<\/script>\n<guidap-booking-widget activity-uuid=\"DUZ59sXro2y6W4QGHPienCu1Lzt0bNY7SOhc\">Buy online<\/guidap-booking-widget>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69d40cb3553ce&quot;}\" data-wp-interactive=\"core\/image\" class=\"wp-block-image size-full wp-lightbox-container\"><img decoding=\"async\" width=\"867\" height=\"1300\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/02\/visiter-toulouse-cite-espace.jpg\" alt=\"Visiter Toulouse, la Cit\u00e9 de l'espace\" class=\"wp-image-15063\" style=\"aspect-ratio:1;object-fit:cover\" srcset=\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/02\/visiter-toulouse-cite-espace.jpg 867w, https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/02\/visiter-toulouse-cite-espace-600x900.jpg 600w, https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/02\/visiter-toulouse-cite-espace-400x600.jpg 400w, https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/02\/visiter-toulouse-cite-espace-768x1152.jpg 768w\" sizes=\"(max-width: 867px) 100vw, 867px\" \/><button\n\t\t\tclass=\"lightbox-trigger\"\n\t\t\ttype=\"button\"\n\t\t\taria-haspopup=\"dialog\"\n\t\t\taria-label=\"Enlarge\"\n\t\t\tdata-wp-init=\"callbacks.initTriggerButton\"\n\t\t\tdata-wp-on-async--click=\"actions.showLightbox\"\n\t\t\tdata-wp-style--right=\"state.imageButtonRight\"\n\t\t\tdata-wp-style--top=\"state.imageButtonTop\"\n\t\t>\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" \/>\n\t\t\t<\/svg>\n\t\t<\/button><figcaption class=\"wp-element-caption\">La Cit\u00e9 de l&#8217;espace \u00a9 R\u00e9mi Deligeon<\/figcaption><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69d40cb355c12&quot;}\" data-wp-interactive=\"core\/image\" class=\"wp-block-image size-full wp-lightbox-container\"><img decoding=\"async\" width=\"1123\" height=\"1350\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2023\/11\/visiter-toulouse-aeroscopia-portrait.jpg\" alt=\"Toulouse, capitale a\u00e9ronautique\" class=\"wp-image-5441\" style=\"aspect-ratio:1;object-fit:cover\" srcset=\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2023\/11\/visiter-toulouse-aeroscopia-portrait.jpg 1123w, https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2023\/11\/visiter-toulouse-aeroscopia-portrait-600x721.jpg 600w, https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2023\/11\/visiter-toulouse-aeroscopia-portrait-400x481.jpg 400w, https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2023\/11\/visiter-toulouse-aeroscopia-portrait-768x923.jpg 768w\" sizes=\"(max-width: 1123px) 100vw, 1123px\" \/><button\n\t\t\tclass=\"lightbox-trigger\"\n\t\t\ttype=\"button\"\n\t\t\taria-haspopup=\"dialog\"\n\t\t\taria-label=\"Enlarge\"\n\t\t\tdata-wp-init=\"callbacks.initTriggerButton\"\n\t\t\tdata-wp-on-async--click=\"actions.showLightbox\"\n\t\t\tdata-wp-style--right=\"state.imageButtonRight\"\n\t\t\tdata-wp-style--top=\"state.imageButtonTop\"\n\t\t>\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" \/>\n\t\t\t<\/svg>\n\t\t<\/button><figcaption class=\"wp-element-caption\">Mus\u00e9e Aeroscopia \u00a9 Arnaud Sp\u00e4ni<\/figcaption><\/figure>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<section class=\"wp-block-group pattern-tourism-pass-discounts has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading is-style-h3 slashed-heading\">ADVANTAGES with the Explorers Pass*<\/h2>\n\n\n\n<figure class=\"wp-block-table is-style-regular\"><table><thead><tr><th class=\"has-text-align-left\" data-align=\"left\"><strong>ACTIVITY<\/strong><\/th><th class=\"has-text-align-center\" data-align=\"center\"><strong>NORMAL RATE<\/strong><\/th><th class=\"has-text-align-center\" data-align=\"center\"><strong>WITH THE PASS<\/strong> EXPLORATEURS<\/th><\/tr><\/thead><tbody><tr><td class=\"has-text-align-left\" data-align=\"left\">AEROSCOPIA<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><strong><strong><strong><strong><strong>\u20ac<\/strong><\/strong><\/strong>15<\/strong><\/strong><\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><strong>Free<\/strong><\/strong><\/td><\/tr><tr><td class=\"has-text-align-left\" data-align=\"left\">CIT\u00c9 DE L&#8217;ESPACE<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><strong><strong>\u20ac29<\/strong><\/strong><\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><strong><strong>Free<\/strong><\/strong><\/strong><\/td><\/tr><tr><td class=\"has-text-align-left\" data-align=\"left\">ENVOL DES PIONNIERS<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><strong><strong>\u20ac<strong>9<\/strong><\/strong><\/strong><\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><strong><strong>Free<\/strong><\/strong><\/strong><\/td><\/tr><tr><td class=\"has-text-align-left\" data-align=\"left\">MUS\u00c9UM<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><strong><strong>\u20ac<\/strong>12<\/strong><\/strong><\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><strong><strong><strong>Free<\/strong><\/strong><\/strong><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>*Prices for guidance only, depending on period<\/p>\n<\/section>\n<\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Aeroscopia<\/h3>\n\n\n\n<p>If you dream of climbing into the cockpit of the legendary Concorde, a Super Guppy or a real A380, go to Aeroscopia Museum, where an exceptional adventure awaits you! Boarding is imminent at this museum, which has an incredible collection of aircraft.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.toulouse-tourisme.com\/en\/activite\/aeroscopia-aeronautical-museum\/\">Find out more<\/a><\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Cit\u00e9 de l\u2019espace<\/h3>\n\n\n\n<p>Contemplating the Ariane 5 rocket, admiring the treasures of outer Space, discovering the secrets of the Universe, dreaming with your head in the stars\u2026 You can do all this and more at the Cit\u00e9 de l&#8217;espace. For young and old alike, the Cit\u00e9 de l&#8217;espace offers you a journey into the world of Space.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.toulouse-tourisme.com\/en\/activite\/cite-de-lespace\/\">Find out more<\/a><\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Envol des Pionniers<\/h3>\n\n\n\n<p>Discover the &#8220;Flight of the Pioneers&#8221; and plunge into the greatest adventure in the history of aeronautics and Toulouse: A\u00e9ropostale. At a time when no aircraft was capable of doing so, a group of men set themselves the challenge of crossing a desert, an ocean and the second highest mountain range in the world<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.toulouse-tourisme.com\/en\/activite\/lenvol-des-pionniers\/\">Find out more<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">Mus\u00e9um<\/h3>\n\n\n\n<p>Have we gone back in time? It is worth asking yourself that question when you come face-to-face with a flying dinosaur! Across 3,000m\u00b2 of floor space, Le Mus\u00e9um displays its extraordinary collection of more than two million pieces in these modern and interactive spaces, featuring science laboratories and a botanical garden.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.toulouse-tourisme.com\/en\/activite\/toulouse-museum\/\">Find out more<\/a><\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\"><\/h3>\n\n\n\n<p><\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69d40cb3575ab&quot;}\" data-wp-interactive=\"core\/image\" class=\"wp-block-image size-full wp-lightbox-container\"><img decoding=\"async\" width=\"400\" height=\"400\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on-async--click=\"actions.showLightbox\" data-wp-on-async--load=\"callbacks.setButtonStyles\" data-wp-on-async-window--resize=\"callbacks.setButtonStyles\" src=\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/05\/pass-explorateurs-400.gif\" alt=\"Pass Explorateurs\" class=\"wp-image-56001\"\/><button\n\t\t\tclass=\"lightbox-trigger\"\n\t\t\ttype=\"button\"\n\t\t\taria-haspopup=\"dialog\"\n\t\t\taria-label=\"Enlarge\"\n\t\t\tdata-wp-init=\"callbacks.initTriggerButton\"\n\t\t\tdata-wp-on-async--click=\"actions.showLightbox\"\n\t\t\tdata-wp-style--right=\"state.imageButtonRight\"\n\t\t\tdata-wp-style--top=\"state.imageButtonTop\"\n\t\t>\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n\t\t\t\t<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" \/>\n\t\t\t<\/svg>\n\t\t<\/button><\/figure>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"\u00c0 Toulouse, on aime le Futur\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/b2KbMMxZ4WE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"is-style-h3-surtitle\">Get ready for an adventure!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">In Toulouse we love the future<\/h2>\n\n\n\n<p>Science buffs and fans of the wonders of the Universe: Toulouse is the place for adventure! It&#8217;s a city of exploration and discovery, a cradle of great achievements and exploits. To all those who are curious about nature, science and extraordinary human adventures: explore Toulouse according to your passions and share them with your family. In Toulouse, we love the future, and there are plenty of sites, museums and exhibitions where you can enhance your scientific and human culture.<\/p>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-9bb21028 wp-block-group-is-layout-constrained\" style=\"padding-right:var(--wp--preset--spacing--large);padding-left:var(--wp--preset--spacing--large)\">\n<section class=\"wp-block-group alignfull pattern-accordion has-global-padding is-layout-constrained wp-container-core-group-is-layout-caa6f773 wp-block-group-is-layout-constrained\" style=\"padding-right:var(--wp--preset--spacing--medium);padding-left:var(--wp--preset--spacing--medium)\">\n<p class=\"is-style-h3-surtitle\">FAQ<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Any questions?<\/h2>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>Who is the Pass Explorateurs for?<\/summary>\n<p>The Pass Explorateurs is aimed at all science, aeronautics and space enthusiasts, whether they are residents or visitors to Toulouse.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>What services does the Pass Explorateurs include?<\/summary>\n<p>Valid for 5 days, the Pass Explorateurs entitles you to free admission to 5 partner sites: the A\u00e9roscopia museum, the Cit\u00e9 de l&#8217;espace, the Envol des Pionniers, the Natural History Museum and the Quai des Savoirs.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>What is the minimum age for children with the Pass Explorateurs?<\/summary>\n<p>Children are considered to be those aged between 6 and 18 (5 for the Cit\u00e9 de l&#8217;espace). You may be asked to provide proof of age. It is not necessary to purchase a Pass Explorateurs for children under 6, who are admitted free of charge to the 5 partner sites, except for the Cit\u00e9 de l&#8217;espace, where the minimum age is 5.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>Is the Pass Explorateurs worthwhile for students, pensioners and minors?<\/summary>\n<p>Although these groups often benefit from reduced rates at certain sites, using the pass allows them to save even more. If you combine the individual reduced rates for each site, the total cost exceeds the price of the Pass Explorateurs.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>Can I do the same activity several times with the Pass Explorateurs?<\/summary>\n<p>No, each site included in the pass can only be visited once.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>Can I access temporary exhibitions with the Pass Explorateurs?<\/summary>\n<p>Yes, temporary exhibitions at the sites are included in the pass and are therefore accessible free of charge.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>Does my Pass also allow me to skip the queues?<\/summary>\n<p>The Pass Explorateurs allows you to skip the queues at the Natural History Museum and the Quai des Savoirs.<\/p>\n<\/details>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary>When can I start using my Pass Explorateurs? How long is it valid for?<\/summary>\n<p>The Pass Explorateurs is valid from your first visit to one of the five participating sites, activating a five-day period. You can check the remaining duration via the \u2018Pass Tourisme Toulouse\u2019 app, under the \u2018My Pass\u2019 tab. You have one year from the date of purchase to activate your Pass.<\/p>\n<\/details>\n<\/section>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>What a super idea! With the Explorers Pass, you get free entry to all the major scientific discovery attractions: the Aeroscopia museum, the Cit\u00e9 de I&#8217;espace, the Flight of the Pioneers, Le Mus\u00e9um and the Quai des Savoirs. And the Pass is valid for 5 days! Adult Explorers Pass: \u20ac48Child Explorers Pass: \u20ac35 Buy online [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":55994,"parent":10629,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"templates\/magazine.php","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-59163","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The Pass Explorateurs - Toulouse Tourisme<\/title>\n<meta name=\"description\" content=\"With the Explorers Pass, you get free entry to all the major scientific discovery sites. And the Pass is valid for 5 days!\" \/>\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.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The Pass Explorateurs - Toulouse Tourisme\" \/>\n<meta property=\"og:description\" content=\"With the Explorers Pass, you get free entry to all the major scientific discovery sites. And the Pass is valid for 5 days!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/\" \/>\n<meta property=\"og:site_name\" content=\"Toulouse Tourisme\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Toulouse.tourisme\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-11T14:38:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/05\/cover-film.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1049\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/\",\"url\":\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/\",\"name\":\"The Pass Explorateurs - Toulouse Tourisme\",\"isPartOf\":{\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/05\/cover-film.jpg\",\"datePublished\":\"2024-06-06T11:40:21+00:00\",\"dateModified\":\"2026-03-11T14:38:13+00:00\",\"description\":\"With the Explorers Pass, you get free entry to all the major scientific discovery sites. And the Pass is valid for 5 days!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#primaryimage\",\"url\":\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/05\/cover-film.jpg\",\"contentUrl\":\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/05\/cover-film.jpg\",\"width\":1920,\"height\":1049,\"caption\":\"\u00c0 Toulouse on aime le Futur !\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.toulouse-tourisme.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What to see, what to do\",\"item\":\"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The Pass Explorateurs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/#website\",\"url\":\"https:\/\/www.toulouse-tourisme.com\/en\/\",\"name\":\"Toulouse Tourisme\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.toulouse-tourisme.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/#organization\",\"name\":\"Toulouse Tourisme\",\"url\":\"https:\/\/www.toulouse-tourisme.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2023\/10\/toulouse.svg\",\"contentUrl\":\"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2023\/10\/toulouse.svg\",\"width\":220,\"height\":61,\"caption\":\"Toulouse Tourisme\"},\"image\":{\"@id\":\"https:\/\/www.toulouse-tourisme.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Toulouse.tourisme\/\",\"https:\/\/www.instagram.com\/visiteztoulouse\/\",\"https:\/\/www.youtube.com\/@VisitezToulouse\",\"https:\/\/fr.pinterest.com\/visiteztoulouse\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The Pass Explorateurs - Toulouse Tourisme","description":"With the Explorers Pass, you get free entry to all the major scientific discovery sites. And the Pass is valid for 5 days!","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.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/","og_locale":"en_US","og_type":"article","og_title":"The Pass Explorateurs - Toulouse Tourisme","og_description":"With the Explorers Pass, you get free entry to all the major scientific discovery sites. And the Pass is valid for 5 days!","og_url":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/","og_site_name":"Toulouse Tourisme","article_publisher":"https:\/\/www.facebook.com\/Toulouse.tourisme\/","article_modified_time":"2026-03-11T14:38:13+00:00","og_image":[{"width":1920,"height":1049,"url":"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/05\/cover-film.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/","url":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/","name":"The Pass Explorateurs - Toulouse Tourisme","isPartOf":{"@id":"https:\/\/www.toulouse-tourisme.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#primaryimage"},"image":{"@id":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/05\/cover-film.jpg","datePublished":"2024-06-06T11:40:21+00:00","dateModified":"2026-03-11T14:38:13+00:00","description":"With the Explorers Pass, you get free entry to all the major scientific discovery sites. And the Pass is valid for 5 days!","breadcrumb":{"@id":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#primaryimage","url":"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/05\/cover-film.jpg","contentUrl":"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2024\/05\/cover-film.jpg","width":1920,"height":1049,"caption":"\u00c0 Toulouse on aime le Futur !"},{"@type":"BreadcrumbList","@id":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/pass-explorateurs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.toulouse-tourisme.com\/en\/"},{"@type":"ListItem","position":2,"name":"What to see, what to do","item":"https:\/\/www.toulouse-tourisme.com\/en\/what-to-see-and-do\/"},{"@type":"ListItem","position":3,"name":"The Pass Explorateurs"}]},{"@type":"WebSite","@id":"https:\/\/www.toulouse-tourisme.com\/en\/#website","url":"https:\/\/www.toulouse-tourisme.com\/en\/","name":"Toulouse Tourisme","description":"","publisher":{"@id":"https:\/\/www.toulouse-tourisme.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.toulouse-tourisme.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.toulouse-tourisme.com\/en\/#organization","name":"Toulouse Tourisme","url":"https:\/\/www.toulouse-tourisme.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.toulouse-tourisme.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2023\/10\/toulouse.svg","contentUrl":"https:\/\/www.toulouse-tourisme.com\/assets\/uploads\/sites\/3\/2023\/10\/toulouse.svg","width":220,"height":61,"caption":"Toulouse Tourisme"},"image":{"@id":"https:\/\/www.toulouse-tourisme.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Toulouse.tourisme\/","https:\/\/www.instagram.com\/visiteztoulouse\/","https:\/\/www.youtube.com\/@VisitezToulouse","https:\/\/fr.pinterest.com\/visiteztoulouse\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.toulouse-tourisme.com\/en\/wp-json\/wp\/v2\/pages\/59163","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.toulouse-tourisme.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.toulouse-tourisme.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.toulouse-tourisme.com\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.toulouse-tourisme.com\/en\/wp-json\/wp\/v2\/comments?post=59163"}],"version-history":[{"count":0,"href":"https:\/\/www.toulouse-tourisme.com\/en\/wp-json\/wp\/v2\/pages\/59163\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.toulouse-tourisme.com\/en\/wp-json\/wp\/v2\/pages\/10629"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.toulouse-tourisme.com\/en\/wp-json\/wp\/v2\/media\/55994"}],"wp:attachment":[{"href":"https:\/\/www.toulouse-tourisme.com\/en\/wp-json\/wp\/v2\/media?parent=59163"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}