Loading...
Loading...
{
"latency": 376,
"ipAddresses": [
"99.83.190.102",
"75.2.70.75"
],
"dns": {
"NS": [
"ns15.ovh.net.",
"dns15.ovh.net."
],
"A": [
"99.83.190.102",
"75.2.70.75"
],
"TXT": [
"google-site-verification=TdS1gZHfjgagHa7JmIXMpz4Rqyylt-trUDaj6pfkkZE",
"brevo-code:da5485818d65a025e410094a9ed3f0a3",
"1|www.ludo.tech",
"google-site-verification=_OyBzqD26sfbZNvGu-l8LXZDx5EBwo4wOQXW-A7Wwzs",
"v=spf1 include:mx.ovh.com ~all"
]
}
}
[
{
"url": "https://ludo.tech",
"errors": [
"Website took too long to respond: https://ludo.tech (26s)"
]
}
]
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue Dec 17 2024 19:11:57 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="%%PUBLISH_URL_REPLACEMENT%%" data-wf-page="6696757d931b71218689cfe7" data-wf-site="667c167893718790b5ccc8bf" data-wf-status="1" lang="en"><head><meta charset="utf-8"/><title>Not Found</title><meta content="Not Found" property="og:title"/><meta content="Not Found" property="twitter:title"/><meta content="width=device-width, initial-scale=1" name="viewport"/><meta content="Webflow" name="generator"/><meta content="noindex" name="robots"/><link href="https://cdn.prod.website-files.com/667c167893718790b5ccc8bf/css/ludotech-france.webflow.34961dfab.css" rel="stylesheet" type="text/css"/><link href="https://fonts.googleapis.com" rel="preconnect"/><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous"/><script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script><script type="text/javascript">WebFont.load({ google: { families: ["Montserrat:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic","Bitter:400,700,400italic","Exo:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic","Lato:100,100italic,300,300italic,400,400italic,700,700italic,900,900italic"] }});</script><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/667c167893718790b5ccc8bf/670f7c84695a85d3e2cd893f_favicon_32x32.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/667c167893718790b5ccc8bf/670f7c8b21d3ec7bcbf19044_favicon_256x256.png" rel="apple-touch-icon"/><script src="https://www.google.com/recaptcha/api.js" type="text/javascript"></script><!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KFXC355');</script>
<!-- End Google Tag Manager -->
<!-- language and geolocation code -->
<script async src="https://get.geojs.io/v1/ip/geo.js"></script>
<script type="application/javascript">
// Fonction pour filtrer le contenu par langue en fonction de la langue du navigateur
function filter_by_language() {
const userLang = navigator.language || navigator.userLanguage;
const contentfr = document.querySelectorAll(".contentfr");
const contenten = document.querySelectorAll(".contenten");
// Masquer tout d'abord tout le contenu
contentfr.forEach(el => el.style.display = "none");
contenten.forEach(el => el.style.display = "none");
// Afficher le contenu en fonction de la langue du navigateur
if (userLang.startsWith("fr")) {
contentfr.forEach(el => el.style.display = "block");
} else {
contenten.forEach(el => el.style.display = "block");
}
}
// Fonction pour filtrer les produits en fonction du pays
function filter_by_country(json) {
const userCountryCode = json.country_code; // Récupérer le code du pays de l'utilisateur
const productItems = document.querySelectorAll(".product-item");
const noItemsMessage = document.getElementById("noItemsMessage");
// Liste des codes pays européens
const europeanCountries = ["AL", "AD", "AM", "AT", "BY", "BE", "BA", "BG", "HR", "CY", "CZ",
"DK", "EE", "FI", "FR", "GE", "DE", "GR", "HU", "IS", "IE", "IT",
"XK", "LV", "LI", "LT", "LU", "MT", "MD", "MC", "ME", "NL", "MK",
"NO", "PL", "PT", "RO", "RU", "SM", "RS", "SK", "SI", "ES", "SE",
"CH", "TR", "UA", "GB", "VA"];
let itemsVisible = false;
productItems.forEach(item => {
const countryField = item.querySelector(".country-name"); // Sélectionner le champ du pays pour chaque produit
const itemCountryCode = countryField ? countryField.textContent.trim() : "";
// Afficher uniquement les produits avec le pays FR pour les utilisateurs en France
if (userCountryCode === "FR") {
if (itemCountryCode === "FR") {
item.style.display = "block";
itemsVisible = true;
} else {
item.style.display = "none"; // Masquer les produits qui ne sont pas FR
}
}
// Afficher les produits correspondant au pays de l'utilisateur
else if (itemCountryCode === userCountryCode) {
item.style.display = "block";
itemsVisible = true;
}
// Afficher les produits vides pour les Européens (autres que la France)
else if (europeanCountries.includes(userCountryCode) && itemCountryCode === "") {
item.style.display = "block"; // Afficher les produits vides pour les Européens
itemsVisible = true;
}
// Afficher les produits US si l'utilisateur est hors Europe
else if (!europeanCountries.includes(userCountryCode) && itemCountryCode === "US") {
item.style.display = "block"; // Afficher les produits US
itemsVisible = true;
} else {
item.style.display = "none"; // Masquer les autres produits
}
});
// Si aucun produit n'est visible, afficher un message
if (!itemsVisible && noItemsMessage) {
noItemsMessage.style.display = "block";
} else if (noItemsMessage) {
noItemsMessage.style.display = "none";
}
}
// Charger les informations de géolocalisation et filtrer les produits
window.onload = function() {
fetch("https://get.geojs.io/v1/ip/geo.json")
.then(response => response.json())
.then(filter_by_country)
.catch(error => console.error("Erreur lors de la récupération des données de géolocalisation :", error));
};
// Appeler la fonction de filtrage par langue
document.addEventListener("DOMContentLoaded", filter_by_language);
// Fonction pour convertir les prix en dollars si l'utilisateur est aux USA
function convert_prices(json) {
const countryCode = json.country_code;
const exchangeRate = 1.1; // Exemple de taux de conversion EUR -> USD
const priceElements = document.querySelectorAll('.price-euro');
// Si l'utilisateur est aux États-Unis, convertir les prix en dollars
if (countryCode === 'US') {
priceElements.forEach(priceElement => {
let priceText = priceElement.textContent;
let priceInEuros = parseFloat(priceText.replace('€', '').trim());
if (!isNaN(priceInEuros)) {
let priceInDollars = (priceInEuros * exchangeRate).toFixed(2);
priceElement.textContent = `$${priceInDollars}`;
}
});
}
}
// Observer les changements dans le panier ou le checkout (éléments dynamiques)
function observe_price_changes(json) {
const countryCode = json.country_code;
const exchangeRate = 1.1; // Exemple de taux de conversion EUR -> USD
function convertPricesInCart() {
const priceElements = document.querySelectorAll('.price-euro');
// Si l'utilisateur est aux États-Unis, convertir les prix en dollars
if (countryCode === 'US') {
priceElements.forEach(priceElement => {
let priceText = priceElement.textContent;
let priceInEuros = parseFloat(priceText.replace('€', '').trim());
if (!isNaN(priceInEuros)) {
let priceInDollars = (priceInEuros * exchangeRate).toFixed(2);
priceElement.textContent = `$${priceInDollars}`;
}
});
}
}
// Observer les changements dans le DOM pour détecter l'ajout de nouveaux éléments
const targetNode = document.body;
const config = { childList: true, subtree: true };
const observer = new MutationObserver(function(mutationsList) {
for (const mutation of mutationsList) {
if (mutation.type === 'childList') {
convertPricesInCart(); // Reconvertir les prix en cas d'ajout d'éléments
}
}
});
// Commencer à observer le DOM pour les changements
observer.observe(targetNode, config);
}
// Fonction principale pour gérer toutes les données GeoIP
function handleGeoData(json) {
console.log("GeoIP data received:", json);
// Appeler les fonctions de filtrage et de conversion
filter_by_language(json); // Gérer l'affichage du contenu par langue
filter_by_continent(json); // Gérer l'affichage des produits par continent
convert_prices(json); // Gérer la conversion des prix en USD si l'utilisateur est aux États-Unis
// Observer les changements dynamiques du DOM dans le panier/checkout
observe_price_changes(json);
}
// Assigner la fonction handleGeoData à l'appel GeoIP
window.geoip = handleGeoData;
</script>
<!-- bannière cookie -->
<script type="text/javascript">
var _iub = _iub || [];
_iub.csConfiguration = {"siteId":3765081,"cookiePolicyId":72079919,"lang":"fr"};
</script>
<script type="text/javascript" src="https://cs.iubenda.com/autoblocking/3765081.js"></script>
<script type="text/javascript" src="//cdn.iubenda.com/cs/gpp/stub.js"></script>
<script type="text/javascript" src="//cdn.iubenda.com/cs/iubenda_cs.js" charset="UTF-8" async></script>
<!-- End bannière cookie --><script type="text/javascript">window.__WEBFLOW_CURRENCY_SETTINGS = {"currencyCode":"EUR","symbol":"€","decimal":",","fractionDigits":2,"group":" ","template":" {{wf {"path":"amount","type":"CommercePrice"\\} }} {{wf {"path":"symbol","type":"PlainText"\\} }}","hideDecimalForWholeNumbers":false};</script></head><body><div class="code-gtm w-embed w-iframe"><!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MM4FHSLJ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --></div><div class="utility-page-wrap"><div class="utility-page-content"><img src="https://cdn.prod.website-files.com/static/page-not-found.211a85e40c.svg" alt=""/><h2>Page Not Found</h2><div>The page you are looking for doesn't exist or has been moved</div></div></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=667c167893718790b5ccc8bf" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/667c167893718790b5ccc8bf/js/webflow.a687e7842c9e1470ad4e22a7d4298b7b.js" type="text/javascript"></script></body></html>
{
"Hotjar": "A heatmap, survey, feedback and funnel application.",
"Brevo": "Brevo (formerly Sendinblue) offers Email Marketing Software, Automation, and CRM to help businesses grow with features like SMS and chat services.",
"Google Analytics": "Google Analytics offers a host of compelling features and benefits for everyone from senior executives and advertising and marketing professionals to site owners and content developers.",
"Google Analytics 4": "Google Analytics 4 formerly known as App + Web is a new version of Google Analytics that was released in October 2020.",
"Facebook Signal": "Journalists use Signal to surface relevant trends, photos, videos and posts from Facebook and Instagram for use in their storytelling and reporting.",
"Facebook Pixel": "Facebook Pixel is Facebooks conversion tracking system for ads on Facebook to websites.",
"Global Site Tag": "Google's primary tag for Google Measurement/Conversion Tracking, Adwords and DoubleClick.",
"Facebook Conversion Tracking": "Conversion tracking functionality from Facebook, allows a user to track advertisement clicks.",
"Google Conversion Linker": "Detects the ad click information in your conversion page URLs and stores this information to associate an ad click with a conversion.",
"Fastly": "Real-time Analytics and CDN platform. Analyze your web and server traffic patterns in real-time.",
"Complianz": "Privacy Suite for WordPress.",
"Brevo Live Chat": "Live chat widget system.",
"MailOptin": "MailOptin enables you to create opt-in forms with a number of email automations to keep email subscribers engaged.",
"iubenda": "iubenda allows you to generate a Privacy Policy in three steps.",
"Cloudflare Bot Manager": "Stop bad bots by using threat intelligence.",
"Google Font API": "The Google Font API helps you add web fonts to any web page.",
"Wordpress Plugins": "Plugins are tools to extend the functionality of WordPress. The website uses various plugins from WordPress to provide additional functionality. Some of them may be listed here.",
"Elementor": "Page builder for WordPress",
"Elementor Pro": "Pro version of the Elementor page builder.",
"Font Awesome": "Iconic font and CSS toolkit.",
"reCAPTCHA": "Anti-bot CAPTCHA widget from Google.",
"Google Tag Manager": "Tag management that lets you add and update website tags without changes to underlying website code.",
"Twemoji": "Twitter Emoji for Everyone",
"Sitelinks Search Box": "With Google sitelinks search box, people can reach your content more quickly from search results.",
"Yoast Plugins": "SEO based plugins from Yoast.",
"Yoast WordPress SEO Plugin": "Functionality that helps you optimize your pages content, images titles, meta descriptions and more.",
"Premium Addons for Elementor": "Addons for Wordpress Elementor.",
"US Privacy User Signal Mechanism": "The US Privacy API (USP API) is a lightweight API used to communicate signals represented in the US Privacy String.",
"CrUX Dataset": "CrUX is a data collection system that gathers information about how real users interact with websites. This website is included in the user experiences data gathered from Google Chrome and thus considered sufficiently popular on the Internet.",
"CrUX Top 50m": "Relative measure of site popularity within the CrUX dataset, measured by the total number of navigations on the origin. This site is in the top 50 million.",
"CrUX Top 10m": "Relative measure of site popularity within the CrUX dataset, measured by the total number of navigations on the origin. This site is in the top 10 million.",
"CrUX Top 5m": "Relative measure of site popularity within the CrUX dataset, measured by the total number of navigations on the origin. This site is in the top 5 million.",
"Polylang Connect for Elementor": "Show correct Templates, plus Elementor language switcher widget.",
"Essential Addons for Elementor": "Enhance your Elementor page building experience with 57+ creative elements",
"PhotoSwipe": "A responsive JavaScript image gallery.",
"GTM4WP": "Google Tag Manager for WordPress Plugin",
"DuracellTomi Google Tag Manager for WordPress": "This plugin places the GTM container code snippets onto your wordpress website so that you do not need to add this manually.",
"MailOptin for Wordpress": "Create popups, optin forms to get email newsletter subscribers for Wordpress.",
"SendinBlue Subscribe Form And WP SMTP": "Send emails from WordPress blog using your preferred SMTP server.",
"Stripe Payment Plugin for WooCommerce": "Accept Credit Cards, Debit Cards, Google Pay, Apple Pay, Alipay, SEPA, Klarna, WeChatPay, and Afterpay/Clearpay in your WooCommerce store via Stripe.",
"WooCommerce Stripe Payment Gateway": "Take credit card payments on your store using Stripe.",
"Smart Coupons for WooCommerce": "Add advanced options to WooCommerce coupons for better coupon management.",
"hCaptcha": "Bot prevention CAPTCHA system.",
"GeoJS": "IP location lookup tool.",
"Consent Manager AutoBlocking": "Autoblocking of certain 3rd party content.",
"English HREF LANG": "This webpage has alternate versions available in English via the use of the hreflang tag.",
"French HREF LANG": "This webpage has alternate versions available in French via the use of the hreflang tag.",
"French - Inferred": "Based on the title and description text the website content is potentially French.",
"Webflow Ecommerce": "Webflow Ecommerce is an ecommerce website builder that offers complete freedom with no-code platform to design, sell, and scale websites. It enables users to start building the future of ecommerce.",
"WooCommerce": "Transforms your WordPress website into an online store.",
"WooCommerce Multi-Currency": "WooCommerce extension that provides switching currencies.",
"WooCommerce Add To Cart": "A WooCommerce store with an 'add to cart' button means it's more likely to be an actual eCommerce store.",
"Apollo GraphQL": "App development framework.",
"PHP": "PHP is a widely used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.",
"PHP 7": "Version 7 of the PHP framework.",
"Organization Schema": "Organization i.e. school, NGO, Corporation.",
"Hello Elementor": "WordPress theme built for the Elementor website builder platform.",
"Apple Mobile Web Clips Icon": "This page contains an icon for iPhone, iPad and iTouch devices.",
"Viewport Meta": "This page uses the viewport meta tag which means the content may be optimized for mobile content.",
"IPhone / Mobile Compatible": "The website contains code that allows the page to support IPhone / Mobile Content.",
"AJAX Libraries API": "The AJAX Libraries API is a content distribution network and loading architecture for the most popular, open source JavaScript libraries.",
"GStatic Google Static Content": "Google has off-loaded static content (Javascript/Images/CSS) to a different domain name in an effort to reduce bandwidth usage and increase network performance for the end user.",
"CloudFront": "Amazon CloudFront is a web service for content delivery. It integrates with other Amazon Web Services to give developers and businesses an easy way to distribute content to end users with low latency, high data transfer speeds, and no commitments.",
"Euro": "The website uses the € symbol on its website - meaning it may accept payment in Euros.",
"PayPal": "The website accepts payments with PayPal.",
"Apple Pay": "The website accepts payments with Apple Pay.",
"WordPress": "WordPress is a state-of-the-art semantic personal publishing platform with a focus on aesthetics, web standards, and usability.",
"Webflow": "Webflow is a website builder for designing custom, professional websites without code.",
"jQuery": "JQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. jQuery is designed to change the way that you write JavaScript.",
"jQuery Waypoints": "Waypoints is a small jQuery plugin that makes it easy to execute a function whenever you scroll to an element.",
"jQuery UI": "jQuery UI provides abstractions for low-level interaction and animation, advanced effects and high-level, themeable widgets, built on top of the jQuery JavaScript Library, that you can use to build highly interactive web applications.",
"jQuery BlockUI": "jQuery BlockUI Plugin lets you simulate synchronous behavior when using AJAX, without locking the browser.",
"Zoom jQuery": "jQuery plugin for zooming images on mouseover.",
"jQuery 3.7.1": "jQuery version 3.7.1",
"jQuery 3.5.1": "jQuery version 3.5.1",
"Google Hosted Libraries": "Google Hosted Libraries is a globally available content distribution network for the most popular, open-source JavaScript libraries.",
"Google Hosted Web Font Loader": "Web Font Loader hosted at Google.",
"Facebook for Websites": "Allows a user to make a website more sociable and connected with integrations from the hugely popular Facebook website.",
"Facebook SDK": "JavaScript SDK enables you to access all of the features of the Graph API via JavaScript, and it provides a rich set of client-side functionality for authentication and sharing. It differs from Facebook Connect.",
"Lightbox": "Lightbox JS is a simple, unobtrusive script used to overlay images on the current page. It's a snap to setup and works on all modern browsers.",
"imagesLoaded": "jQuery plugin for seeing if the images are loaded.",
"core-js": "Modular standard library for JavaScript.",
"Intersection Observer": "API that can be used to understand the visibility and position of DOM elements relative to a containing element or to the top-level viewport.",
"Underscore.js": "Underscore is a utility-belt library for JavaScript that provides functional programming support.",
"Swipe JS": "Swipe is a lightweight mobile slider with 1:1 touch movement.",
"WebFont Loader": "WebFont Loader gives you added control when using linked fonts via @font-face, from Typekit.",
"Babel": "Babel is a JavaScript compiler.",
"Moment JS": "moment.js is a date library for parsing, validating, manipulating, and formatting dates.",
"React": "A JavaScript library for building user interfaces from Facebook.",
"WebAuthn": "WebAuthn API enables web applications to create and use strong, public key-based credentials for authenticating users. Google and Apple use WebAuthn to support Passkeys.",
"Facebook Custom Audiences": "Custom Audiences from your website makes it possible to reach people who visit your website and deliver the right message to them on Facebook.",
"DoubleClick.Net": "DoubleClick enables agencies, marketers and publishers to work together successfully and profit from their digital marketing investments. Owned by Google and now referred to as DoubleClick Digital Marketing or Google Enterprise Advertising.",
"Google Remarketing": "Google code specifically for remarketing/retargeting based advertising.",
"Facebook": "The website mentions facebook.com in some form.",
"LinkedIn": "The website mentions linkedin.com in some form.",
"TikTok": "The website mentions tiktok.com (but not Douyin) in some form.",
"Twitter": "The website mentions twitter.com in some form.",
"Instagram": "The website mentions Instagram in some form.",
"Cookie Policy": "A cookie policy is a statement that outlines all the cookies used on a website, explicitly detailing each cookie's purpose and use.",
"X": "X is the new name for Twitter.",
"YouTube Link": "This website mentions YouTube.com on it in some form or another.",
"SendinBlue": "Marketing campaigns, Transactional Emails, and SMS messages all in one platform.",
"SPF": "The Sender Policy Framework is an open standard specifying a technical method to prevent sender address forgery.",
"OVH Mail": "Web and email hosting from OVH.",
"DMARC": "A technical specification created by a group of organizations that want to help reduce the potential for email-based abuse",
"DMARC None": "The domain has a DMARC policy of 'None'. A policy of 'none' means this DMARC record will not affect the delivery of email, but it will provide reports on where your outbound email appears to be coming from.",
"LetsEncrypt": "Let’s Encrypt is a free open Certificate Authority.",
"SSL by Default": "The website redirects traffic to an HTTPS/SSL version by default.",
"HSTS": "Forces browsers to only communicate with the site using HTTPS.",
"OVH": "Hosting solutions provider.",
"AWS Global Accelerator": "Networking service that sends traffic through Amazon Web Service’s global network infrastructure for performance improvements.",
"Amazon": "This site is hosted on Amazon AWS EC2 Infrastructure.",
"Amazon Virginia Region": "Amazon Hosted EC2 Instances in Virginia",
"Amazon Oregon Region": "Amazon Hosted EC2 Instances in Oregon",
"Amazon Mumbai Region": "Amazon hosting in Mumbai India region.",
"Amazon Tokyo Region": "Amazon Hosted EC2 Instances in Tokyo",
"Amazon Sydney Region": "Amazon Hosted EC2 Instances in Sydney",
"Amazon Paris Region": "Amazon Hosted EC2 Instances in the city of love.",
"Amazon Stockholm Region": "Amazon hosting in Stockholm.",
"Webflow Hosting": "WebFlow designer tool hosting.",
"403 Error": "The website returned a 403 Forbidden error message and wasn't identified as parked at the time. This does not mean we are not able to index technologies.",
"Edge Network": "The website has two or more IP addresses associated with it.",
"OVH DNS": "DNS services provided by OVH.",
"AWS Lambda": "Execute code seamlessly without server management, workload scaling, event integration, or runtime maintenance.",
"RSS": "A family of web feed formats used to publish frequently updated content such as blog entries, news headlines or podcasts.",
"Amazon S3 CDN": "Amazon S3 is storage for the Internet. It is designed to make web-scale computing easier for developers.",
"Cloudflare CDN": "Content owned by this site hosted on the Cloudflare CDN.",
"Google Webmaster": "Webmaster tools provide you with a free and easy way to make your site more Google-friendly.",
"Content Delivery Network": "This page contains links that give the impression that some of the site contents are stored on a content delivery network."
}
{
"status": 200,
"statusText": "",
"headers": {
"age": "101840",
"alt-svc": "h3=\":443\"; ma=86400",
"cf-cache-status": "HIT",
"cf-ray": "910cfa7d0ae9d6b4-IAD",
"connection": "keep-alive",
"content-encoding": "gzip",
"content-security-policy": "frame-ancestors 'self'",
"content-type": "text/html",
"date": "Wed, 12 Feb 2025 13:38:20 GMT",
"last-modified": "Tue, 11 Feb 2025 09:21:00 GMT",
"strict-transport-security": "max-age=31536000",
"surrogate-control": "max-age=432000",
"surrogate-key": "www.ludo.tech 667c167893718790b5ccc8bf pageId:667c167893718790b5ccc8c5 6682d1f5c8e6c440d71c4cbe 667c185384d2a05f70031972",
"transfer-encoding": "chunked",
"vary": "Accept-Encoding",
"x-cluster-name": "us-east-1-prod-hosting-red",
"x-frame-options": "SAMEORIGIN",
"x-lambda-id": "2f224273-d54c-4c78-8a26-2e05c42dabfb",
"set-cookie": "_cfuvid=o5wHl.qhMtoRODadXWLNIPdWI8vTfP.dzuQAf1P0K08-1739367500463-0.0.1.1-604800000; path=/; domain=.cdn.webflow.com; HttpOnly; Secure; SameSite=None"
}
}
{
"error": false,
"result": {
"success": true,
"ogTitle": "OLEM le robot de jeux de société innovant",
"ogDescription": "Avec OLEM, découvrez une nouvelle façon de jouer. Ce robot de jeux de société interactif vous plonge dans des univers variés, le tout avec un seul support. Téléchargez l'app et accédez à de nouveaux jeux pour prolonger l'aventure.",
"twitterTitle": "OLEM le robot de jeux de société innovant",
"twitterDescription": "Avec OLEM, découvrez une nouvelle façon de jouer. Ce robot de jeux de société interactif vous plonge dans des univers variés, le tout avec un seul support. Téléchargez l'app et accédez à de nouveaux jeux pour prolonger l'aventure.",
"ogType": "website",
"twitterCard": "summary_large_image",
"ogImage": [
{
"url": "https://cdn.prod.website-files.com/667c167893718790b5ccc8bf/6682c4d528425757ea614692_Ludotech_SansFond_Horizontal.png",
"type": "png",
"width": 109
},
{
"url": "https://cdn.prod.website-files.com/plugins/Basic/assets/placeholder.60f9b1840c.svg",
"type": "svg"
},
{
"url": "https://cdn.prod.website-files.com/6022af993a6b2191db3ed10c/628299f8aa233b83918e24fd_Pause.svg",
"type": "svg"
},
{
"url": "https://cdn.prod.website-files.com/6022af993a6b2191db3ed10c/628298b20ae0236682d4b87f_Play-24.svg",
"type": "svg"
},
{
"url": "https://cdn.prod.website-files.com/667c167893718790b5ccc8bf/668288e7f32104898b32d708_OLEM_Logo2021_red_white.png",
"type": "png",
"width": 309
},
{
"url": "https://cdn.prod.website-files.com/667c167893718790b5ccc8bf/668288e7f32104898b32d708_OLEM_Logo2021_red_white.png",
"type": "png",
"width": 144
},
{
"url": "https://cdn.prod.website-files.com/6022af993a6b2191db3ed10c/628299f8aa233b83918e24fd_Pause.svg",
"type": "svg"
},
{
"url": "https://cdn.prod.website-files.com/6022af993a6b2191db3ed10c/628298b20ae0236682d4b87f_Play-24.svg",
"type": "svg"
},
{
"url": "https://cdn.prod.website-files.com/667c167893718790b5ccc8bf/671108879f4b928f80c03ffc_logo_gv_en_slider_home.png",
"type": "png",
"width": 247
},
{
"url": "https://cdn.prod.website-files.com/667c185384d2a05f70031959/6683dd6da7c9bc8f214ba09e_produit_SW.png",
"type": "png",
"width": 145
}
],
"ogLocale": "en",
"favicon": "https://cdn.prod.website-files.com/667c167893718790b5ccc8bf/670f7c84695a85d3e2cd893f_favicon_32x32.png",
"charset": "utf-8",
"requestUrl": "https://ludo.tech"
},
"response": {}
}
{
"data": {
"total": 6,
"personal_emails": 3,
"generic_emails": 3,
"department": {
"executive": 1,
"it": 1,
"finance": 0,
"management": 0,
"sales": 1,
"legal": 0,
"support": 2,
"hr": 0,
"marketing": 1,
"communication": 0,
"education": 0,
"design": 0,
"health": 0,
"operations": 0
},
"seniority": {
"junior": 0,
"senior": 0,
"executive": 3
}
},
"meta": {
"params": {
"domain": "ludo.tech",
"company": null,
"type": null
}
}
}
{
"whois.nic.tech": {
"Domain Status": [
"clientTransferProhibited https://icann.org/epp#clientTransferProhibited",
"clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited"
],
"Name Server": [
"DNS15.OVH.NET",
"NS15.OVH.NET"
],
"Domain Name": "LUDO.TECH",
"Registry Domain ID": "D45865186-CNIC",
"Registrar WHOIS Server": "whois.ovh.com",
"Registrar URL": "http://www.ovh.com",
"Updated Date": "2024-04-01T10:18:43.0Z",
"Created Date": "2017-03-16T20:10:15.0Z",
"Expiry Date": "2025-03-16T23:59:59.0Z",
"Registrar": "OVH",
"Registrar IANA ID": "433",
"Registrant Organization": "",
"Registrant State/Province": "",
"Registrant Country": "FR",
"Registrant Email": "Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.",
"Admin Email": "Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.",
"Tech Email": "Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.",
"DNSSEC": "unsigned",
"Billing Email": "Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.",
"Registrar Abuse Contact Email": "[email protected]",
"Registrar Abuse Contact Phone": "+33.974530814",
"URL of the ICANN Whois Inaccuracy Complaint Form": "https://www.icann.org/wicf/",
">>> Last update of WHOIS database": "2025-02-12T13:38:20.0Z <<<",
"text": [
"For more information on Whois status codes, please visit https://icann.org/epp",
"",
">>> IMPORTANT INFORMATION ABOUT THE DEPLOYMENT OF RDAP: please visit",
"https://www.centralnicregistry.com/support/information/rdap <<<",
"",
"The Whois and RDAP services are provided by CentralNic, and contain",
"information pertaining to Internet domain names registered by our",
"our customers. By using this service you are agreeing (1) not to use any",
"information presented here for any purpose other than determining",
"ownership of domain names, (2) not to store or reproduce this data in",
"any way, (3) not to use any high-volume, automated, electronic processes",
"to obtain data from this service. Abuse of this service is monitored and",
"actions in contravention of these terms will result in being permanently",
"blacklisted. All data is (c) CentralNic Ltd (https://www.centralnicregistry.com)",
"",
"Access to the Whois and RDAP services is rate limited. For more",
"information, visit https://registrar-console.centralnicregistry.com/pub/whois_guidance."
]
},
"whois.ovh.com": {
"Domain Status": [
"clientTransferProhibited https://icann.org/epp#clientTransferProhibited",
"clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited"
],
"Name Server": [
"dns15.ovh.net",
"ns15.ovh.net"
],
"Domain Name": "ludo.tech",
"Registry Domain ID": "D45865186-CNIC",
"Registrar WHOIS Server": "whois.ovh.com",
"Registrar URL": "https://www.ovh.com",
"Updated Date": "2024-04-01T10:18:43Z",
"Created Date": "2017-03-16T20:10:15Z",
"Expiry Date": "2025-03-16T23:59:59+01:00",
"Registrar": "OVH, SAS",
"Registrar IANA ID": "433",
"Registrar Abuse Contact Email": "[email protected]",
"Registrar Abuse Contact Phone": "+33.972101007",
"Registry Registrant ID": "ovh5db6ca4ddkq9",
"Registrant Name": "",
"Registrant Organization": "",
"Registrant Street": "",
"Registrant City": "",
"Registrant State/Province": "",
"Registrant Postal Code": "",
"Registrant Country": "FR",
"Registrant Phone": "",
"Registrant Phone Ext": "",
"Registrant Fax": "",
"Registrant Fax Ext": "",
"Registrant Email": "REDACTED FOR PRIVACY - Send message to contact by visiting https://www.ovhcloud.com/en/lp/request-ovhcloud-registered-domain/",
"Registry Admin ID": "ovh5db6ca4fr0k7",
"Admin Name": "",
"Admin Organization": "",
"Admin Street": "",
"Admin City": "",
"Admin State/Province": "",
"Admin Postal Code": "",
"Admin Country": "",
"Admin Phone": "",
"Admin Phone Ext": "",
"Admin Fax": "",
"Admin Fax Ext": "",
"Admin Email": "REDACTED FOR PRIVACY - Send message to contact by visiting https://www.ovhcloud.com/en/lp/request-ovhcloud-registered-domain/",
"Registry Tech ID": "ovh5db6ca4fr0k7",
"Tech Name": "",
"Tech Organization": "",
"Tech Street": "",
"Tech City": "",
"Tech State/Province": "",
"Tech Postal Code": "",
"Tech Country": "",
"Tech Phone": "",
"Tech Phone Ext": "",
"Tech Fax": "",
"Tech Fax Ext": "",
"Tech Email": "REDACTED FOR PRIVACY - Send message to contact by visiting https://www.ovhcloud.com/en/lp/request-ovhcloud-registered-domain/",
"DNSSEC": "unsigned",
"URL of the ICANN WHOIS Data Problem Reporting System": "",
">>> Last update of WHOIS database": "2024-11-28T22:23:28Z <<<",
"# whois server": "whois.ovh.com check server : check.ovh.com",
"# ICANN's Uniform Dispute Resolution Policy": "http://www.icann.org/udrp/udrp.htm",
"# outil dans les buts suivant": "(1) la transmission de publicité non sollicitée,",
"# Dispute Resolution Policy de l'ICANN": "http://www.icann.org/udrp/udrp.htm",
"# local time": "2025-02-12T13:38:20Z",
"# gmt time": "2025-02-12T13:38:20Z",
"# last modify": "2024-11-28T22:23:28Z",
"text": [
"http://wdprs.internic.net/",
"",
"For more information on Whois status codes, please visit https://icann.org/epp",
"",
"###############################################################################",
"#",
"# Welcome to the OVH WHOIS Server.",
"#",
"#",
"# The data in this Whois is at your disposal with the aim of supplying you the",
"# information only, that is helping you in the obtaining of the information",
"# about or related to a domain name registration record. OVH Sas make this",
"# information available \"as is\", and do not guarantee its accuracy. By using",
"# Whois, you agree that you will use these data only for legal purposes and",
"# that, under no circumstances will you use this data to: (1) Allow, enable,",
"# or otherwise support the transmission of mass unsolicited, commercial",
"# advertisement or roughly or requests via the individual mail (courier),",
"# the E-mail (SPAM), by telephone or by fax. (2) Enable high volume, automated,",
"# electronic processes that apply to OVH Sas (or its computer systems).",
"# The copy, the compilation, the re-packaging, the dissemination or the",
"# other use of the Whois base is expressly forbidden without the prior",
"# written consent of OVH. Domain ownership disputes should be settled using",
"# We reserve the right to modify these terms at any time. By submitting",
"# this query, you agree to abide by these terms. OVH Sas reserves the right",
"# to terminate your access to the OVH Sas Whois database in its sole",
"# discretion, including without limitation, for excessive querying of",
"# the Whois database or for failure to otherwise abide by this policy.",
"#",
"# L'outil du Whois est à votre disposition dans le but de vous fournir",
"# l'information seulement, c'est-à-dire vous aider dans l'obtention de",
"# l'information sur ou lié à un rapport d'enregistrement de nom de domaine.",
"# OVH Sas rend cette information disponible \"comme est,\" et ne garanti pas",
"# son exactitude. En utilisant notre outil Whois, vous reconnaissez que vous",
"# emploierez ces données seulement pour des buts légaux et ne pas utiliser cet",
"# commerciale massive ou en gros ou des sollicitations via courrier individuel,",
"# le courrier électronique (c'est-à-dire SPAM), par téléphone ou par fax. (2)",
"# l'utilisation d'un grand volume, automatisé des processus électroniques qui",
"# soulignent ou chargent ce système de base de données Whois vous fournissant",
"# cette information. La copie de tout ou partie, la compilation, le",
"# re-emballage, la dissémination ou d'autre utilisation de la base Whois sont",
"# expressément interdits sans consentement écrit antérieur de OVH. Un désaccord",
"# sur la possession d'un nom de domaine peut être résolu en suivant la Uniform",
"# Nous nous réservons le droit de modifier ces termes à tout moment. En",
"# soumettant une requête au Whois vous consentez à vous soumettre à ces termes."
]
}
}