{"id":1524,"date":"2026-05-19T07:00:09","date_gmt":"2026-05-19T07:00:09","guid":{"rendered":"https:\/\/donhit.com\/en\/?p=1524"},"modified":"2026-05-19T07:00:09","modified_gmt":"2026-05-19T07:00:09","slug":"voltage-drop","status":"publish","type":"post","link":"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/","title":{"rendered":"Voltage Drop Calculator"},"content":{"rendered":"<div class=\"calculator-container\">\r\n        <div class=\"calculator-header\">\r\n            <h2>\ud83d\udcca Voltage Drop Calculator<\/h2>\r\n            <p>Accurately calculate voltage drop in electrical circuits<\/p>\r\n        <\/div>\r\n\r\n        <form id=\"voltageDropForm\">\r\n            <div class=\"form-group\">\r\n                <label for=\"wireLength\">Wire Length<\/label>\r\n                <div class=\"input-group\">\r\n                    <input type=\"number\" id=\"wireLength\" name=\"wireLength\" placeholder=\"Enter wire length\" required step=\"0.1\" min=\"0\">\r\n                    <select id=\"lengthUnit\">\r\n                        <option value=\"meters\">Meters<\/option>\r\n                        <option value=\"feet\">Feet<\/option>\r\n                    <\/select>\r\n                <\/div>\r\n            <\/div>\r\n\r\n            <div class=\"form-group\">\r\n                <label for=\"wireSize\">Wire Size<\/label>\r\n                <div class=\"input-group\">\r\n                    <select id=\"wireSize\" required>\r\n                        <option value=\"\">Select Wire Size<\/option>\r\n                        <option value=\"14\">14 AWG<\/option>\r\n                        <option value=\"12\">12 AWG<\/option>\r\n                        <option value=\"10\">10 AWG<\/option>\r\n                        <option value=\"8\">8 AWG<\/option>\r\n                        <option value=\"6\">6 AWG<\/option>\r\n                        <option value=\"4\">4 AWG<\/option>\r\n                        <option value=\"2\">2 AWG<\/option>\r\n                    <\/select>\r\n                <\/div>\r\n            <\/div>\r\n\r\n            <div class=\"form-group\">\r\n                <label for=\"current\">Current Load<\/label>\r\n                <div class=\"input-group\">\r\n                    <input type=\"number\" id=\"current\" placeholder=\"Enter current\" required step=\"0.1\" min=\"0\">\r\n                    <select id=\"currentUnit\">\r\n                        <option value=\"amps\">Amps<\/option>\r\n                    <\/select>\r\n                <\/div>\r\n            <\/div>\r\n\r\n            <div class=\"form-group\">\r\n                <label for=\"conductorMaterial\">Conductor Material<\/label>\r\n                <div class=\"input-group\">\r\n                    <select id=\"conductorMaterial\" required>\r\n                        <option value=\"copper\">Copper<\/option>\r\n                        <option value=\"aluminum\">Aluminum<\/option>\r\n                    <\/select>\r\n                <\/div>\r\n            <\/div>\r\n\r\n            <button type=\"submit\" class=\"btn\">Calculate Voltage Drop<\/button>\r\n        <\/form>\r\n\r\n        <div id=\"results\" style=\"display:none;\">\r\n            <h3>Results<\/h3>\r\n            <div id=\"resultDetails\"><\/div>\r\n        <\/div>\r\n\r\n        <div id=\"errorMessage\" class=\"error\"><\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n        document.getElementById('voltageDropForm').addEventListener('submit', function(e) {\r\n            e.preventDefault();\r\n            calculateVoltageDrop();\r\n        });\r\n\r\n        function calculateVoltageDrop() {\r\n            \/\/ Retrieve form values\r\n            const wireLength = parseFloat(document.getElementById('wireLength').value);\r\n            const lengthUnit = document.getElementById('lengthUnit').value;\r\n            const wireSize = parseFloat(document.getElementById('wireSize').value);\r\n            const current = parseFloat(document.getElementById('current').value);\r\n            const conductorMaterial = document.getElementById('conductorMaterial').value;\r\n\r\n            \/\/ Input validation\r\n            const errorMessageEl = document.getElementById('errorMessage');\r\n            errorMessageEl.textContent = '';\r\n\r\n            if (isNaN(wireLength) || wireLength <= 0) {\r\n                errorMessageEl.textContent = 'Please enter a valid wire length.';\r\n                return;\r\n            }\r\n\r\n            if (isNaN(wireSize)) {\r\n                errorMessageEl.textContent = 'Please select a wire size.';\r\n                return;\r\n            }\r\n\r\n            if (isNaN(current) || current <= 0) {\r\n                errorMessageEl.textContent = 'Please enter a valid current load.';\r\n                return;\r\n            }\r\n\r\n            \/\/ Resistance per 1000 ft\/m (from NEC tables)\r\n            const resistanceTable = {\r\n                copper: {\r\n                    14: 3.14,\r\n                    12: 1.98,\r\n                    10: 1.24,\r\n                    8: 0.78,\r\n                    6: 0.49,\r\n                    4: 0.31,\r\n                    2: 0.195\r\n                },\r\n                aluminum: {\r\n                    14: 5.07,\r\n                    12: 3.20,\r\n                    10: 2.02,\r\n                    8: 1.26,\r\n                    6: 0.79,\r\n                    4: 0.50,\r\n                    2: 0.32\r\n                }\r\n            };\r\n\r\n            \/\/ Convert length if needed\r\n            let normalizedLength = wireLength;\r\n            if (lengthUnit === 'feet') {\r\n                normalizedLength = wireLength \/ 3.28084; \/\/ convert to meters\r\n            }\r\n\r\n            \/\/ Calculate round trip length (both ways)\r\n            const roundTripLength = normalizedLength * 2;\r\n\r\n            \/\/ Get resistance per meter\r\n            const resistancePerMeter = resistanceTable[conductorMaterial][wireSize] \/ 304.8; \/\/ convert from 1000ft to per meter\r\n\r\n            \/\/ Calculate voltage drop\r\n            const voltageDrop = roundTripLength * resistancePerMeter * current;\r\n            const voltageDropPercentage = (voltageDrop \/ 120) * 100; \/\/ Assuming 120V standard\r\n\r\n            \/\/ Display results\r\n            const resultsEl = document.getElementById('results');\r\n            const resultDetailsEl = document.getElementById('resultDetails');\r\n            \r\n            resultsEl.style.display = 'block';\r\n            resultDetailsEl.innerHTML = `\r\n                <div class=\"result-item\">\r\n                    <span><i class=\"fas fa-bolt\"><\/i> Voltage Drop:<\/span>\r\n                    <strong>${voltageDrop.toFixed(2)} V<\/strong>\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <span><i class=\"fas fa-percent\"><\/i> Voltage Drop Percentage:<\/span>\r\n                    <strong>${voltageDropPercentage.toFixed(2)}%<\/strong>\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <span><i class=\"fas fa-ruler\"><\/i> Wire Length:<\/span>\r\n                    <strong>${wireLength.toFixed(2)} ${lengthUnit}<\/strong>\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <span><i class=\"fas fa-cogs\"><\/i> Wire Size:<\/span>\r\n                    <strong>${wireSize} AWG (${conductorMaterial})<\/strong>\r\n                <\/div>\r\n            `;\r\n        }\r\n    <\/script>\r\nHere\u2019s something I\u2019ve learned the hard way\u2014voltage drop isn\u2019t just a technicality, it\u2019s a safety issue. You might not see it, but when voltage \u201cleaks\u201d over long wire runs or through the wrong size conductor, it slowly eats away at your system\u2019s efficiency. Appliances underperform. Lights flicker. In some cases, wires overheat. And if you\u2019re in the U.S., it can also mean you\u2019re out of compliance with NEC (National Electrical Code) standards.<\/p>\n<p>Now, you could try to calculate all this manually with Ohm\u2019s Law, but honestly, why? That\u2019s what a voltage drop calculator is for. These tools do the heavy lifting\u2014whether you\u2019re wiring a detached garage, running power to an air conditioner, or laying out a commercial system. You punch in a few values (like wire size, length, voltage, amperage), and it tells you straight up: is the drop within safe limits, or not?<\/p>\n<h3>In this guide, you\u2019ll learn:<\/h3>\n<ul>\n<li>What voltage drop is and why it matters in American homes and commercial buildings<\/li>\n<li>How to use a voltage drop calculator step-by-step (with real-life examples)<\/li>\n<li>What NEC says about voltage drop, and how to stay compliant<\/li>\n<li>Common mistakes people make when sizing wires\u2014and how to avoid them<\/li>\n<li>Best U.S.-specific tools and calculators you can use (some free, some better)<\/li>\n<\/ul>\n<h2>5. Common Mistakes to Avoid When Sizing Wires<\/h2>\n<p>There are some mistakes I see over and over\u2014especially in DIY setups:<\/p>\n<ul>\n<li>Undersizing wire to save money (tempting, but dangerous)<\/li>\n<li>Ignoring distance entirely (even a short-looking run can cause loss)<\/li>\n<li>Not accounting for full load amps (startup surge vs running current matters)<\/li>\n<li>Using aluminum but sizing for copper (aluminum has higher resistance)<\/li>\n<li>Blindly trusting breaker size (breaker amps \u2260 correct wire size always)<\/li>\n<\/ul>\n<p>Honestly, I\u2019ve made some of these early in my career. The cost of going back to rewire\u2014especially inside finished walls\u2014is so much higher than just getting it right up front.<\/p>\n<h2>7. Tools and Apps: Best Voltage Drop Calculators in the U.S.<\/h2>\n<p>Over the years, I\u2019ve tried a bunch of tools. These are my go-tos:<\/p>\n<ol>\n<li>Southwire Voltage Drop Calculator\n<ul>\n<li>Web + mobile<\/li>\n<li>Very intuitive, U.S.-centric<\/li>\n<li>Best overall for electricians<\/li>\n<\/ul>\n<\/li>\n<li>Cerrowire Voltage Drop Calculator\n<ul>\n<li>Simple interface<\/li>\n<li>Good for quick estimates<\/li>\n<li>Great for DIYers<\/li>\n<\/ul>\n<\/li>\n<li>NEC Wire Sizing Tools (Third-party apps)\n<ul>\n<li>More detailed, sometimes paid<\/li>\n<li>Includes conduit fill, derating<\/li>\n<li>Best for commercial work<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<p>\u26a0\ufe0f Heads up: Free tools are fine for residential use, but if you&#8217;re doing large-scale or code-critical jobs, consider investing in a licensed tool or app that includes NEC updates.<\/p>\n<h2>2. NEC Guidelines on Voltage Drop (U.S. Standards)<\/h2>\n<p>The NEC doesn\u2019t mandate voltage drop limits directly\u2014but it sure recommends them.<\/p>\n<p>Here\u2019s the deal:<\/p>\n<ul>\n<li>3% max drop for branch circuits (that\u2019s the wire from your panel to the outlet or device)<\/li>\n<li>5% total drop for feeders + branch circuits combined<\/li>\n<\/ul>\n<p>This is often referred to as the \u201c3% rule\u201d, and while inspectors won\u2019t always ding you if you&#8217;re off by a tiny bit, they will if it becomes a safety issue. In my experience, if you\u2019re doing any long-distance run over 75 feet and drawing more than 10 amps, you must account for voltage drop\u2014especially on a 120V system, where every volt lost hits harder.<\/p>\n<p>What I\u2019ve found is that homeowners often think they\u2019re fine because \u201cit works,\u201d but that\u2019s not how code works. Voltage loss doesn\u2019t always show up until something overheats or fails inspection.<\/p>\n<h2>6. Choosing the Right Wire Size for Your Project (US Homes &amp; Businesses)<\/h2>\n<p>Let\u2019s break it down. Here&#8217;s a quick reference voltage drop wire sizing chart for common U.S. appliances at average distances. Assume copper wire, single-phase, and &lt;3% voltage drop target:<\/p>\n<table>\n<thead>\n<tr>\n<th>Appliance<\/th>\n<th>Amps<\/th>\n<th>Distance (ft)<\/th>\n<th>Recommended Wire Size<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Window A\/C (120V)<\/td>\n<td>12A<\/td>\n<td>50 ft<\/td>\n<td>12 AWG<\/td>\n<\/tr>\n<tr>\n<td>Dryer (240V)<\/td>\n<td>30A<\/td>\n<td>85 ft<\/td>\n<td>8 AWG<\/td>\n<\/tr>\n<tr>\n<td>EV Charger (240V)<\/td>\n<td>40A<\/td>\n<td>100 ft<\/td>\n<td>6 AWG<\/td>\n<\/tr>\n<tr>\n<td>Pool Pump (240V)<\/td>\n<td>16A<\/td>\n<td>150 ft<\/td>\n<td>8 AWG<\/td>\n<\/tr>\n<tr>\n<td>Space Heater (120V)<\/td>\n<td>15A<\/td>\n<td>100 ft<\/td>\n<td>10 AWG<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>I usually go with copper wire unless I\u2019m running long feeders and really need aluminum for budget. Copper is more forgiving, especially in older homes where connections aren\u2019t always perfect.<\/p>\n<h2>8. FAQs About Voltage Drop in American Homes<\/h2>\n<p>Q: What\u2019s the max voltage drop allowed in U.S. homes?<br \/>\nA: NEC recommends 3% per branch circuit, and 5% total including feeders. It\u2019s not a hard rule, but inspectors treat it seriously.<\/p>\n<p>Q: Can I use aluminum wire?<br \/>\nA: Yes\u2014but it needs to be upsized due to higher resistance. It\u2019s common in feeder lines, but connections must be treated for oxidation.<\/p>\n<p>Q: I wired a shed 150 feet away with 12 AWG and 120V. Why do the lights dim?<br \/>\nA: You\u2019re likely dropping too much voltage\u2014over 10V loss in some cases. 10 AWG or even 8 AWG may be needed, depending on load.<\/p>\n<p>Q: Do inspectors check voltage drop?<br \/>\nA: They might not measure it, but if your wire gauge looks off for the distance, they\u2019ll ask questions.<\/p>\n<p>Q: Do I need a permit to rewire with larger gauge?<br \/>\nA: Usually, yes. Even upsizing wire is considered a change to the electrical system.<\/p>\n<h2>Conclusion<\/h2>\n<p>If there&#8217;s one thing I\u2019ve learned over the years, it\u2019s this: never ignore voltage drop. It\u2019s not just a numbers game\u2014it\u2019s about safety, performance, and compliance. Whether you&#8217;re wiring a basement workshop or installing a commercial HVAC system, a voltage drop calculator should be one of your first tools\u2014not your last resort.<\/p>\n<p>Start with solid inputs (know your voltage, distance, amps), follow NEC guidelines, and when in doubt, go up one wire size. It might cost a few extra bucks now, but it&#8217;ll save you a world of problems down the line.<\/p>\n<p>And hey\u2014don\u2019t be afraid to use the tools. That\u2019s what they\u2019re for.<\/p>\n<h2>3. How a Voltage Drop Calculator Works<\/h2>\n<p>Most U.S.-focused voltage drop calculators are refreshingly simple, once you know what the fields mean. Here\u2019s what you\u2019ll usually input:<\/p>\n<ol>\n<li>Voltage (typically 120V or 240V for U.S. residential)<\/li>\n<li>Phase (single-phase for homes, three-phase for commercial)<\/li>\n<li>Amperage (how much current your device or circuit draws)<\/li>\n<li>Conductor material (copper or aluminum\u2014don\u2019t guess!)<\/li>\n<li>Distance (one-way length of the wire run in feet)<\/li>\n<li>Wire size (American Wire Gauge, like 12 AWG or 8 AWG)<\/li>\n<\/ol>\n<p>The calculator uses Ohm\u2019s Law and resistance per foot of the conductor to figure out how much voltage will be lost between the panel and the load.<\/p>\n<p>\ud83d\udca1 Quick tip: Most calculators assume 75\u00b0C conductor insulation and standard wire resistance unless you manually override it. Always double-check if your wire has different ratings.<\/p>\n<h2>1. What Is Voltage Drop and Why It Matters<\/h2>\n<p>Voltage drop is the reduction in voltage as electricity flows through a conductor\u2014usually due to resistance in the wire itself. The longer the wire, or the thinner it is relative to the load, the more voltage you lose along the way.<\/p>\n<p>Now, why does that matter for you?<\/p>\n<p>Well, imagine you&#8217;re running a 240V line to a heavy-duty appliance like a dryer or an air conditioner. If you lose 10V due to undersized wiring, that appliance might not get enough power to run efficiently\u2014or worse, it could overheat, fail early, or cause your breaker to trip.<\/p>\n<p>From what I\u2019ve seen in residential jobs, this usually comes up when:<\/p>\n<ul>\n<li>You&#8217;re wiring a shed or garage that&#8217;s 100+ feet from the main panel<\/li>\n<li>You&#8217;re installing a pool pump or EV charger on an older home circuit<\/li>\n<li>You\u2019re trying to save money by using leftover smaller gauge wire (don\u2019t)<\/li>\n<\/ul>\n<p>Voltage drop isn\u2019t just about wasted electricity. It\u2019s a real hazard, and it adds up fast\u2014especially with HVAC systems, water heaters, or any motor-driven equipment.<\/p>\n<h2>4. Step-by-Step: Using a Voltage Drop Calculator (With Example)<\/h2>\n<p>Let\u2019s say you\u2019re wiring a 240V electric dryer located 85 feet from your panel, and it draws 30 amps. You\u2019re using copper wire, and you want to keep voltage drop under 3%.<\/p>\n<p>Here\u2019s how you\u2019d run the numbers:<\/p>\n<ol>\n<li>Input voltage: 240V<\/li>\n<li>Amps: 30A<\/li>\n<li>Conductor material: Copper<\/li>\n<li>Distance (one-way): 85 ft<\/li>\n<li>Phase: Single<\/li>\n<li>Initial wire size: Try 10 AWG<\/li>\n<\/ol>\n<p>\ud83d\udc49 Result: You\u2019ll likely see a voltage drop of around 5.6V (about 2.3%) \u2014 that\u2019s acceptable, but close to the limit.<\/p>\n<p>\ud83d\udccc Pro tip: Try bumping to 8 AWG. You\u2019ll get a drop around 1.5%, which gives you a better safety margin and keeps heat build-up lower\u2014especially if the dryer runs often.<\/p>\n<p>I\u2019ve personally wired more than a few laundry rooms and EV chargers where that \u201cextra wire cost\u201d paid off in fewer headaches.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here\u2019s something I\u2019ve learned the hard way\u2014voltage drop isn\u2019t just a technicality, it\u2019s a safety issue. You might not see it, but when voltage \u201cleaks\u201d over long wire runs or through the wrong size conductor, it slowly eats away at your system\u2019s efficiency. Appliances underperform. Lights flicker. In some cases, wires overheat. And if you\u2019re [&#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-1524","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>Voltage Drop Calculator - DonHit<\/title>\n<meta name=\"description\" content=\"Voltage drop calculators are essential tools for electricians and engineers, helping ensure the efficiency and safety of electrical systems\" \/>\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\/voltage-drop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Voltage Drop Calculator - DonHit\" \/>\n<meta property=\"og:description\" content=\"Voltage drop calculators are essential tools for electricians and engineers, helping ensure the efficiency and safety of electrical systems\" \/>\n<meta property=\"og:url\" content=\"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/\" \/>\n<meta property=\"og:site_name\" content=\"DonHit - World of Tools\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-19T07: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=\"7 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Voltage Drop Calculator - DonHit","description":"Voltage drop calculators are essential tools for electricians and engineers, helping ensure the efficiency and safety of electrical systems","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\/voltage-drop\/","og_locale":"en_US","og_type":"article","og_title":"Voltage Drop Calculator - DonHit","og_description":"Voltage drop calculators are essential tools for electricians and engineers, helping ensure the efficiency and safety of electrical systems","og_url":"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/","og_site_name":"DonHit - World of Tools","article_published_time":"2026-05-19T07:00:09+00:00","author":"DonHit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DonHit","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/#article","isPartOf":{"@id":"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/"},"author":{"name":"DonHit","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"headline":"Voltage Drop Calculator","datePublished":"2026-05-19T07:00:09+00:00","mainEntityOfPage":{"@id":"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/"},"wordCount":1434,"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\/voltage-drop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/","url":"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/","name":"Voltage Drop Calculator - DonHit","isPartOf":{"@id":"https:\/\/donhit.com\/en\/#website"},"datePublished":"2026-05-19T07:00:09+00:00","description":"Voltage drop calculators are essential tools for electricians and engineers, helping ensure the efficiency and safety of electrical systems","breadcrumb":{"@id":"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/donhit.com\/en\/calculator\/voltage-drop\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/donhit.com\/en\/calculator\/voltage-drop\/#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":"Voltage Drop 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\/1524","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=1524"}],"version-history":[{"count":7,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1524\/revisions"}],"predecessor-version":[{"id":3850,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1524\/revisions\/3850"}],"wp:attachment":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/media?parent=1524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/categories?post=1524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/tags?post=1524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}