{"id":1290,"date":"2026-05-17T07:00:05","date_gmt":"2026-05-17T07:00:05","guid":{"rendered":"https:\/\/donhit.com\/en\/?p=1290"},"modified":"2026-05-17T07:00:05","modified_gmt":"2026-05-17T07:00:05","slug":"butter","status":"publish","type":"post","link":"https:\/\/donhit.com\/en\/convert\/butter\/","title":{"rendered":"Butter Unit Converter"},"content":{"rendered":"<div class=\"container123\">\r\n        <h2 class=\"title\">Butter Converter<\/h2>\r\n        \r\n        <div class=\"input-wrapper\">\r\n            <input type=\"number\" class=\"input-field\" id=\"fromAmount\" placeholder=\"Enter amount\">\r\n            <select class=\"unit-select\" id=\"fromUnit\">\r\n                <option value=\"cups\">Cups<\/option>\r\n                <option value=\"sticks\">Sticks<\/option>\r\n                <option value=\"tablespoons\">Tablespoons<\/option>\r\n                <option value=\"grams\">Grams<\/option>\r\n                <option value=\"pounds\">Pounds<\/option>\r\n                <option value=\"ounces\">Ounces<\/option>\r\n            <\/select>\r\n        <\/div>\r\n\r\n        <button class=\"swap-btn\" id=\"swapBtn\"><\/button>\r\n\r\n        <div class=\"input-wrapper\">\r\n            <select class=\"unit-select\" id=\"toUnit\">\r\n                <option value=\"sticks\">Sticks<\/option>\r\n                <option value=\"cups\">Cups<\/option>\r\n                <option value=\"tablespoons\">Tablespoons<\/option>\r\n                <option value=\"grams\">Grams<\/option>\r\n                <option value=\"pounds\">Pounds<\/option>\r\n                <option value=\"ounces\">Ounces<\/option>\r\n            <\/select>\r\n        <\/div>\r\n\r\n        <div class=\"result\" id=\"result\">\r\n            Enter a value to convert\r\n        <\/div>\r\n\r\n        <div class=\"loading\">\r\n            <div><\/div>\r\n            <div><\/div>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n        const conversions = {\r\n            cups: {\r\n                sticks: 2,\r\n                tablespoons: 16,\r\n                grams: 227,\r\n                pounds: 0.5,\r\n                ounces: 8\r\n            },\r\n            sticks: {\r\n                cups: 0.5,\r\n                tablespoons: 8,\r\n                grams: 113.5,\r\n                pounds: 0.25,\r\n                ounces: 4\r\n            },\r\n            tablespoons: {\r\n                cups: 0.0625,\r\n                sticks: 0.125,\r\n                grams: 14.18,\r\n                pounds: 0.03125,\r\n                ounces: 0.5\r\n            },\r\n            grams: {\r\n                cups: 0.004405286,\r\n                sticks: 0.008810573,\r\n                tablespoons: 0.0705,\r\n                pounds: 0.002205,\r\n                ounces: 0.035274\r\n            },\r\n            pounds: {\r\n                cups: 2,\r\n                sticks: 4,\r\n                tablespoons: 32,\r\n                grams: 453.592,\r\n                ounces: 16\r\n            },\r\n            ounces: {\r\n                cups: 0.125,\r\n                sticks: 0.25,\r\n                tablespoons: 2,\r\n                grams: 28.3495,\r\n                pounds: 0.0625\r\n            }\r\n        };\r\n\r\n        const fromAmount = document.getElementById('fromAmount');\r\n        const fromUnit = document.getElementById('fromUnit');\r\n        const toUnit = document.getElementById('toUnit');\r\n        const result = document.getElementById('result');\r\n        const swapBtn = document.getElementById('swapBtn');\r\n        const loading = document.querySelector('.loading');\r\n\r\n        function convert() {\r\n            const amount = parseFloat(fromAmount.value);\r\n            if (isNaN(amount)) {\r\n                result.textContent = 'Please enter a valid number';\r\n                result.classList.remove('active');\r\n                return;\r\n            }\r\n\r\n            const from = fromUnit.value;\r\n            const to = toUnit.value;\r\n\r\n            if (from === to) {\r\n                result.textContent = `${amount} ${from}`;\r\n                result.classList.add('active');\r\n                return;\r\n            }\r\n\r\n            \/\/ Show loading animation\r\n            loading.classList.add('active');\r\n            result.style.opacity = '0';\r\n\r\n            setTimeout(() => {\r\n                let converted;\r\n                if (conversions[from][to]) {\r\n                    converted = amount * conversions[from][to];\r\n                } else {\r\n                    \/\/ Convert through grams as intermediate\r\n                    const toGrams = amount * conversions[from]['grams'];\r\n                    converted = toGrams * conversions['grams'][to];\r\n                }\r\n\r\n                \/\/ Format the result\r\n                let formattedResult;\r\n                if (converted < 0.01) {\r\n                    formattedResult = converted.toExponential(2);\r\n                } else if (converted < 1) {\r\n                    formattedResult = converted.toFixed(3);\r\n                } else {\r\n                    formattedResult = converted.toFixed(2);\r\n                }\r\n\r\n                result.textContent = `${amount} ${from} = ${formattedResult} ${to}`;\r\n                result.classList.add('active');\r\n                \r\n                \/\/ Hide loading animation\r\n                loading.classList.remove('active');\r\n                result.style.opacity = '1';\r\n            }, 500); \/\/ Simulate calculation time\r\n        }\r\n\r\n        function swapUnits() {\r\n            const temp = fromUnit.value;\r\n            fromUnit.value = toUnit.value;\r\n            toUnit.value = temp;\r\n            if (fromAmount.value) convert();\r\n        }\r\n\r\n        fromAmount.addEventListener('input', convert);\r\n        fromUnit.addEventListener('change', convert);\r\n        toUnit.addEventListener('change', convert);\r\n        swapBtn.addEventListener('click', swapUnits);\r\n\r\n        \/\/ Add input validation\r\n        fromAmount.addEventListener('keypress', (e) => {\r\n            if (!\/[\\d.]\/.test(e.key)) {\r\n                e.preventDefault();\r\n            }\r\n        });\r\n    <\/script>Yeah, me too. Last Thanksgiving, I was elbow-deep in flour, ready to recreate my aunt&#8217;s famous Danish butter cookies when I hit the wall: 250 grams of butter. Not sticks. Not tablespoons. Not even ounces. Just grams. And, like a true American home baker, I stood there staring at the fridge, thinking, \u201cOkay\u2026 but how many sticks is that?\u201d<\/p>\n<p>Converting butter between units shouldn\u2019t be a full-blown math class. But let\u2019s face it\u2014between cups, sticks, tablespoons, ounces, and grams, your average American kitchen feels like it\u2019s stuck between two worlds: the Imperial system and the Metric system.<\/p>\n<p>If you\u2019ve ever looked at a recipe from the UK or Australia and thought, \u201cWait, how do I convert butter grams to tablespoons?\u201d\u2014you\u2019re in the right place.<\/p>\n<p>This guide is your all-in-one butter measurement converter: practical, printable, and 100% tested by someone (me) who\u2019s had to figure this stuff out mid-bake more times than I care to admit.<\/p>\n<h2>Tools to Help You Convert Butter Accurately<\/h2>\n<p>You don\u2019t need to do the math in your head (unless you like that kind of chaos).<\/p>\n<h3>Tools I Actually Use:<\/h3>\n<ol>\n<li>Kitchen Scale \u2013 Get one with grams and ounces. Mine\u2019s from OXO.<\/li>\n<li>Butter Wrapper Markings \u2013 Most US sticks show tablespoon lines.<\/li>\n<li>Online butter unit converter \u2013 Just search \u201cbutter converter tool.\u201d<\/li>\n<li>Mobile apps \u2013 Kitchen Stories and Paprika have built-in converters.<\/li>\n<li>Measuring cups \u2013 Especially helpful for softened butter.<\/li>\n<\/ol>\n<blockquote><p>I keep a tiny calculator near my spice rack. It\u2019s old-school, but hey, it works.<\/p><\/blockquote>\n<h2>FAQ: Common Butter Conversion Questions<\/h2>\n<p>Q: How many sticks are in a cup?<br \/>\nA: 2 sticks = 1 cup = 227 grams<\/p>\n<p>Q: Can I substitute oil for butter?<br \/>\nA: Sometimes. Try \u00be cup of oil for every 1 cup of butter\u2014but it changes flavor and texture.<\/p>\n<p>Q: Is European butter different from American butter?<br \/>\nA: Yep. It usually has a higher fat content (~82%) vs American butter (~80%), which can make pastries richer and flakier.<\/p>\n<p>Q: How much is 100g of butter in sticks?<br \/>\nA: Just under 1 stick. (1 stick = 113g)<\/p>\n<p>Q: How do I measure butter without the wrapper?<br \/>\nA: Use a tablespoon or press softened butter into a measuring cup.<\/p>\n<h2>Final Takeaway: Master Butter. Save Your Bake.<\/h2>\n<p>Look\u2014if you\u2019re cooking or baking with any kind of frequency, you\u2019ll run into a butter conversion snag sooner or later.<\/p>\n<p>But now? You\u2019ve got the tools, the cheat sheets, and a few of my hard-earned lessons (ahem, banana soup bread) to keep your recipes on point.<\/p>\n<p>So next time you\u2019re staring down a \u201c250g of butter\u201d line in a recipe? You\u2019ll smile, convert like a pro, and get back to baking.<\/p>\n<blockquote><p>Pro tip: Print out that conversion chart. Seriously. Stick it on your fridge. You\u2019ll thank yourself every single holiday season.<\/p><\/blockquote>\n<h2>Why Butter Conversion Matters in American Kitchens<\/h2>\n<p>Butter isn&#8217;t just an ingredient\u2014it\u2019s chemistry.<\/p>\n<p>Especially in baking, precision matters. Get it slightly wrong and your cookies go from chewy to crumbly faster than you can say \u201chalf a stick.\u201d<\/p>\n<p>I\u2019ve had muffins sink, pie crusts collapse, and once? I made a banana bread that turned into banana soup. All because I eyeballed the butter.<\/p>\n<p>Here\u2019s why butter measurement matters:<\/p>\n<ul>\n<li>Baking is science \u2014 The fat-to-flour ratio can make or break a recipe.<\/li>\n<li>International recipes use grams \u2014 You\u2019ll miss out if you only know sticks.<\/li>\n<li>Butter behaves differently based on quantity \u2014 Too much and it greases out, too little and everything\u2019s dry.<\/li>\n<\/ul>\n<p>And if you\u2019re swapping between American and European recipes, it gets even more complicated thanks to different butterfat percentages (European butter often has more fat, which can change your outcome).<\/p>\n<blockquote><p>So yeah\u2014if you want consistent results in the kitchen, accurate butter conversions aren\u2019t optional.<\/p><\/blockquote>\n<h2>Butter Packaging in the US: A Hidden Conversion Tool<\/h2>\n<p>Ever noticed how US butter sticks are geniusly designed?<\/p>\n<p>Brands like Land O\u2019Lakes include:<\/p>\n<ul>\n<li>Tablespoon markings<\/li>\n<li>\u00bc cup segments<\/li>\n<li>Clear lines to cut (no ruler needed)<\/li>\n<\/ul>\n<p>This is one of those \u201cwhy don\u2019t more countries do this?\u201d moments. Honestly, it\u2019s one of the few things American packaging got right.<\/p>\n<p>And the best part? Every stick is uniform\u20144 oz, 8 tbsp, \u00bd cup, 113 grams. So once you memorize one, you\u2019ve basically unlocked butter conversion for life.<\/p>\n<h2>Universal Butter Conversion Chart (US &amp; Metric)<\/h2>\n<p>Now this is the good stuff. Bookmark this, print it, tape it inside your kitchen cabinet\u2014whatever works.<\/p>\n<h3>Butter Conversion Table<\/h3>\n<table>\n<thead>\n<tr>\n<th>Sticks<\/th>\n<th>Cups<\/th>\n<th>Tbsp<\/th>\n<th>Ounces<\/th>\n<th>Grams<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>\u00bc<\/td>\n<td>\u215b<\/td>\n<td>2<\/td>\n<td>1<\/td>\n<td>28<\/td>\n<\/tr>\n<tr>\n<td>\u00bd<\/td>\n<td>\u00bc<\/td>\n<td>4<\/td>\n<td>2<\/td>\n<td>57<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>\u00bd<\/td>\n<td>8<\/td>\n<td>4<\/td>\n<td>113<\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>1<\/td>\n<td>16<\/td>\n<td>8<\/td>\n<td>227<\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>2<\/td>\n<td>32<\/td>\n<td>16<\/td>\n<td>454<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<blockquote><p>Want a printable version? I keep mine in a plastic sheet protector on the fridge. Super handy.<\/p><\/blockquote>\n<h2>Quick Conversions for Holiday Recipes &amp; Events<\/h2>\n<p>Holiday recipes have a way of throwing curveballs. You&#8217;ll find butter amounts in cups, grams, or something like \u201c1\u00bd sticks\u201d, and it\u2019s always when you&#8217;re already knee-deep in prep.<\/p>\n<p>Here\u2019s a quick cheat sheet for festive cooking:<\/p>\n<ul>\n<li>Thanksgiving pies \u2013 Usually 1\u20131\u00bc cups of butter = 2\u20132\u00bd sticks<\/li>\n<li>Christmas cookies \u2013 Often \u00bd cup = 1 stick per batch<\/li>\n<li>BBQ corn on the cob \u2013 1 tbsp per ear (multiply by guests)<\/li>\n<\/ul>\n<blockquote><p>What I do: Write conversions on recipe printouts. Saves me every time.<\/p><\/blockquote>\n<h2>Tips for Measuring Butter Without a Scale<\/h2>\n<p>No scale? No problem. You\u2019ve got options.<\/p>\n<h3>Try these hacks:<\/h3>\n<ul>\n<li>Use the wrapper lines \u2013 Cut along the tablespoon marks.<\/li>\n<li>Softened butter trick \u2013 Press into a measuring cup to get exact volume.<\/li>\n<li>Tablespoon method \u2013 1 stick = 8 tbsp. Use a clean spoon, level it out.<\/li>\n<\/ul>\n<blockquote><p>Side note: Softened butter is way easier to measure accurately. Just don\u2019t melt it unless your recipe calls for it.<\/p><\/blockquote>\n<h2>Metric Butter Units: Grams and Milliliters Explained<\/h2>\n<p>If you&#8217;re cooking from European or Aussie recipes, butter is always measured in grams. That\u2019s weight, not volume. And this is where it trips people up.<\/p>\n<p>You might think, \u201cI\u2019ll just pour 250g of melted butter into a cup.\u201d Nope. It doesn\u2019t work like that.<\/p>\n<p>Here\u2019s what you need to know:<\/p>\n<ul>\n<li>1 stick of butter = 113 grams<\/li>\n<li>1 tablespoon of butter = 14 grams<\/li>\n<li>1 cup of butter = 227 grams<\/li>\n<\/ul>\n<p>And forget about milliliters unless you\u2019re dealing with melted butter\u2014then you\u2019re measuring volume, not weight. Even then, it\u2019s easier to just convert to grams if you\u2019ve got a kitchen scale.<\/p>\n<blockquote><p>What I\u2019ve found is: if you\u2019re serious about baking, just get a digital kitchen scale. The one I\u2019ve had for 3+ years cost $15 and has saved me from so many recipe disasters.<\/p><\/blockquote>\n<h2>Common US Butter Units: Sticks, Tablespoons, Cups, and Ounces<\/h2>\n<p>Alright, let\u2019s break it down\u2014how butter is actually measured in most American kitchens.<\/p>\n<h3>Here\u2019s the basic US butter breakdown:<\/h3>\n<table>\n<thead>\n<tr>\n<th>Unit<\/th>\n<th>Equivalent<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1 stick<\/td>\n<td>\u00bd cup = 8 tablespoons = 4 ounces<\/td>\n<\/tr>\n<tr>\n<td>\u00bd stick<\/td>\n<td>\u00bc cup = 4 tablespoons = 2 ounces<\/td>\n<\/tr>\n<tr>\n<td>1 cup<\/td>\n<td>2 sticks = 16 tablespoons = 8 ounces<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<blockquote><p>Personal tip: Most US butter brands (like Land O\u2019Lakes or Challenge Butter) come pre-marked with tablespoons. Just cut along the paper line\u2014no scale needed.<\/p><\/blockquote>\n<p>But there\u2019s a catch.<\/p>\n<p>Some recipes still list ounces, and unless you\u2019re weighing it, you\u2019ve gotta convert volume to weight or vice versa. And that brings us to the big question\u2026<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Yeah, me too. Last Thanksgiving, I was elbow-deep in flour, ready to recreate my aunt&#8217;s famous Danish butter cookies when I hit the wall: 250 grams of butter. Not sticks. Not tablespoons. Not even ounces. Just grams. And, like a true American home baker, I stood there staring at the fridge, thinking, \u201cOkay\u2026 but how [&#8230;]\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1290","post","type-post","status-publish","format-standard","hentry","category-convert"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Butter Unit Converter - DonHit<\/title>\n<meta name=\"description\" content=\"Understanding butter conversion is essential for accurate cooking and baking, especially when working with recipes from around the world.\" \/>\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\/convert\/butter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Butter Unit Converter - DonHit\" \/>\n<meta property=\"og:description\" content=\"Understanding butter conversion is essential for accurate cooking and baking, especially when working with recipes from around the world.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/donhit.com\/en\/convert\/butter\/\" \/>\n<meta property=\"og:site_name\" content=\"DonHit - World of Tools\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-17T07:00:05+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":"Butter Unit Converter - DonHit","description":"Understanding butter conversion is essential for accurate cooking and baking, especially when working with recipes from around the world.","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\/convert\/butter\/","og_locale":"en_US","og_type":"article","og_title":"Butter Unit Converter - DonHit","og_description":"Understanding butter conversion is essential for accurate cooking and baking, especially when working with recipes from around the world.","og_url":"https:\/\/donhit.com\/en\/convert\/butter\/","og_site_name":"DonHit - World of Tools","article_published_time":"2026-05-17T07:00:05+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\/convert\/butter\/#article","isPartOf":{"@id":"https:\/\/donhit.com\/en\/convert\/butter\/"},"author":{"name":"DonHit","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"headline":"Butter Unit Converter","datePublished":"2026-05-17T07:00:05+00:00","mainEntityOfPage":{"@id":"https:\/\/donhit.com\/en\/convert\/butter\/"},"wordCount":1168,"commentCount":0,"publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"articleSection":["Conversion Calculators"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/donhit.com\/en\/convert\/butter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/donhit.com\/en\/convert\/butter\/","url":"https:\/\/donhit.com\/en\/convert\/butter\/","name":"Butter Unit Converter - DonHit","isPartOf":{"@id":"https:\/\/donhit.com\/en\/#website"},"datePublished":"2026-05-17T07:00:05+00:00","description":"Understanding butter conversion is essential for accurate cooking and baking, especially when working with recipes from around the world.","breadcrumb":{"@id":"https:\/\/donhit.com\/en\/convert\/butter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/donhit.com\/en\/convert\/butter\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/donhit.com\/en\/convert\/butter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Trang ch\u1ee7","item":"https:\/\/donhit.com\/en\/"},{"@type":"ListItem","position":2,"name":"Conversion Calculators","item":"https:\/\/donhit.com\/en\/category\/convert\/"},{"@type":"ListItem","position":3,"name":"Butter Unit Converter"}]},{"@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\/1290","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=1290"}],"version-history":[{"count":13,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1290\/revisions"}],"predecessor-version":[{"id":3846,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1290\/revisions\/3846"}],"wp:attachment":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/media?parent=1290"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/categories?post=1290"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/tags?post=1290"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}