{"id":1710,"date":"2026-01-03T07:00:09","date_gmt":"2026-01-03T07:00:09","guid":{"rendered":"https:\/\/donhit.com\/en\/?p=1710"},"modified":"2026-01-03T07:00:09","modified_gmt":"2026-01-03T07:00:09","slug":"whr-calculator","status":"publish","type":"post","link":"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/","title":{"rendered":"Waist-to-Hip Ratio (WHR) Calculator"},"content":{"rendered":"<button class=\"theme-toggle\" aria-label=\"Toggle dark mode\">\ud83c\udf13<\/button>\r\n    <div class=\"container\">\r\n        <div class=\"calculator\">\r\n            <h2>Waist-to-Hip Ratio Calculator<\/h2>\r\n            \r\n            <div class=\"unit-toggle\">\r\n                <button class=\"unit-btn active\" data-unit=\"cm\">Centimeters<\/button>\r\n                <button class=\"unit-btn\" data-unit=\"in\">Inches<\/button>\r\n            <\/div>\r\n\r\n            <form id=\"whr-form\">\r\n                <div class=\"input-group\">\r\n                    <label for=\"waist\">Waist Circumference<\/label>\r\n                    <input \r\n                        type=\"number\" \r\n                        id=\"waist\" \r\n                        step=\"0.1\" \r\n                        min=\"0\" \r\n                        required \r\n                        aria-describedby=\"waist-error\"\r\n                    >\r\n                    <div id=\"waist-error\" class=\"error\"><\/div>\r\n                <\/div>\r\n\r\n                <div class=\"input-group\">\r\n                    <label for=\"hip\">Hip Circumference<\/label>\r\n                    <input \r\n                        type=\"number\" \r\n                        id=\"hip\" \r\n                        step=\"0.1\" \r\n                        min=\"0\" \r\n                        required\r\n                        aria-describedby=\"hip-error\"\r\n                    >\r\n                    <div id=\"hip-error\" class=\"error\"><\/div>\r\n                <\/div>\r\n\r\n                <button type=\"submit\" class=\"calculate-btn\">Calculate WHR<\/button>\r\n            <\/form>\r\n\r\n            <div class=\"result\" id=\"result\">\r\n                <!-- Results will be inserted here by JavaScript -->\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n        \/\/ DOM Elements\r\n        const form = document.getElementById('whr-form');\r\n        const waistInput = document.getElementById('waist');\r\n        const hipInput = document.getElementById('hip');\r\n        const resultDiv = document.getElementById('result');\r\n        const unitButtons = document.querySelectorAll('.unit-btn');\r\n        const themeToggle = document.querySelector('.theme-toggle');\r\n\r\n        \/\/ Current unit state\r\n        let currentUnit = 'cm';\r\n\r\n        \/\/ WHR Categories\r\n        const whrCategories = {\r\n            male: {\r\n                low: 0.9,\r\n                moderate: 0.95,\r\n                high: 1.0\r\n            },\r\n            female: {\r\n                low: 0.8,\r\n                moderate: 0.85,\r\n                high: 0.9\r\n            }\r\n        };\r\n\r\n        \/\/ Unit toggle handler\r\n        unitButtons.forEach(button => {\r\n            button.addEventListener('click', (e) => {\r\n                const newUnit = e.target.dataset.unit;\r\n                if (newUnit === currentUnit) return;\r\n\r\n                \/\/ Update active state\r\n                unitButtons.forEach(btn => btn.classList.remove('active'));\r\n                e.target.classList.add('active');\r\n\r\n                \/\/ Convert values\r\n                if (waistInput.value) {\r\n                    waistInput.value = convertMeasurement(waistInput.value, currentUnit, newUnit);\r\n                }\r\n                if (hipInput.value) {\r\n                    hipInput.value = convertMeasurement(hipInput.value, currentUnit, newUnit);\r\n                }\r\n\r\n                currentUnit = newUnit;\r\n            });\r\n        });\r\n\r\n        \/\/ Theme toggle handler\r\n        themeToggle.addEventListener('click', () => {\r\n            const currentTheme = document.documentElement.getAttribute('data-theme');\r\n            const newTheme = currentTheme === 'dark' ? 'light' : 'dark';\r\n            document.documentElement.setAttribute('data-theme', newTheme);\r\n            localStorage.setItem('theme', newTheme);\r\n        });\r\n\r\n        \/\/ Form submission handler\r\n        form.addEventListener('submit', (e) => {\r\n            e.preventDefault();\r\n            \r\n            \/\/ Clear previous errors\r\n            clearErrors();\r\n\r\n            \/\/ Validate inputs\r\n            if (!validateInputs()) return;\r\n\r\n            const waist = parseFloat(waistInput.value);\r\n            const hip = parseFloat(hipInput.value);\r\n            \r\n            \/\/ Calculate WHR\r\n            const whr = calculateWHR(waist, hip);\r\n            \r\n            \/\/ Display result\r\n            displayResult(whr);\r\n        });\r\n\r\n        \/\/ Input validation\r\n        function validateInputs() {\r\n            let isValid = true;\r\n            \r\n            if (waistInput.value <= 0) {\r\n                showError('waist-error', 'Please enter a valid waist measurement');\r\n                isValid = false;\r\n            }\r\n            \r\n            if (hipInput.value <= 0) {\r\n                showError('hip-error', 'Please enter a valid hip measurement');\r\n                isValid = false;\r\n            }\r\n\r\n            if (parseFloat(waistInput.value) >= parseFloat(hipInput.value)) {\r\n                showError('waist-error', 'Waist measurement should be less than hip measurement');\r\n                isValid = false;\r\n            }\r\n\r\n            return isValid;\r\n        }\r\n\r\n        \/\/ Error handling\r\n        function showError(elementId, message) {\r\n            const errorElement = document.getElementById(elementId);\r\n            errorElement.textContent = message;\r\n            errorElement.style.display = 'block';\r\n        }\r\n\r\n        function clearErrors() {\r\n            document.querySelectorAll('.error').forEach(error => {\r\n                error.style.display = 'none';\r\n            });\r\n        }\r\n\r\n        \/\/ WHR Calculation\r\n        function calculateWHR(waist, hip) {\r\n            return (waist \/ hip).toFixed(2);\r\n        }\r\n\r\n        \/\/ Unit conversion\r\n        function convertMeasurement(value, from, to) {\r\n            if (!value) return '';\r\n            value = parseFloat(value);\r\n            if (from === 'cm' && to === 'in') {\r\n                return (value \/ 2.54).toFixed(1);\r\n            } else if (from === 'in' && to === 'cm') {\r\n                return (value * 2.54).toFixed(1);\r\n            }\r\n            return value;\r\n        }\r\n\r\n        \/\/ Result display\r\n        function displayResult(whr) {\r\n            const healthRisk = determineHealthRisk(whr);\r\n            \r\n            resultDiv.innerHTML = `\r\n                <h3>Your Waist-to-Hip Ratio: ${whr}<\/h3>\r\n                <p style=\"margin-top: 1rem;\">Health Risk Category: <strong>${healthRisk}<\/strong><\/p>\r\n                <p style=\"margin-top: 0.5rem;\">${getHealthAdvice(healthRisk)}<\/p>\r\n            `;\r\n            \r\n            resultDiv.classList.add('show');\r\n        }\r\n\r\n        \/\/ Health risk determination\r\n        function determineHealthRisk(whr) {\r\n            whr = parseFloat(whr);\r\n            \/\/ Using female categories as default for this example\r\n            if (whr < 0.80) {\r\n                return \"Low Risk\";\r\n            } else if (whr < 0.85) {\r\n                return \"Moderate Risk\";\r\n            } else {\r\n                return \"High Risk\";\r\n            }\r\n        }\r\n\r\n        \/\/ Health advice generation\r\n        function getHealthAdvice(riskLevel) {\r\n            const advice = {\r\n                \"Low Risk\": \"Your WHR indicates a healthy distribution of body fat. Maintain your current lifestyle with regular exercise and a balanced diet.\",\r\n                \"Moderate Risk\": \"Consider increasing physical activity and maintaining a balanced diet to reduce your health risks.\",\r\n                \"High Risk\": \"It's recommended to consult with a healthcare provider about strategies to reduce your WHR through diet and exercise.\"\r\n            };\r\n            return advice[riskLevel];\r\n        }\r\n\r\n        \/\/ Initialize theme from localStorage\r\n        const savedTheme = localStorage.getItem('theme') || 'light';\r\n        document.documentElement.setAttribute('data-theme', savedTheme);\r\n    <\/script>You ever look in the mirror and think, \u201cThis doesn\u2019t match what the scale says\u201d? Yeah\u2014been there. What I\u2019ve found over the years (after way too many crash diets and \u201cmiracle\u201d fitness plans) is that the number on the scale is just noise unless you know how your body is actually storing fat.<\/p>\n<p>That\u2019s where the WHR calculator tool comes in. It\u2019s not some flashy trend or overly technical health metric. It\u2019s simple: measure your waist circumference, then your hip circumference, divide one by the other\u2014and suddenly, you\u2019ve got a far better idea of your health risks than your BMI could ever give you.<\/p>\n<h2>WHR vs. BMI: Which One Actually Tells You More?<\/h2>\n<p>You know, after two decades of navigating systems\u2014some more rigid than others\u2014I\u2019ve learned that numbers can lie, or at least, mislead. BMI\u2019s a prime example. It\u2019s neat, it\u2019s tidy, and it fits nicely on a form. But the truth? I\u2019ve seen people with \u201cnormal\u201d BMIs walking around with serious health issues, while others flagged as \u201coverweight\u201d were metabolically solid. That\u2019s where WHR (Waist-to-Hip Ratio) quietly steps in and tells a more honest story.<\/p>\n<p>WHR doesn\u2019t just count mass\u2014it studies shape. It shows how your weight is distributed, and in the real world, that matters more than most charts admit. Carrying extra around your midsection\u2014what some call central obesity\u2014isn\u2019t just about appearance. That fat tends to creep around vital organs. I\u2019ve watched folks ignore it because their BMI looked \u201cfine,\u201d and let me tell you, that false reassurance isn\u2019t harmless.<\/p>\n<p>Now, here\u2019s what I\u2019ve learned over the years: BMI works for spreadsheets, WHR works for real people. It\u2019s especially helpful when you&#8217;re sizing up risk without the noise of muscle mass or bone structure clouding the read. People come in all shapes\u2014WHR respects that.<\/p>\n<p>So yeah, between the two? WHR\u2019s the one I trust. Always has my attention when it comes to real health markers.<\/p>\n<h2>How to Calculate Your WHR (Waist-to-Hip Ratio)<\/h2>\n<p>Alright, here\u2019s the straight talk\u2014calculating your waist-to-hip ratio (WHR) isn\u2019t rocket science, but getting it wrong? Yeah, that\u2019s easier than people think. I\u2019ve been doing this kind of body comp stuff since before smartphone apps could fake it for you, and trust me, the tape measure never lies\u2014unless you do it wrong.<\/p>\n<h4>Step-by-step, the way I\u2019ve done it for years:<\/h4>\n<ul>\n<li>First, grab a soft tape measure. Not the metal kind. You want the kind tailors use. Keep one in your drawer\u2014mine\u2019s been with me since 2003.<\/li>\n<li>Stand relaxed, feet shoulder-width apart. No sucking in, no weird postures. You want your real numbers, not your Instagram version.<\/li>\n<li>Wrap the tape around your waist, just above the belly button\u2014find the narrowest part. Keep it snug but not cutting into your skin.<\/li>\n<li>Now measure the hips. Go for the widest part of your glutes. (Yeah, that\u2019s your butt.) It&#8217;s where the curve sticks out most.<\/li>\n<li>Then take that waist number and divide it by your hip number.\n<ul>\n<li>So, let\u2019s say:<br \/>\n\u2192 Waist = 32 inches<br \/>\n\u2192 Hips = 42 inches<br \/>\n\u2192 WHR = 32 \u00f7 42 = 0.76<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>That number\u2014the ratio\u2014is what matters, not the raw measurements. You\u2019re looking at how your fat is distributed, not how &#8220;small&#8221; you are.<\/p>\n<blockquote><p>Quick note: I\u2019ve seen people mess this up by using inches for waist and centimeters for hips. That\u2019ll throw your whole ratio sideways. Keep it all one unit\u2014personally, I stick with inches. Feels more real to me.<\/p><\/blockquote>\n<p>One last thing\u2014don\u2019t just do it once and walk away. Do at least two passes, maybe even three. Morning is usually best, before meals, and no bulky clothes (I\u2019ve done it over sweatpants before\u2014bad idea).<\/p>\n<p>This isn\u2019t about being obsessive\u2014it\u2019s about knowing your numbers. Over the years, I\u2019ve learned that WHR tells you what the mirror doesn\u2019t. It\u2019s not about vanity; it\u2019s about awareness.<\/p>\n<h2>Understanding WHR Health Risk Categories: What Your Ratio Really Means<\/h2>\n<p>You know, over the years I\u2019ve seen a lot of folks focus so much on weight or BMI that they completely miss the point when it comes to waist-to-hip ratio (WHR). Truth is, WHR risk categories are often a much better indicator of what\u2019s actually going on inside your body\u2014especially when it comes to things like stroke risk, metabolic syndrome, and long-term cardiovascular issues.<\/p>\n<p>Here\u2019s how it breaks down in plain terms:<br \/>\nFor men, a WHR above 0.90 tends to signal a high-risk range. For women, that number is 0.85. Anything tighter than that is generally considered in the healthy ratio zone. But once it starts creeping above those thresholds, you\u2019re talking about a higher likelihood of abdominal fat, and not the kind that just hangs around quietly\u2014this stuff\u2019s metabolically active. It throws off your hormones, stresses your heart, and starts messing with your insulin resistance.<\/p>\n<p>I\u2019ve come across people who look fit on the outside\u2014lean arms, decent weight\u2014but once they measure their WHR, the numbers tell another story. That\u2019s usually where the real trouble starts. You can\u2019t always see the risk.<\/p>\n<p>What I\u2019ve learned? Pay attention to this ratio early. It\u2019s a quiet metric, but it\u2019s loud where it counts\u2014in predicting long-term health problems. Doesn\u2019t matter what shape your body is; what matters is where the fat sits. And when it hangs around your middle, well\u2026 you\u2019re rolling the dice with mortality risk whether you realize it or not.<\/p>\n<p>So yeah, it\u2019s just a number. But it\u2019s one that can help you change the ending.<\/p>\n<h2>What Is Waist-to-Hip Ratio (WHR)?<\/h2>\n<p>You want to understand the shape of your health? Start with waist-to-hip ratio. I\u2019ve been around long enough\u2014two decades, give or take\u2014to see how the numbers can lie. People obsess over BMI because it\u2019s everywhere, but truth is, WHR tells you what\u2019s really going on under the hood.<\/p>\n<p>Here\u2019s how it works: measure your waist, measure your hips, then divide the waist by the hips. That\u2019s it. That one number can say more about your metabolic risk than a scale ever will. I\u2019ve known people with so-called \u201chealthy\u201d weights who still carried dangerous fat around the midsection. You wouldn\u2019t know it unless you looked at their WHR.<\/p>\n<p>Back in the early 2000s, I started seeing it used more in clinics and quietly in labs\u2014anthropometry nerds and health pros had been using it for years. The WHO even laid down some lines in the sand: over 0.90 for men or 0.85 for women? That\u2019s a red flag. Not to be dramatic, but that kind of fat distribution can kill you slow.<\/p>\n<p>What I always tell people is: don\u2019t just watch the number on the scale\u2014watch where it lands. Belly fat\u2019s not just cosmetic; it\u2019s chemical. That\u2019s the piece most people miss.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You ever look in the mirror and think, \u201cThis doesn\u2019t match what the scale says\u201d? Yeah\u2014been there. What I\u2019ve found over the years (after way too many crash diets and \u201cmiracle\u201d fitness plans) is that the number on the scale is just noise unless you know how your body is actually storing fat. That\u2019s where [&#8230;]\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[184],"tags":[],"class_list":["post-1710","post","type-post","status-publish","format-standard","hentry","category-calculator"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Waist-to-Hip Ratio (WHR) Calculator - DonHit<\/title>\n<meta name=\"description\" content=\"The waist-to-hip ratio (WHR) is a key metric that reflects fat distribution in the body, strongly linked to health risks such as heart disease, diabetes, and obesity.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Waist-to-Hip Ratio (WHR) Calculator - DonHit\" \/>\n<meta property=\"og:description\" content=\"The waist-to-hip ratio (WHR) is a key metric that reflects fat distribution in the body, strongly linked to health risks such as heart disease, diabetes, and obesity.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"DonHit - World of Tools\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-03T07:00:09+00:00\" \/>\n<meta name=\"author\" content=\"DonHit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DonHit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Waist-to-Hip Ratio (WHR) Calculator - DonHit","description":"The waist-to-hip ratio (WHR) is a key metric that reflects fat distribution in the body, strongly linked to health risks such as heart disease, diabetes, and obesity.","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:\/\/donhit.com\/en\/calculator\/whr-calculator\/","og_locale":"en_US","og_type":"article","og_title":"Waist-to-Hip Ratio (WHR) Calculator - DonHit","og_description":"The waist-to-hip ratio (WHR) is a key metric that reflects fat distribution in the body, strongly linked to health risks such as heart disease, diabetes, and obesity.","og_url":"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/","og_site_name":"DonHit - World of Tools","article_published_time":"2026-01-03T07:00:09+00:00","author":"DonHit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DonHit","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/#article","isPartOf":{"@id":"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/"},"author":{"name":"DonHit","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"headline":"Waist-to-Hip Ratio (WHR) Calculator","datePublished":"2026-01-03T07:00:09+00:00","mainEntityOfPage":{"@id":"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/"},"wordCount":1187,"commentCount":0,"publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"articleSection":["Calculator"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/donhit.com\/en\/calculator\/whr-calculator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/","url":"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/","name":"Waist-to-Hip Ratio (WHR) Calculator - DonHit","isPartOf":{"@id":"https:\/\/donhit.com\/en\/#website"},"datePublished":"2026-01-03T07:00:09+00:00","description":"The waist-to-hip ratio (WHR) is a key metric that reflects fat distribution in the body, strongly linked to health risks such as heart disease, diabetes, and obesity.","breadcrumb":{"@id":"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/donhit.com\/en\/calculator\/whr-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/donhit.com\/en\/calculator\/whr-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Trang ch\u1ee7","item":"https:\/\/donhit.com\/en\/"},{"@type":"ListItem","position":2,"name":"Calculator","item":"https:\/\/donhit.com\/en\/category\/calculator\/"},{"@type":"ListItem","position":3,"name":"Waist-to-Hip Ratio (WHR) Calculator"}]},{"@type":"WebSite","@id":"https:\/\/donhit.com\/en\/#website","url":"https:\/\/donhit.com\/en\/","name":"DonHit - World of tools","description":"","publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/donhit.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148","name":"DonHit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","contentUrl":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","width":400,"height":267,"caption":"DonHit"},"logo":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/"},"description":"DonHit is a website designed to provide useful tools for everyone. Its primary goal is to support and empower the community. All the tools available on the site are completely free to use.","sameAs":["https:\/\/donhit.com\/en"],"url":"https:\/\/donhit.com\/en\/author\/admin_don\/"}]}},"_links":{"self":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1710","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/comments?post=1710"}],"version-history":[{"count":8,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1710\/revisions"}],"predecessor-version":[{"id":3524,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1710\/revisions\/3524"}],"wp:attachment":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/media?parent=1710"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/categories?post=1710"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/tags?post=1710"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}