{"id":1812,"date":"2026-07-06T07:00:06","date_gmt":"2026-07-06T07:00:06","guid":{"rendered":"https:\/\/donhit.com\/en\/?p=1812"},"modified":"2026-07-06T07:00:06","modified_gmt":"2026-07-06T07:00:06","slug":"hz-to-seconds","status":"publish","type":"post","link":"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/","title":{"rendered":"Hz to Seconds Calculator"},"content":{"rendered":"<div class=\"calculator\">\r\n        <h2 class=\"title\">Hz to Seconds Calculator<\/h2>\r\n        <canvas id=\"waveCanvas\"><\/canvas>\r\n        <div class=\"input-group\">\r\n            <label for=\"hzInput\">Frequency (Hz)<\/label>\r\n            <input type=\"number\" id=\"hzInput\" placeholder=\"Enter frequency in Hz\" min=\"0\" step=\"any\">\r\n            <div class=\"error\" id=\"error\">Please enter a valid frequency greater than 0<\/div>\r\n        <\/div>\r\n        <div class=\"result\">\r\n            <p class=\"result-text\" id=\"resultText\">Period: -- seconds<\/p>\r\n        <\/div>\r\n        <p class=\"info\">The period (T) is calculated using the formula: T = 1\/f, where f is the frequency in Hz<\/p>\r\n    <\/div>\r\n\r\n    <script>\r\n        const hzInput = document.getElementById('hzInput');\r\n        const resultText = document.getElementById('resultText');\r\n        const error = document.getElementById('error');\r\n        const canvas = document.getElementById('waveCanvas');\r\n        const ctx = canvas.getContext('2d');\r\n\r\n        \/\/ Set canvas resolution\r\n        function setCanvasSize() {\r\n            canvas.width = canvas.offsetWidth * 2;\r\n            canvas.height = canvas.offsetHeight * 2;\r\n        }\r\n        setCanvasSize();\r\n        window.addEventListener('resize', setCanvasSize);\r\n\r\n        function drawWave(frequency) {\r\n            ctx.clearRect(0, 0, canvas.width, canvas.height);\r\n            \r\n            const width = canvas.width;\r\n            const height = canvas.height;\r\n            const centerY = height \/ 2;\r\n            const amplitude = height \/ 4;\r\n            \r\n            \/\/ Calculate wave properties\r\n            const periods = frequency ? Math.min(frequency, 5) : 1;\r\n            const angularFrequency = (2 * Math.PI * periods) \/ width;\r\n\r\n            ctx.beginPath();\r\n            ctx.moveTo(0, centerY);\r\n            \r\n            \/\/ Draw sine wave\r\n            for (let x = 0; x < width; x++) {\r\n                const y = centerY + amplitude * Math.sin(angularFrequency * x);\r\n                ctx.lineTo(x, y);\r\n            }\r\n\r\n            ctx.strokeStyle = '#667eea';\r\n            ctx.lineWidth = 4;\r\n            ctx.stroke();\r\n        }\r\n\r\n        function calculate() {\r\n            const hz = parseFloat(hzInput.value);\r\n            \r\n            if (!hz || hz <= 0) {\r\n                error.style.display = 'block';\r\n                resultText.textContent = 'Period: -- seconds';\r\n                drawWave(0);\r\n                return;\r\n            }\r\n\r\n            error.style.display = 'none';\r\n            const seconds = 1 \/ hz;\r\n            resultText.textContent = `Period: ${seconds.toFixed(6)} seconds`;\r\n            drawWave(hz);\r\n        }\r\n\r\n        hzInput.addEventListener('input', calculate);\r\n        drawWave(1); \/\/ Initial wave\r\n    <\/script>\r\n\n<p>If you&#8217;ve ever looked at a signal spec and wondered how long one cycle actually lasts, you&#8217;re not alone. Converting Hertz to seconds is one of those calculations that comes up constantly in electronics, audio work, and networking \u2014 and the math is simpler than it looks.<\/p>\n<p>The formula is: <strong>Seconds = 1 \u00f7 Hertz<\/strong>. That&#8217;s it. One clean reciprocal. A 60 Hz signal completes one cycle every 0.01667 seconds. A 1,000 Hz tone lasts 0.001 seconds per cycle. Once you get the relationship, the rest falls into place quickly.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>How many seconds is 60 Hz?<\/h3>\n<p>60 Hz equals approximately <strong>0.01667 seconds<\/strong> per cycle, or about 16.67 milliseconds. This is the period of standard U.S. AC power.<\/p>\n<h3>How many seconds is 1,000 Hz?<\/h3>\n<p>1,000 Hz equals <strong>0.001 seconds<\/strong> (1 millisecond) per cycle.<\/p>\n<h3>What is the period of a 440 Hz signal?<\/h3>\n<p>A 440 Hz signal has a period of approximately <strong>0.00227 seconds<\/strong>, or 2.27 milliseconds. This frequency corresponds to the musical note A4 (concert A).<\/p>\n<h3>Is Hertz used outside of engineering?<\/h3>\n<p>Yes. Hertz appears in medical devices (such as ultrasound equipment, which operates between 2 and 18 MHz), consumer electronics, EEG machines measuring brainwave activity (typically 0.5\u2013100 Hz), and scientific instruments across dozens of research fields.<\/p>\n<h3>Can I convert kHz or MHz using the same formula?<\/h3>\n<p>The formula stays the same, but you need to convert to Hz first. 1 kHz = 1,000 Hz. 1 MHz = 1,000,000 Hz. 1 GHz = 1,000,000,000 Hz. Once you have the value in Hz, divide 1 by it to get the period in seconds.<\/p>\n<h3>Why is frequency the inverse of time?<\/h3>\n<p>Frequency measures how many cycles occur per second. Time period measures how long one cycle takes. They describe the same thing from opposite directions. If a signal completes 10 cycles per second (10 Hz), each cycle must take exactly 1\/10th of a second (0.1 s). The math is definitional, not coincidental.<\/p>\n<h3>How do I convert the result to milliseconds?<\/h3>\n<p>Multiply the result in seconds by 1,000 to get milliseconds. For example, 60 Hz \u2192 0.01667 s \u2192 16.67 ms. For microseconds, multiply by 1,000,000.<\/p>\n<h2>Hz to Seconds Formula Explained<\/h2>\n<h3>The Mathematical Conversion Formula<\/h3>\n<p><strong>Seconds (s) = 1 \u00f7 Hertz (Hz)<\/strong><\/p>\n<p>This gives you the <em>period<\/em> of a signal \u2014 the time it takes to complete one full cycle.<\/p>\n<table>\n<thead>\n<tr>\n<th>Frequency (Hz)<\/th>\n<th>Period (Seconds)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1 Hz<\/td>\n<td>1 s<\/td>\n<\/tr>\n<tr>\n<td>2 Hz<\/td>\n<td>0.5 s<\/td>\n<\/tr>\n<tr>\n<td>10 Hz<\/td>\n<td>0.1 s<\/td>\n<\/tr>\n<tr>\n<td>50 Hz<\/td>\n<td>0.02 s<\/td>\n<\/tr>\n<tr>\n<td>60 Hz<\/td>\n<td>0.01667 s<\/td>\n<\/tr>\n<tr>\n<td>100 Hz<\/td>\n<td>0.01 s<\/td>\n<\/tr>\n<tr>\n<td>1,000 Hz<\/td>\n<td>0.001 s<\/td>\n<\/tr>\n<tr>\n<td>10,000 Hz<\/td>\n<td>0.0001 s<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Why the Formula Works<\/h3>\n<p>Think of it this way: if a signal completes 60 cycles every second, then each cycle uses up 1\/60th of that second \u2014 about 0.01667 seconds. The formula isn&#8217;t an approximation or a rule of thumb. It&#8217;s a mathematical identity that holds for any periodic signal, whether it&#8217;s an electrical waveform, a sound wave, or a radio frequency.<\/p>\n<p>The only input you need is the frequency in Hz. Everything else follows directly.<\/p>\n<h2>What Is a Second (s)?<\/h2>\n<h3>The Unit of Time<\/h3>\n<p>The second is the base unit of time in the International System of Units (SI). Since 1967, it has been defined by atomic physics \u2014 specifically, 9,192,631,770 oscillations of a cesium-133 atom. That level of precision makes atomic clocks accurate to within one second over millions of years.<\/p>\n<p>For everyday engineering work, the second is simply the reference unit against which frequency is measured.<\/p>\n<h3>Why Seconds Matter in Frequency Conversion<\/h3>\n<p>Frequency and time are two ways of describing the same phenomenon. Frequency asks: <em>how many cycles happen per second?<\/em> Time period asks: <em>how long does one cycle take?<\/em><\/p>\n<p>They&#8217;re reciprocals. Double the frequency, and you cut the period in half. That inverse relationship is why the conversion formula is always division \u2014 1 divided by the frequency in Hz.<\/p>\n<h2>Hz to Seconds vs. Seconds to Hz<\/h2>\n<h3>Understanding Reverse Conversions<\/h3>\n<p>The reverse formula is equally straightforward:<\/p>\n<p><strong>Hertz (Hz) = 1 \u00f7 Seconds (s)<\/strong><\/p>\n<p>If you know a signal&#8217;s period \u2014 say, 0.025 seconds \u2014 dividing 1 by that value gives you the frequency: 40 Hz.<\/p>\n<p>This direction comes up when measuring an unknown signal with an oscilloscope. You observe the waveform&#8217;s period directly, then calculate the frequency.<\/p>\n<h3>When to Use Each Conversion<\/h3>\n<ul>\n<li><strong>Use Hz \u2192 Seconds<\/strong> when you know a signal&#8217;s frequency and need to calculate timing, delays, or component values.<\/li>\n<li><strong>Use Seconds \u2192 Hz<\/strong> when you&#8217;ve measured a time interval (such as a waveform period on an oscilloscope) and need the corresponding frequency.<\/li>\n<\/ul>\n<p>Both conversions use the same mathematical relationship. Only the direction changes depending on what you already know.<\/p>\n<h2>Key Takeaways<\/h2>\n<ul>\n<li><strong>Frequency and time are inverses.<\/strong> Higher frequency = shorter cycle duration.<\/li>\n<li><strong>The formula is always:<\/strong> Seconds = 1 \u00f7 Hz<\/li>\n<li><strong>60 Hz<\/strong> (standard U.S. AC power) equals approximately <strong>0.01667 seconds<\/strong> per cycle.<\/li>\n<li><strong>1,000 Hz<\/strong> equals <strong>0.001 seconds<\/strong> per cycle.<\/li>\n<li>This conversion applies across electronics, audio engineering, wireless communications, and more.<\/li>\n<\/ul>\n<h2>Final Thoughts<\/h2>\n<p>The Hz-to-seconds conversion is one of those foundational tools that gets used across nearly every technical discipline. It&#8217;s simple math \u2014 one divided by the frequency \u2014 but getting it right matters whether you&#8217;re sizing a capacitor, mixing audio, or troubleshooting a wireless signal.<\/p>\n<p>When in doubt, use the formula directly. Plug in your Hz value, divide 1 by it, and you have the period. From there, scale to milliseconds or microseconds as needed for your application.<\/p>\n<h2>Practical Applications of Hz to Seconds Conversion<\/h2>\n<h3>Electronics and Electrical Engineering<\/h3>\n<p>In circuit design, knowing the period of a signal helps engineers size capacitors, time oscillators, and set filter cutoff frequencies. A capacitor in an RC circuit charges and discharges relative to the signal period, so accurate period values directly affect component selection.<\/p>\n<p>AC power in the U.S. runs at 60 Hz, giving a period of approximately 16.67 milliseconds per cycle. Equipment designed for 60 Hz systems \u2014 motors, transformers, fluorescent ballasts \u2014 relies on that timing to function correctly.<\/p>\n<h3>Audio and Music Production<\/h3>\n<p>Every audible pitch corresponds to a specific frequency, and that frequency has a measurable period. A 440 Hz tone (concert A) lasts about 2.27 milliseconds per cycle. At 20 Hz (the lowest note most humans can hear), one cycle stretches to 50 milliseconds.<\/p>\n<p>In digital audio workstations, this math matters for aligning delays, calculating reverb pre-delay, and tuning synthesizer oscillators. Producers working with hardware and software synthesizers regularly convert between Hz and milliseconds to sync effects to tempo or to fine-tune filter behavior.<\/p>\n<h3>Telecommunications and Networking<\/h3>\n<p>RF engineers convert frequencies to periods when analyzing signal propagation, calculating antenna dimensions, and timing data bursts. A 2.4 GHz Wi-Fi carrier wave completes one cycle in roughly 0.417 nanoseconds \u2014 a reminder of how fast modern wireless signals actually operate.<\/p>\n<p>In cellular networks, timing synchronization between base stations depends on precise knowledge of signal periods. Even a few nanoseconds of drift can degrade call quality or data throughput.<\/p>\n<h2>What Is Hertz (Hz)?<\/h2>\n<h3>Hertz Defined<\/h3>\n<p>Hertz is the SI unit of frequency. One Hertz means one cycle per second. The unit is named after Heinrich Hertz, the German physicist who first demonstrated radio wave transmission in the 1880s.<\/p>\n<p>Frequency describes how often a repeating event occurs in a fixed period. For electrical signals and sound waves, that event is a complete oscillation \u2014 one full peak-and-trough cycle.<\/p>\n<h3>Real-World Examples of Hertz<\/h3>\n<p>Hertz measurements show up everywhere in daily life, often without anyone thinking twice about them:<\/p>\n<ul>\n<li><strong>U.S. power grid:<\/strong> 60 Hz \u2014 the rate at which alternating current reverses direction in American outlets<\/li>\n<li><strong>Human hearing range:<\/strong> roughly 20 Hz to 20,000 Hz<\/li>\n<li><strong>Wi-Fi bands:<\/strong> 2.4 GHz and 5 GHz (gigahertz, or billions of cycles per second)<\/li>\n<li><strong>AM radio:<\/strong> 540 kHz to 1,700 kHz (kilohertz)<\/li>\n<li><strong>Processor clocks:<\/strong> modern CPUs operate in the gigahertz range, often 3\u20135 GHz<\/li>\n<\/ul>\n<p>Each of these involves a signal cycling at a specific rate. Knowing how long each cycle lasts is where the Hz-to-seconds conversion becomes useful.<\/p>\n<h2>How to Use the Hz to Seconds Calculator<\/h2>\n<h3>Step-by-Step Instructions<\/h3>\n<p>Using an online Hz-to-seconds calculator takes under a minute:<\/p>\n<ol>\n<li><strong>Enter the frequency value<\/strong> in the Hz input field. Use a decimal if needed (e.g., 2.5 Hz).<\/li>\n<li><strong>Click Calculate<\/strong> (or press Enter, depending on the tool).<\/li>\n<li><strong>Read the result<\/strong> \u2014 the period will display in seconds, and many calculators also show milliseconds or microseconds for convenience.<\/li>\n<li><strong>Apply the value<\/strong> to your design, analysis, or reference table.<\/li>\n<\/ol>\n<h3>Common User Mistakes<\/h3>\n<p>A few errors come up often enough to be worth flagging:<\/p>\n<ul>\n<li><strong>Entering kHz or MHz values as Hz.<\/strong> If you&#8217;re working with a 2.4 GHz Wi-Fi signal, enter 2,400,000,000 \u2014 not 2.4. Some calculators handle unit prefixes automatically; check whether yours does.<\/li>\n<li><strong>Confusing period with frequency.<\/strong> The result of this conversion is the <em>period<\/em> (one cycle&#8217;s duration), not a count of cycles.<\/li>\n<li><strong>Rounding too early.<\/strong> For precision work \u2014 particularly in audio and RF engineering \u2014 keep several decimal places until the final calculation.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;ve ever looked at a signal spec and wondered how long one cycle actually lasts, you&#8217;re not alone. Converting Hertz to seconds is one of those calculations that comes up constantly in electronics, audio work, and networking \u2014 and the math is simpler than it looks. The formula is: Seconds = 1 \u00f7 Hertz. [&#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-1812","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>Hz to Seconds Calculator - DonHit<\/title>\n<meta name=\"description\" content=\"The formula to convert Hz (Hertz) to seconds relies on the reciprocal relationship between frequency and time period: Time (T) = 1 \/ Frequency (f).\" \/>\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\/hz-to-seconds\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hz to Seconds Calculator - DonHit\" \/>\n<meta property=\"og:description\" content=\"The formula to convert Hz (Hertz) to seconds relies on the reciprocal relationship between frequency and time period: Time (T) = 1 \/ Frequency (f).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/\" \/>\n<meta property=\"og:site_name\" content=\"DonHit - World of Tools\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-06T07:00:06+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=\"1 minute\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hz to Seconds Calculator - DonHit","description":"The formula to convert Hz (Hertz) to seconds relies on the reciprocal relationship between frequency and time period: Time (T) = 1 \/ Frequency (f).","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\/hz-to-seconds\/","og_locale":"en_US","og_type":"article","og_title":"Hz to Seconds Calculator - DonHit","og_description":"The formula to convert Hz (Hertz) to seconds relies on the reciprocal relationship between frequency and time period: Time (T) = 1 \/ Frequency (f).","og_url":"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/","og_site_name":"DonHit - World of Tools","article_published_time":"2026-07-06T07:00:06+00:00","author":"DonHit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DonHit","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/#article","isPartOf":{"@id":"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/"},"author":{"name":"DonHit","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"headline":"Hz to Seconds Calculator","datePublished":"2026-07-06T07:00:06+00:00","mainEntityOfPage":{"@id":"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/"},"wordCount":1375,"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\/hz-to-seconds\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/","url":"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/","name":"Hz to Seconds Calculator - DonHit","isPartOf":{"@id":"https:\/\/donhit.com\/en\/#website"},"datePublished":"2026-07-06T07:00:06+00:00","description":"The formula to convert Hz (Hertz) to seconds relies on the reciprocal relationship between frequency and time period: Time (T) = 1 \/ Frequency (f).","breadcrumb":{"@id":"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/donhit.com\/en\/calculator\/hz-to-seconds\/#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":"Hz to Seconds 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\/1812","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=1812"}],"version-history":[{"count":4,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1812\/revisions"}],"predecessor-version":[{"id":3950,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1812\/revisions\/3950"}],"wp:attachment":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/media?parent=1812"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/categories?post=1812"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/tags?post=1812"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}