{"id":8311169,"date":"2025-09-19T04:59:45","date_gmt":"2025-09-19T01:59:45","guid":{"rendered":"https:\/\/elementor.com\/tools\/?p=8311169"},"modified":"2025-09-19T05:00:10","modified_gmt":"2025-09-19T02:00:10","slug":"debt-calculator","status":"publish","type":"post","link":"https:\/\/elementor.com\/tools\/debt-calculator\/","title":{"rendered":"Debt Calculator"},"content":{"rendered":"\t\t<div data-elementor-type=\"container\" data-elementor-id=\"8311167\" class=\"elementor elementor-8311167\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-23691a2c e-flex e-con-boxed e-con e-parent\" data-id=\"23691a2c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-37c3711c elementor-widget elementor-widget-html\" data-id=\"37c3711c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\r\n    \/* --- Styles Adapted from Your Code --- *\/\r\n    .debt-calculator-app {\r\n        width: 100%;\r\n        max-width: 700px; \/* Adjusted for a single container layout *\/\r\n        margin: 0 auto;\r\n        padding: 40px 0 0;\r\n        background: transparent;\r\n        overflow: visible;\r\n        position: relative;\r\n    }\r\n\r\n    .main-content {\r\n        display: flex;\r\n        justify-content: center; \/* Center the single calculator *\/\r\n        align-items: flex-start;\r\n        width: 100%;\r\n    }\r\n    \r\n    .calculator-section {\r\n        flex: 1;\r\n        max-width: 700px;\r\n        display: flex;\r\n        flex-direction: column;\r\n        background: white;\r\n        border-radius: 8px;\r\n        overflow: hidden;\r\n        border: 1.5px solid #EBEBEB;\r\n        box-shadow: 0 4px 15px rgba(0,0,0,0.08);\r\n    }\r\n    \r\n    .section-header {\r\n        background-color: #05047E;\r\n        color: white;\r\n        padding: 16px 24px;\r\n        font-family: 'DM Sans', sans-serif; \/* Fallback to sans-serif *\/\r\n        font-weight: 500;\r\n        font-size: 1.25rem;\r\n    }\r\n\r\n    .format-btn {\r\n        background-color: #000;\r\n        color: white;\r\n        border: none;\r\n        padding: 12px 20px;\r\n        border-radius: 4px;\r\n        cursor: pointer;\r\n        font-size: 1.125rem;\r\n        font-weight: 500;\r\n        transition: all 0.2s;\r\n        flex-grow: 1;\r\n        text-align: center;\r\n    }\r\n\r\n    .format-btn:is(:hover, :focus, :focus-visible, :active){\r\n        background-color: #545454;\r\n    }\r\n\r\n    .reset-btn {\r\n        background: none;\r\n        border: none;\r\n        color: black;\r\n        text-decoration: underline;\r\n        font-size: 1rem;\r\n        cursor: pointer;\r\n        padding: 8px;\r\n        transition: color 0.2s;\r\n    }\r\n\r\n    .reset-btn:is(:hover, :focus, :focus-visible, :active) {\r\n        background: none;\r\n        color: #545454;\r\n        text-decoration: underline;\r\n    }\r\n\r\n    .error-message {\r\n        position: fixed;\r\n        top: 20px;\r\n        right: 20px;\r\n        background-color: #cf2e2e; \/* Using 'vivid-red' from your variables *\/\r\n        color: white;\r\n        padding: 12px 20px;\r\n        border-radius: 4px;\r\n        font-size: 14px;\r\n        opacity: 0;\r\n        transform: translateX(100%);\r\n        transition: all 0.3s ease;\r\n        z-index: 1000;\r\n        box-shadow: 0 2px 10px rgba(0,0,0,0.2);\r\n    }\r\n\r\n    .error-message.show {\r\n        opacity: 1;\r\n        transform: translateX(0);\r\n    }\r\n\r\n    \/* --- New Styles for the Calculator --- *\/\r\n    .calculator-body {\r\n        padding: 24px;\r\n        display: flex;\r\n        flex-direction: column;\r\n        gap: 20px;\r\n    }\r\n\r\n    .form-group {\r\n        display: flex;\r\n        flex-direction: column;\r\n        gap: 8px;\r\n    }\r\n\r\n    .form-label {\r\n        font-family: 'DM Sans', sans-serif;\r\n        font-weight: 500;\r\n        font-size: 1rem;\r\n        color: #333;\r\n    }\r\n\r\n    .form-input {\r\n        width: 100%;\r\n        padding: 12px 15px;\r\n        border: 1.5px solid #EBEBEB;\r\n        border-radius: 4px;\r\n        font-size: 1rem;\r\n        font-family: 'Courier New', monospace;\r\n        background-color: #fff;\r\n        transition: border-color 0.2s, box-shadow 0.2s;\r\n        box-sizing: border-box; \/* Ensures padding doesn't affect width *\/\r\n    }\r\n\r\n    .form-input:focus {\r\n        outline: none;\r\n        border-color: #05047E;\r\n        box-shadow: 0 0 0 3px rgba(5, 4, 126, 0.1);\r\n    }\r\n\r\n    .form-input::placeholder {\r\n        color: #adb5bd;\r\n    }\r\n\r\n    .button-container {\r\n        display: flex;\r\n        flex-direction: column;\r\n        align-items: center;\r\n        gap: 12px;\r\n        margin-top: 10px;\r\n    }\r\n    \r\n    #results-section {\r\n        background-color: #f9f9f9;\r\n        border-top: 1.5px solid #EBEBEB;\r\n        padding: 20px 24px;\r\n        display: none; \/* Hidden by default *\/\r\n    }\r\n\r\n    #results-section h3 {\r\n        margin: 0 0 16px 0;\r\n        font-family: 'DM Sans', sans-serif;\r\n        font-size: 1.2rem;\r\n        color: #05047E;\r\n        text-align: center;\r\n    }\r\n\r\n    .result-item {\r\n        display: flex;\r\n        justify-content: space-between;\r\n        padding: 12px 0;\r\n        font-size: 1rem;\r\n        border-bottom: 1px solid #EBEBEB;\r\n    }\r\n    \r\n    .result-item:last-child {\r\n        border-bottom: none;\r\n    }\r\n\r\n    .result-label {\r\n        font-weight: 500;\r\n        color: #555;\r\n    }\r\n\r\n    .result-value {\r\n        font-weight: 700;\r\n        color: #000;\r\n        font-family: 'Courier New', monospace;\r\n    }\r\n\r\n    \/* --- Responsive Adjustments --- *\/\r\n    @media (max-width: 768px) {\r\n        .debt-calculator-app {\r\n            padding: 20px 15px 0;\r\n        }\r\n\r\n        .section-header, .calculator-body {\r\n            padding: 16px;\r\n        }\r\n\r\n        #results-section {\r\n            padding: 16px;\r\n        }\r\n    }\r\n<\/style>\r\n\r\n<div class=\"debt-calculator-app\">\r\n    <div class=\"main-content\">\r\n        <div class=\"calculator-section\">\r\n            <div class=\"section-header\">\r\n                <h2>Debt Repayment Calculator<\/h2>\r\n            <\/div>\r\n            <div class=\"calculator-body\">\r\n                <div class=\"form-group\">\r\n                    <label for=\"totalDebt\" class=\"form-label\">Total Debt Amount ($)<\/label>\r\n                    <input type=\"number\" id=\"totalDebt\" class=\"form-input\" placeholder=\"e.g., 10000\" step=\"100\">\r\n                <\/div>\r\n                <div class=\"form-group\">\r\n                    <label for=\"interestRate\" class=\"form-label\">Annual Interest Rate (%)<\/label>\r\n                    <input type=\"number\" id=\"interestRate\" class=\"form-input\" placeholder=\"e.g., 5.5\" step=\"0.1\">\r\n                <\/div>\r\n                <div class=\"form-group\">\r\n                    <label for=\"monthlyPayment\" class=\"form-label\">Monthly Payment ($)<\/label>\r\n                    <input type=\"number\" id=\"monthlyPayment\" class=\"form-input\" placeholder=\"e.g., 250\" step=\"10\">\r\n                <\/div>\r\n                <div class=\"button-container\">\r\n                    <button id=\"calculateBtn\" class=\"format-btn\">Calculate<\/button>\r\n                    <button id=\"resetBtn\" class=\"reset-btn\">Reset Fields<\/button>\r\n                <\/div>\r\n            <\/div>\r\n            <div id=\"results-section\">\r\n                <h3>Results<\/h3>\r\n                <div id=\"results-content\"><\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n    <!-- Error message element, adapted from your .success-message -->\r\n    <div id=\"errorMessage\" class=\"error-message\"><\/div>\r\n<\/div>\r\n\r\n<script>\r\n    document.addEventListener('DOMContentLoaded', function() {\r\n        const totalDebtEl = document.getElementById('totalDebt');\r\n        const interestRateEl = document.getElementById('interestRate');\r\n        const monthlyPaymentEl = document.getElementById('monthlyPayment');\r\n        const calculateBtn = document.getElementById('calculateBtn');\r\n        const resetBtn = document.getElementById('resetBtn');\r\n        const resultsSection = document.getElementById('results-section');\r\n        const resultsContent = document.getElementById('results-content');\r\n        const errorMessageEl = document.getElementById('errorMessage');\r\n\r\n        const showError = (message) => {\r\n            errorMessageEl.textContent = message;\r\n            errorMessageEl.classList.add('show');\r\n            setTimeout(() => {\r\n                errorMessageEl.classList.remove('show');\r\n            }, 3000);\r\n        };\r\n\r\n        const formatCurrency = (amount) => {\r\n            return new Intl.NumberFormat('en-US', {\r\n                style: 'currency',\r\n                currency: 'USD'\r\n            }).format(amount);\r\n        };\r\n\r\n        const calculateDebt = () => {\r\n            const P = parseFloat(totalDebtEl.value); \/\/ Principal\r\n            const annualRate = parseFloat(interestRateEl.value);\r\n            const A = parseFloat(monthlyPaymentEl.value); \/\/ Monthly Payment\r\n\r\n            \/\/ --- Input Validation ---\r\n            if (isNaN(P) || isNaN(annualRate) || isNaN(A)) {\r\n                showError('Please fill in all fields with valid numbers.');\r\n                return;\r\n            }\r\n            if (P <= 0 || annualRate <= 0 || A <= 0) {\r\n                showError('All values must be greater than zero.');\r\n                return;\r\n            }\r\n\r\n            const i = annualRate \/ 100 \/ 12; \/\/ Monthly interest rate\r\n\r\n            if (A <= P * i) {\r\n                showError('Monthly payment is too low. It must cover at least the first month\\'s interest.');\r\n                return;\r\n            }\r\n\r\n            \/\/ --- Calculation using the amortization formula ---\r\n            \/\/ n = -log(1 - (P * i) \/ A) \/ log(1 + i)\r\n            const numberOfMonths = -Math.log(1 - (P * i) \/ A) \/ Math.log(1 + i);\r\n            \r\n            const totalPaid = A * numberOfMonths;\r\n            const totalInterest = totalPaid - P;\r\n            \r\n            const years = Math.floor(numberOfMonths \/ 12);\r\n            const months = Math.ceil(numberOfMonths % 12);\r\n\r\n            displayResults({\r\n                years,\r\n                months,\r\n                totalInterest,\r\n                totalPaid\r\n            });\r\n        };\r\n\r\n        const displayResults = (data) => {\r\n            let payoffTime = '';\r\n            if (data.years > 0) {\r\n                payoffTime += `${data.years} year${data.years > 1 ? 's' : ''}`;\r\n            }\r\n            if (data.months > 0) {\r\n                payoffTime += `${data.years > 0 ? ' and ' : ''}${data.months} month${data.months > 1 ? 's' : ''}`;\r\n            }\r\n             if (!payoffTime) payoffTime = 'Less than a month';\r\n\r\n\r\n            resultsContent.innerHTML = `\r\n                <div class=\"result-item\">\r\n                    <span class=\"result-label\">Payoff Time:<\/span>\r\n                    <span class=\"result-value\">${payoffTime}<\/span>\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <span class=\"result-label\">Total Interest Paid:<\/span>\r\n                    <span class=\"result-value\">${formatCurrency(data.totalInterest)}<\/span>\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <span class=\"result-label\">Total Amount Paid:<\/span>\r\n                    <span class=\"result-value\">${formatCurrency(data.totalPaid)}<\/span>\r\n                <\/div>\r\n            `;\r\n            resultsSection.style.display = 'block';\r\n        };\r\n\r\n        const resetCalculator = () => {\r\n            totalDebtEl.value = '';\r\n            interestRateEl.value = '';\r\n            monthlyPaymentEl.value = '';\r\n            resultsSection.style.display = 'none';\r\n            resultsContent.innerHTML = '';\r\n        };\r\n        \r\n        calculateBtn.addEventListener('click', calculateDebt);\r\n        resetBtn.addEventListener('click', resetCalculator);\r\n    });\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[22],"tags":[21],"class_list":["post-8311169","post","type-post","status-publish","format-standard","hentry","category-tools","tag-html-css-tools"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Debt Calculator<\/title>\n<meta name=\"description\" content=\"Use our free Debt Calculator to understand your debt, compare repayment strategies (snowball vs. avalanche), and create a plan to become debt-free faster.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/elementor.com\/tools\/debt-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Debt Calculator\" \/>\n<meta property=\"og:description\" content=\"Use our free Debt Calculator to understand your debt, compare repayment strategies (snowball vs. avalanche), and create a plan to become debt-free faster.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elementor.com\/tools\/debt-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"Tools\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-19T01:59:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-19T02:00:10+00:00\" \/>\n<meta name=\"author\" content=\"liz@148.red\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"liz@148.red\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/elementor.com\/tools\/debt-calculator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/tools\/debt-calculator\/\"},\"author\":{\"name\":\"liz@148.red\",\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\"},\"headline\":\"Debt Calculator\",\"datePublished\":\"2025-09-19T01:59:45+00:00\",\"dateModified\":\"2025-09-19T02:00:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/elementor.com\/tools\/debt-calculator\/\"},\"wordCount\":4,\"keywords\":[\"Html-Css-tools\"],\"articleSection\":[\"tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/elementor.com\/tools\/debt-calculator\/\",\"url\":\"https:\/\/elementor.com\/tools\/debt-calculator\/\",\"name\":\"Debt Calculator\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/tools\/#website\"},\"datePublished\":\"2025-09-19T01:59:45+00:00\",\"dateModified\":\"2025-09-19T02:00:10+00:00\",\"author\":{\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\"},\"description\":\"Use our free Debt Calculator to understand your debt, compare repayment strategies (snowball vs. avalanche), and create a plan to become debt-free faster.\",\"breadcrumb\":{\"@id\":\"https:\/\/elementor.com\/tools\/debt-calculator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/elementor.com\/tools\/debt-calculator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/elementor.com\/tools\/debt-calculator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/elementor.com\/tools\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Debt Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/elementor.com\/tools\/#website\",\"url\":\"https:\/\/elementor.com\/tools\/\",\"name\":\"Tools\",\"description\":\"Just another Elementor hosted website ;)\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/elementor.com\/tools\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\",\"name\":\"liz@148.red\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g\",\"caption\":\"liz@148.red\"},\"url\":\"https:\/\/elementor.com\/tools\/author\/liz148-red\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Debt Calculator","description":"Use our free Debt Calculator to understand your debt, compare repayment strategies (snowball vs. avalanche), and create a plan to become debt-free faster.","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:\/\/elementor.com\/tools\/debt-calculator\/","og_locale":"en_US","og_type":"article","og_title":"Debt Calculator","og_description":"Use our free Debt Calculator to understand your debt, compare repayment strategies (snowball vs. avalanche), and create a plan to become debt-free faster.","og_url":"https:\/\/elementor.com\/tools\/debt-calculator\/","og_site_name":"Tools","article_published_time":"2025-09-19T01:59:45+00:00","article_modified_time":"2025-09-19T02:00:10+00:00","author":"liz@148.red","twitter_card":"summary_large_image","twitter_misc":{"Written by":"liz@148.red","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/elementor.com\/tools\/debt-calculator\/#article","isPartOf":{"@id":"https:\/\/elementor.com\/tools\/debt-calculator\/"},"author":{"name":"liz@148.red","@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac"},"headline":"Debt Calculator","datePublished":"2025-09-19T01:59:45+00:00","dateModified":"2025-09-19T02:00:10+00:00","mainEntityOfPage":{"@id":"https:\/\/elementor.com\/tools\/debt-calculator\/"},"wordCount":4,"keywords":["Html-Css-tools"],"articleSection":["tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/elementor.com\/tools\/debt-calculator\/","url":"https:\/\/elementor.com\/tools\/debt-calculator\/","name":"Debt Calculator","isPartOf":{"@id":"https:\/\/elementor.com\/tools\/#website"},"datePublished":"2025-09-19T01:59:45+00:00","dateModified":"2025-09-19T02:00:10+00:00","author":{"@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac"},"description":"Use our free Debt Calculator to understand your debt, compare repayment strategies (snowball vs. avalanche), and create a plan to become debt-free faster.","breadcrumb":{"@id":"https:\/\/elementor.com\/tools\/debt-calculator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elementor.com\/tools\/debt-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/elementor.com\/tools\/debt-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elementor.com\/tools\/"},{"@type":"ListItem","position":2,"name":"Debt Calculator"}]},{"@type":"WebSite","@id":"https:\/\/elementor.com\/tools\/#website","url":"https:\/\/elementor.com\/tools\/","name":"Tools","description":"Just another Elementor hosted website ;)","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/elementor.com\/tools\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac","name":"liz@148.red","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g","caption":"liz@148.red"},"url":"https:\/\/elementor.com\/tools\/author\/liz148-red\/"}]}},"_links":{"self":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8311169","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/comments?post=8311169"}],"version-history":[{"count":1,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8311169\/revisions"}],"predecessor-version":[{"id":8311171,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8311169\/revisions\/8311171"}],"wp:attachment":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/media?parent=8311169"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/categories?post=8311169"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/tags?post=8311169"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}