{"id":2853,"date":"2025-10-17T01:42:00","date_gmt":"2025-10-17T01:42:00","guid":{"rendered":"https:\/\/www.itechmagazine.com\/?page_id=2853"},"modified":"2025-10-23T17:06:06","modified_gmt":"2025-10-23T17:06:06","slug":"domain-age-checker","status":"publish","type":"page","link":"https:\/\/www.itechmagazine.com\/tl\/domain-age-checker\/","title":{"rendered":"Domain Age Checker"},"content":{"rendered":"<style>\n    :root {\n        --color-primary: #3B82F6; \/* Blue-500 *\/\n        --color-primary-dark: #1D4ED8; \/* Blue-700 *\/\n        --color-secondary: #64748B; \/* Slate-500 *\/\n        --color-accent: #14B8A6; \/* Teal-500 *\/\n        --color-success: #22C55E; \/* Green-500 *\/\n        --color-error: #EF4444; \/* Red-500 *\/\n        --color-bg-primary: #FFFFFF; \/* White *\/\n        --color-bg-secondary: #F8FAFC; \/* Slate-50 *\/\n        --color-bg-tertiary: #F1F5F9; \/* Slate-100 *\/\n        --color-text-primary: #1E293B; \/* Slate-800 *\/\n        --color-text-secondary: #475569; \/* Slate-600 *\/\n        --color-border: #E2E8F0; \/* Slate-200 *\/\n        --border-radius: 12px;\n        --border-radius-lg: 16px;\n        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);\n        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);\n        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);\n        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n    }\n\n    * {\n        box-sizing: border-box;\n        margin: 0;\n        padding: 0;\n    }\n\n    .domain-checker {\n        font-family: -apple-system, BlinkMacSystemFont, 'Inter', Roboto, sans-serif;\n        width: 100%;\n        max-width: 960px;\n        margin: 2rem auto;\n        background: var(--color-bg-primary);\n        border-radius: var(--border-radius-lg);\n        box-shadow: var(--shadow-lg);\n        border: 1px solid var(--color-border);\n        overflow: hidden;\n    }\n\n    .checker-header {\n        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);\n        padding: 2.5rem;\n        text-align: center;\n        position: relative;\n    }\n\n    .checker-header::before {\n        content: '';\n        position: absolute;\n        inset: 0;\n        background: url(\"data:image\/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='20' cy='20' r='1'\/%3E%3C\/g%3E%3C\/g%3E%3C\/svg%3E\");\n    }\n\n    .header-icon {\n        display: inline-flex;\n        align-items: center;\n        justify-content: center;\n        width: 48px;\n        height: 48px;\n        background: rgba(255, 255, 255, 0.15);\n        border-radius: 50%;\n        margin-bottom: 1rem;\n    }\n\n    .header-icon svg {\n        width: 24px;\n        height: 24px;\n        fill: white;\n    }\n\n    .header-title {\n        font-size: clamp(1.75rem, 4vw, 2.25rem);\n        font-weight: 700;\n        color: white;\n        letter-spacing: -0.025em;\n        margin-bottom: 0.5rem;\n    }\n\n    .header-subtitle {\n        font-size: 1rem;\n        color: rgba(255, 255, 255, 0.9);\n        font-weight: 400;\n        line-height: 1.5;\n    }\n\n    .checker-body {\n        padding: 2rem;\n    }\n\n    .input-section {\n        background: var(--color-bg-secondary);\n        padding: 1.5rem;\n        border-radius: var(--border-radius);\n        border: 1px solid var(--color-border);\n        margin-bottom: 1.5rem;\n    }\n\n    .input-group {\n        display: flex;\n        gap: 1rem;\n        align-items: center;\n    }\n\n    #domainInput {\n        flex: 1;\n        padding: 0.875rem 1.25rem;\n        border: 2px solid transparent;\n        border-radius: var(--border-radius);\n        background: var(--color-bg-primary);\n        color: var(--color-text-primary);\n        font-size: 1rem;\n        font-weight: 500;\n        transition: var(--transition);\n        box-shadow: var(--shadow-sm);\n    }\n\n    #domainInput:focus {\n        outline: none;\n        border-color: var(--color-primary);\n        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);\n        transform: translateY(-1px);\n    }\n\n    #domainInput::placeholder {\n        color: var(--color-text-secondary);\n        font-weight: 400;\n    }\n\n    .check-button {\n        padding: 0.875rem 2rem;\n        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);\n        color: white;\n        font-weight: 600;\n        font-size: 1rem;\n        border: none;\n        border-radius: var(--border-radius);\n        cursor: pointer;\n        transition: var(--transition);\n        box-shadow: var(--shadow-md);\n        position: relative;\n        overflow: hidden;\n    }\n\n    .check-button::before {\n        content: '';\n        position: absolute;\n        top: 0;\n        left: -100%;\n        width: 100%;\n        height: 100%;\n        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);\n        transition: left 0.5s;\n    }\n\n    .check-button:hover::before {\n        left: 100%;\n    }\n\n    .check-button:hover {\n        transform: translateY(-2px);\n        box-shadow: var(--shadow-lg);\n    }\n\n    .check-button:active {\n        transform: translateY(0);\n    }\n\n    .check-button:disabled {\n        opacity: 0.6;\n        cursor: not-allowed;\n        transform: none;\n    }\n\n    .message {\n        padding: 1rem 1.25rem;\n        border-radius: var(--border-radius);\n        margin-bottom: 1.5rem;\n        display: flex;\n        align-items: center;\n        gap: 0.75rem;\n        font-weight: 500;\n        animation: slideDown 0.3s ease-out;\n        border: 1px solid transparent;\n    }\n\n    .message-error {\n        background: #FEF2F2;\n        border-color: #FECACA;\n        color: var(--color-error);\n    }\n\n    .message-loading {\n        background: #EFF6FF;\n        border-color: #DBEAFE;\n        color: var(--color-primary);\n    }\n\n    .message svg {\n        width: 20px;\n        height: 20px;\n        flex-shrink: 0;\n    }\n\n    .loading-dots {\n        display: inline-flex;\n        align-items: center;\n        gap: 0.25rem;\n    }\n\n    .loading-dots span {\n        width: 6px;\n        height: 6px;\n        border-radius: 50%;\n        background: var(--color-primary);\n        animation: loadingBounce 1.4s ease-in-out infinite;\n    }\n\n    .loading-dots span:nth-child(1) { animation-delay: -0.32s; }\n    .loading-dots span:nth-child(2) { animation-delay: -0.16s; }\n\n    @keyframes loadingBounce {\n        0%, 80%, 100% { transform: scale(0); }\n        40% { transform: scale(1); }\n    }\n\n    @keyframes slideDown {\n        from { opacity: 0; transform: translateY(-10px); }\n        to { opacity: 1; transform: translateY(0); }\n    }\n\n    .results-grid {\n        display: grid;\n        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\n        gap: 1.5rem;\n        margin-bottom: 1.5rem;\n    }\n\n    .result-card {\n        background: var(--color-bg-primary);\n        padding: 1.5rem;\n        border-radius: var(--border-radius);\n        box-shadow: var(--shadow-md);\n        text-align: center;\n        transition: var(--transition);\n        border-top: 3px solid transparent;\n        position: relative;\n        overflow: hidden;\n    }\n\n    .result-card:hover {\n        transform: translateY(-3px);\n        box-shadow: var(--shadow-lg);\n    }\n\n    .result-card h3 {\n        font-size: 0.875rem;\n        font-weight: 600;\n        text-transform: uppercase;\n        letter-spacing: 0.05em;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        gap: 0.5rem;\n        margin-bottom: 0.75rem;\n        color: inherit;\n    }\n\n    .result-card svg {\n        width: 20px;\n        height: 20px;\n    }\n\n    .result-value {\n        font-size: clamp(1.25rem, 4vw, 1.75rem);\n        font-weight: 700;\n        color: var(--color-text-primary);\n        line-height: 1.2;\n    }\n\n    .card-registration { border-top-color: var(--color-primary); }\n    .card-registration h3 { color: var(--color-primary); }\n    .card-expiration { border-top-color: var(--color-accent); }\n    .card-expiration h3 { color: var(--color-accent); }\n    .card-age { border-top-color: var(--color-success); }\n    .card-age h3 { color: var(--color-success); }\n\n    .info-section {\n        background: var(--color-bg-tertiary);\n        padding: 1.25rem;\n        border-radius: var(--border-radius);\n        border-left: 3px solid var(--color-primary);\n        margin-top: 1.5rem;\n    }\n\n    .info-section h4 {\n        font-size: 0.875rem;\n        font-weight: 600;\n        color: var(--color-primary);\n        margin-bottom: 0.5rem;\n    }\n\n    .info-section p {\n        font-size: 0.875rem;\n        color: var(--color-text-secondary);\n        line-height: 1.5;\n    }\n\n    .hidden { display: none !important; }\n\n    @media (max-width: 768px) {\n        .domain-checker { margin: 1rem; }\n        .checker-header { padding: 2rem 1.5rem; }\n        .checker-body { padding: 1.5rem; }\n        .input-section { padding: 1.25rem; }\n        .input-group { flex-direction: column; }\n        .check-button { width: 100%; }\n        .results-grid { grid-template-columns: 1fr; gap: 1rem; }\n        .result-card { padding: 1.25rem; }\n    }\n\n    @media (max-width: 480px) {\n        .checker-header { padding: 1.5rem 1rem; }\n        .checker-body { padding: 1rem; }\n        .header-title { font-size: 1.5rem; }\n        .header-subtitle { font-size: 0.875rem; }\n    }\n<\/style>\n\n<div class=\"domain-checker\">\n    <div class=\"checker-header\">\n        <div class=\"header-icon\">\n            <svg viewbox=\"0 0 24 24\" fill=\"currentColor\">\n                <path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-14c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z\"\/>\n            <\/svg>\n        <\/div>\n        <h1 class=\"header-title\">Domain Insights<\/h1>\n        <p class=\"header-subtitle\">Instant WHOIS analysis and domain age verification<\/p>\n    <\/div>\n\n    <div class=\"checker-body\">\n        <div class=\"input-section\">\n            <div class=\"input-group\">\n                <input id=\"domainInput\" type=\"text\" placeholder=\"Enter domain without https:\/\/ (e.g., example.com, google.co.uk)\" autocomplete=\"off\" \/>\n                <button class=\"check-button\" id=\"checkButton\">\n                    <span id=\"buttonText\">Analyze Domain<\/span>\n                <\/button>\n            <\/div>\n        <\/div>\n\n        <div id=\"error-message\" class=\"message message-error hidden\">\n            <svg viewbox=\"0 0 24 24\" fill=\"currentColor\">\n                <path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z\"\/>\n            <\/svg>\n            <span id=\"errorText\"><\/span>\n        <\/div>\n\n        <div id=\"loader\" class=\"message message-loading hidden\">\n            <svg viewbox=\"0 0 24 24\" fill=\"currentColor\">\n                <path d=\"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8A5.87 5.87 0 0 1 6 12c0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z\"\/>\n            <\/svg>\n            <span>Processing...<\/span>\n            <div class=\"loading-dots\">\n                <span><\/span>\n                <span><\/span>\n                <span><\/span>\n            <\/div>\n        <\/div>\n\n        <div id=\"resultRow\" class=\"results-grid hidden\">\n            <div class=\"result-card card-registration\">\n                <h3>\n                    <svg viewbox=\"0 0 24 24\" fill=\"currentColor\">\n                        <path d=\"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z\"\/>\n                    <\/svg>\n                    Registered On\n                <\/h3>\n                <p class=\"result-value\" id=\"regDate\">\u2014<\/p>\n            <\/div>\n            <div class=\"result-card card-expiration\">\n                <h3>\n                    <svg viewbox=\"0 0 24 24\" fill=\"currentColor\">\n                        <path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z\"\/>\n                    <\/svg>\n                    Expires On\n                <\/h3>\n                <p class=\"result-value\" id=\"expDate\">\u2014<\/p>\n            <\/div>\n            <div class=\"result-card card-age\">\n                <h3>\n                    <svg viewbox=\"0 0 24 24\" fill=\"currentColor\">\n                        <path d=\"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67V7z\"\/>\n                    <\/svg>\n                    Domain Age\n                <\/h3>\n                <p class=\"result-value\" id=\"domainAge\">\u2014<\/p>\n            <\/div>\n        <\/div>\n\n        <div class=\"info-section hidden\" id=\"infoSection\">\n            <h4>\u2139\ufe0f About This Data<\/h4>\n            <p>WHOIS information is sourced from public domain registries. Privacy protection services may limit data availability.<\/p>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    const checkDomainAge = async () => {\n        const domainInput = document.getElementById(\"domainInput\");\n        const checkButton = document.getElementById(\"checkButton\");\n        const buttonText = document.getElementById(\"buttonText\");\n        const loader = document.getElementById(\"loader\");\n        const errorMessage = document.getElementById(\"error-message\");\n        const errorText = document.getElementById(\"errorText\");\n        const resultRow = document.getElementById(\"resultRow\");\n        const infoSection = document.getElementById(\"infoSection\");\n        const regDateEl = document.getElementById(\"regDate\");\n        const expDateEl = document.getElementById(\"expDate\");\n        const domainAgeEl = document.getElementById(\"domainAge\");\n\n        \/\/ Reset UI\n        errorMessage.classList.add(\"hidden\");\n        resultRow.classList.add(\"hidden\");\n        infoSection.classList.add(\"hidden\");\n        loader.classList.remove(\"hidden\");\n        checkButton.disabled = true;\n        buttonText.innerHTML = '<svg style=\"width: 16px; height: 16px; vertical-align: middle; margin-right: 8px;\" viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8A5.87 5.87 0 0 1 6 12c0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z\"\/><\/svg>Processing...';\n\n        \/\/ Validate domain\n        let domain = domainInput.value.trim().toLowerCase().replace(\/^https?:\\\/\\\/\/, '').replace(\/^www\\.\/, '');\n        if (!domain || !domain.includes('.') || domain.length < 3) {\n            loader.classList.add(\"hidden\");\n            errorText.textContent = \"Please enter a valid domain (e.g., example.com)\";\n            errorMessage.classList.remove(\"hidden\");\n            checkButton.disabled = false;\n            buttonText.textContent = \"Analyze Domain\";\n            domainInput.focus();\n            return;\n        }\n\n        const MAX_RETRIES = 3;\n        const API_KEY = \"3jsJA6GpFO2O6XzDaIrx9A==9aS8MgAaRqt6poOK\";\n\n        let data = null;\n        let lastError = null;\n        for (let i = 0; i < MAX_RETRIES; i++) {\n            try {\n                const response = await fetch(`https:\/\/api.api-ninjas.com\/v1\/whois?domain=${encodeURIComponent(domain)}`, {\n                    headers: { \"X-Api-Key\": API_KEY }\n                });\n                if (response.status === 404) {\n                    throw new Error(\"Domain not found or WHOIS data is unavailable.\");\n                }\n                if (!response.ok) {\n                    const errorData = await response.json().catch(() => ({}));\n                    throw new Error(errorData.error || `HTTP error: ${response.status}`);\n                }\n                data = await response.json();\n                break;\n            } catch (err) {\n                lastError = err;\n                if (i < MAX_RETRIES - 1) await new Promise(resolve => setTimeout(resolve, Math.pow(2, i) * 1000));\n            }\n        }\n\n        loader.classList.add(\"hidden\");\n        checkButton.disabled = false;\n        buttonText.textContent = \"Analyze Another\";\n\n        if (!data) {\n            errorText.textContent = lastError.message.toLowerCase().includes('unavailable') || lastError.message.includes('not found')\n                ? \"Domain not found or WHOIS data is unavailable.\"\n                : `Error: ${lastError.message}`;\n            errorMessage.classList.remove(\"hidden\");\n            return;\n        }\n\n        \/\/ Process dates (Unix timestamps in seconds from API-Ninjas)\n        const dateOptions = { year: 'numeric', month: 'short', day: 'numeric' };\n        const regDate = data.creation_date ? new Date(data.creation_date * 1000) : null;\n        const expDate = data.expiration_date ? new Date(data.expiration_date * 1000) : null;\n\n        regDateEl.textContent = regDate && !isNaN(regDate) ? regDate.toLocaleDateString('en-US', dateOptions) : 'N\/A';\n        expDateEl.textContent = expDate && !isNaN(expDate) ? expDate.toLocaleDateString('en-US', dateOptions) : 'N\/A';\n\n        \/\/ Calculate domain age\n        let ageText = 'N\/A';\n        if (regDate && !isNaN(regDate)) {\n            const now = new Date();\n            let years = now.getFullYear() - regDate.getFullYear();\n            let months = now.getMonth() - regDate.getMonth();\n            let days = now.getDate() - regDate.getDate();\n\n            if (days < 0) {\n                months--;\n                days += new Date(now.getFullYear(), now.getMonth(), 0).getDate();\n            }\n            if (months < 0) {\n                years--;\n                months += 12;\n            }\n\n            const parts = [];\n            if (years > 0) parts.push(`${years}y`);\n            if (months > 0) parts.push(`${months}m`);\n            if (days > 0 || parts.length === 0) parts.push(`${days}d`);\n            ageText = parts.join(' ');\n        }\n\n        domainAgeEl.textContent = ageText;\n        resultRow.classList.remove(\"hidden\");\n        infoSection.classList.remove(\"hidden\");\n        resultRow.scrollIntoView({ behavior: 'smooth', block: 'center' });\n    };\n\n    document.addEventListener('DOMContentLoaded', () => {\n        const checkButton = document.getElementById('checkButton');\n        const domainInput = document.getElementById('domainInput');\n\n        if (checkButton && domainInput) {\n            checkButton.addEventListener('click', checkDomainAge);\n            domainInput.addEventListener('keypress', (e) => {\n                if (e.key === 'Enter') {\n                    e.preventDefault();\n                    checkDomainAge();\n                }\n            });\n            domainInput.addEventListener('input', () => {\n                document.getElementById('resultRow').classList.add('hidden');\n                document.getElementById('infoSection').classList.add('hidden');\n            });\n            domainInput.focus();\n        }\n    });\n<\/script>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2853","page","type-page","status-publish"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Domain Age Checker - iTech Magazine<\/title>\n<meta name=\"description\" content=\"Domain Age Checker\" \/>\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.itechmagazine.com\/tl\/domain-age-checker\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Domain Age Checker - iTech Magazine\" \/>\n<meta property=\"og:description\" content=\"Domain Age Checker\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.itechmagazine.com\/tl\/domain-age-checker\/\" \/>\n<meta property=\"og:site_name\" content=\"iTech Magazine\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/itechmagzine\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-23T17:06:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.itechmagazine.com\/wp-content\/uploads\/2023\/03\/cropped-itechmagazine-favicon-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@itech_magazine\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.itechmagazine.com\\\/domain-age-checker\\\/\",\"url\":\"https:\\\/\\\/www.itechmagazine.com\\\/domain-age-checker\\\/\",\"name\":\"Domain Age Checker - iTech Magazine\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.itechmagazine.com\\\/#website\"},\"datePublished\":\"2025-10-17T01:42:00+00:00\",\"dateModified\":\"2025-10-23T17:06:06+00:00\",\"description\":\"Domain Age Checker\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.itechmagazine.com\\\/domain-age-checker\\\/#breadcrumb\"},\"inLanguage\":\"tl\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.itechmagazine.com\\\/domain-age-checker\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.itechmagazine.com\\\/domain-age-checker\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.itechmagazine.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Domain Age Checker\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.itechmagazine.com\\\/#website\",\"url\":\"https:\\\/\\\/www.itechmagazine.com\\\/\",\"name\":\"iTech Magazine\",\"description\":\"Tech Trends, Business and Digital Marketing\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.itechmagazine.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.itechmagazine.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tl\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.itechmagazine.com\\\/#organization\",\"name\":\"itech Magazine\",\"url\":\"https:\\\/\\\/www.itechmagazine.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tl\",\"@id\":\"https:\\\/\\\/www.itechmagazine.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.itechmagazine.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/cropped-itechmagazine-favicon-1.png\",\"contentUrl\":\"https:\\\/\\\/www.itechmagazine.com\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/cropped-itechmagazine-favicon-1.png\",\"width\":512,\"height\":512,\"caption\":\"itech Magazine\"},\"image\":{\"@id\":\"https:\\\/\\\/www.itechmagazine.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/itechmagzine\",\"https:\\\/\\\/x.com\\\/itech_magazine\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/itechmagazine\\\/\",\"https:\\\/\\\/mastodon.online\\\/@itechmagazine\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Domain Age Checker - iTech Magazine","description":"Domain Age Checker","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.itechmagazine.com\/tl\/domain-age-checker\/","og_locale":"en_US","og_type":"article","og_title":"Domain Age Checker - iTech Magazine","og_description":"Domain Age Checker","og_url":"https:\/\/www.itechmagazine.com\/tl\/domain-age-checker\/","og_site_name":"iTech Magazine","article_publisher":"https:\/\/www.facebook.com\/itechmagzine","article_modified_time":"2025-10-23T17:06:06+00:00","og_image":[{"width":512,"height":512,"url":"https:\/\/www.itechmagazine.com\/wp-content\/uploads\/2023\/03\/cropped-itechmagazine-favicon-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@itech_magazine","twitter_misc":{"Est. reading time":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.itechmagazine.com\/domain-age-checker\/","url":"https:\/\/www.itechmagazine.com\/domain-age-checker\/","name":"Domain Age Checker - iTech Magazine","isPartOf":{"@id":"https:\/\/www.itechmagazine.com\/#website"},"datePublished":"2025-10-17T01:42:00+00:00","dateModified":"2025-10-23T17:06:06+00:00","description":"Domain Age Checker","breadcrumb":{"@id":"https:\/\/www.itechmagazine.com\/domain-age-checker\/#breadcrumb"},"inLanguage":"tl","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.itechmagazine.com\/domain-age-checker\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.itechmagazine.com\/domain-age-checker\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.itechmagazine.com\/"},{"@type":"ListItem","position":2,"name":"Domain Age Checker"}]},{"@type":"WebSite","@id":"https:\/\/www.itechmagazine.com\/#website","url":"https:\/\/www.itechmagazine.com\/","name":"iTech Magazine","description":"Tech Trends, Business and Digital Marketing","publisher":{"@id":"https:\/\/www.itechmagazine.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.itechmagazine.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tl"},{"@type":"Organization","@id":"https:\/\/www.itechmagazine.com\/#organization","name":"itech Magazine","url":"https:\/\/www.itechmagazine.com\/","logo":{"@type":"ImageObject","inLanguage":"tl","@id":"https:\/\/www.itechmagazine.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.itechmagazine.com\/wp-content\/uploads\/2023\/03\/cropped-itechmagazine-favicon-1.png","contentUrl":"https:\/\/www.itechmagazine.com\/wp-content\/uploads\/2023\/03\/cropped-itechmagazine-favicon-1.png","width":512,"height":512,"caption":"itech Magazine"},"image":{"@id":"https:\/\/www.itechmagazine.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/itechmagzine","https:\/\/x.com\/itech_magazine","https:\/\/www.linkedin.com\/company\/itechmagazine\/","https:\/\/mastodon.online\/@itechmagazine"]}]}},"_links":{"self":[{"href":"https:\/\/www.itechmagazine.com\/tl\/wp-json\/wp\/v2\/pages\/2853","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.itechmagazine.com\/tl\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.itechmagazine.com\/tl\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.itechmagazine.com\/tl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.itechmagazine.com\/tl\/wp-json\/wp\/v2\/comments?post=2853"}],"version-history":[{"count":0,"href":"https:\/\/www.itechmagazine.com\/tl\/wp-json\/wp\/v2\/pages\/2853\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.itechmagazine.com\/tl\/wp-json\/wp\/v2\/media?parent=2853"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}