{"id":1735,"date":"2025-09-01T16:11:39","date_gmt":"2025-09-01T16:11:39","guid":{"rendered":"https:\/\/motomarketinglab.com\/?page_id=1735"},"modified":"2025-09-01T16:17:22","modified_gmt":"2025-09-01T16:17:22","slug":"ev-charging-cost-calculator","status":"publish","type":"page","link":"https:\/\/motomarketinglab.com\/de\/ev-charging-cost-calculator\/","title":{"rendered":"EV (Electric Vehicle) Charging Cost Calculator"},"content":{"rendered":"<!-- EV Charging Cost Calculator - Charge to Full Capacity -->\n<div id=\"ev-full-charge\" class=\"ev-calculator\">\n  <style>\n    \/* ===== Scoped Styles ===== *\/\n    #ev-full-charge {\n      max-width: 900px;\n      margin: 20px auto;\n      padding: 20px;\n      border-radius: 16px;\n      background: #ffffff;\n      box-shadow: 0 4px 12px rgba(0,0,0,0.1);\n      font-family: \"Segoe UI\", Tahoma, sans-serif;\n    }\n\n    #ev-full-charge h2 {\n      font-size: 1.6rem;\n      text-align: center;\n      margin-bottom: 1rem;\n      color: #222;\n    }\n\n    .ev-container {\n      display: flex;\n      flex-wrap: wrap;\n      gap: 20px;\n    }\n\n    .ev-inputs {\n      flex: 1;\n      min-width: 280px;\n    }\n\n    .ev-result {\n      flex: 1;\n      min-width: 280px;\n      background: #f9fafb;\n      border-radius: 12px;\n      padding: 20px;\n      box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);\n    }\n\n    .ev-inputs label {\n      display: block;\n      margin-bottom: 6px;\n      font-weight: 600;\n      color: #333;\n    }\n\n    .ev-inputs input {\n      width: 100%;\n      padding: 10px;\n      border-radius: 8px;\n      border: 1px solid #ccc;\n      margin-bottom: 15px;\n      font-size: 1rem;\n    }\n\n    .ev-note {\n      font-size: 0.9rem;\n      color: #666;\n      margin-bottom: 12px;\n      font-style: italic;\n    }\n\n    .ev-btn {\n      background: #2563eb;\n      color: #fff;\n      border: none;\n      padding: 12px 20px;\n      font-size: 1rem;\n      border-radius: 8px;\n      cursor: pointer;\n      transition: background 0.3s ease;\n    }\n\n    .ev-btn:hover {\n      background: #1e40af;\n    }\n\n    .ev-result h3 {\n      margin-bottom: 10px;\n      font-size: 1.2rem;\n      color: #111;\n    }\n\n    .ev-output {\n      font-size: 1.4rem;\n      font-weight: bold;\n      color: #10b981;\n    }\n\n    @media(max-width: 768px) {\n      .ev-container {\n        flex-direction: column;\n      }\n    }\n  <\/style>\n\n  <h2>Calculate the Cost to Charge Your EV to Full Capacity<\/h2>\n\n  <div class=\"ev-container\">\n    <!-- Input Fields -->\n    <div class=\"ev-inputs\">\n      <label for=\"batterySize\">Battery Size (kWh)<\/label>\n      <input type=\"number\" id=\"batterySize\" placeholder=\"Enter battery size\" \/>\n\n      <label for=\"costPerKwh\">Electricity Cost ($\/kWh)<\/label>\n      <input type=\"number\" id=\"costPerKwhFull\" placeholder=\"Enter cost per kWh\" step=\"0.01\" \/>\n\n      <p class=\"ev-note\">Note: the average price of electricity is about 16 cents per kWh.<\/p>\n\n      <button class=\"ev-btn\" onclick=\"calculateFullCharge()\">Calculate<\/button>\n    <\/div>\n\n    <!-- Result Section -->\n    <div class=\"ev-result\">\n      <h3>Electricity Cost Estimate:<\/h3>\n      <div class=\"ev-output\" id=\"fullChargeResult\">$0.00<\/div>\n    <\/div>\n  <\/div>\n\n  <script>\n    function calculateFullCharge() {\n      const batterySize = parseFloat(document.getElementById('batterySize').value);\n      const costPerKwh = parseFloat(document.getElementById('costPerKwhFull').value);\n\n      if (isNaN(batterySize) || isNaN(costPerKwh)) {\n        document.getElementById('fullChargeResult').textContent = \"Please enter all values.\";\n        return;\n      }\n\n      const totalCost = batterySize * costPerKwh;\n      document.getElementById('fullChargeResult').textContent = \"$\" + totalCost.toFixed(2);\n    }\n  <\/script>\n<\/div>\n\n\n\n\n<!-- EV Charging Cost Calculator - Drive a Set Distance -->\n<div id=\"ev-drive-distance\" class=\"ev-calculator\">\n  <style>\n    \/* ===== Scoped Styles ===== *\/\n    #ev-drive-distance {\n      max-width: 900px;\n      margin: 20px auto;\n      padding: 20px;\n      border-radius: 16px;\n      background: #ffffff;\n      box-shadow: 0 4px 12px rgba(0,0,0,0.1);\n      font-family: \"Segoe UI\", Tahoma, sans-serif;\n    }\n\n    #ev-drive-distance h2 {\n      font-size: 1.6rem;\n      text-align: left;   \/* Changed from center to left *\/\n      margin-bottom: 1rem;\n      color: #222;\n    }\n\n    .ev-container {\n      display: flex;\n      flex-wrap: wrap;\n      gap: 20px;\n    }\n\n    .ev-inputs {\n      flex: 1;\n      min-width: 280px;\n    }\n\n    .ev-result {\n      flex: 1;\n      min-width: 280px;\n      background: #f9fafb;\n      border-radius: 12px;\n      padding: 20px;\n      box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);\n    }\n\n    .ev-inputs label {\n      display: block;\n      margin-bottom: 6px;\n      font-weight: 600;\n      color: #333;\n    }\n\n    .ev-inputs input,\n    .ev-inputs select {\n      width: 100%;\n      padding: 10px;\n      border-radius: 8px;\n      border: 1px solid #ccc;\n      margin-bottom: 15px;\n      font-size: 1rem;\n    }\n\n    .ev-note {\n      font-size: 0.9rem;\n      color: #666;\n      margin-bottom: 12px;\n      font-style: italic;\n    }\n\n    .ev-btn {\n      background: #2563eb;\n      color: #fff;\n      border: none;\n      padding: 12px 20px;\n      font-size: 1rem;\n      border-radius: 8px;\n      cursor: pointer;\n      transition: background 0.3s ease;\n    }\n\n    .ev-btn:hover {\n      background: #1e40af;\n    }\n\n    .ev-result h3 {\n      margin-bottom: 10px;\n      font-size: 1.2rem;\n      color: #111;\n    }\n\n    .ev-output {\n      font-size: 1.4rem;\n      font-weight: bold;\n      color: #10b981;\n    }\n\n    @media(max-width: 768px) {\n      .ev-container {\n        flex-direction: column;\n      }\n    }\n  <\/style>\n\n  <h2>Calculate the Cost to Drive a Set Distance<\/h2>\n\n  <div class=\"ev-container\">\n    <!-- Input Fields -->\n    <div class=\"ev-inputs\">\n      <label for=\"efficiency\">Efficiency<\/label>\n      <select id=\"efficiency\">\n        <option value=\"kwh100mi\">kWh \/ 100 mi<\/option>\n        <option value=\"kwh100km\">kWh \/ 100 km<\/option>\n        <option value=\"mpge\">MPGe<\/option>\n      <\/select>\n\n      <input type=\"number\" id=\"efficiencyValue\" placeholder=\"Enter efficiency value\" \/>\n\n      <label for=\"distance\">Distance<\/label>\n      <input type=\"number\" id=\"distanceValue\" placeholder=\"Enter distance\" \/>\n      <select id=\"distanceUnit\">\n        <option value=\"mi\">miles<\/option>\n        <option value=\"km\">kilometers<\/option>\n      <\/select>\n\n      <label for=\"cost\">Electricity Cost ($\/kWh)<\/label>\n      <input type=\"number\" id=\"costPerKwh\" placeholder=\"Enter cost per kWh\" step=\"0.01\" \/>\n\n      <p class=\"ev-note\">Note: the average price of electricity is about 16 cents per kWh.<\/p>\n\n      <button class=\"ev-btn\" onclick=\"calculateDriveCost()\">Calculate<\/button>\n    <\/div>\n\n    <!-- Result Section -->\n    <div class=\"ev-result\">\n      <h3>Electricity Cost Estimate:<\/h3>\n      <div class=\"ev-output\" id=\"driveCostResult\">$0.00<\/div>\n    <\/div>\n  <\/div>\n\n  <script>\n    function calculateDriveCost() {\n      const efficiencyType = document.getElementById('efficiency').value;\n      const efficiencyValue = parseFloat(document.getElementById('efficiencyValue').value);\n      const distanceValue = parseFloat(document.getElementById('distanceValue').value);\n      const distanceUnit = document.getElementById('distanceUnit').value;\n      const costPerKwh = parseFloat(document.getElementById('costPerKwh').value);\n\n      if (isNaN(efficiencyValue) || isNaN(distanceValue) || isNaN(costPerKwh)) {\n        document.getElementById('driveCostResult').textContent = \"Please enter all values.\";\n        return;\n      }\n\n      let energyUsedKwh = 0;\n\n      if (efficiencyType === \"kwh100mi\") {\n        const distMiles = distanceUnit === \"km\" ? distanceValue * 0.621371 : distanceValue;\n        energyUsedKwh = (efficiencyValue \/ 100) * distMiles;\n      } else if (efficiencyType === \"kwh100km\") {\n        const distKm = distanceUnit === \"mi\" ? distanceValue * 1.60934 : distanceValue;\n        energyUsedKwh = (efficiencyValue \/ 100) * distKm;\n      } else if (efficiencyType === \"mpge\") {\n        \/\/ 1 gallon gasoline = 33.7 kWh\n        const distMiles = distanceUnit === \"km\" ? distanceValue * 0.621371 : distanceValue;\n        energyUsedKwh = (distMiles \/ efficiencyValue) * 33.7;\n      }\n\n      const totalCost = energyUsedKwh * costPerKwh;\n      document.getElementById('driveCostResult').textContent = \"$\" + totalCost.toFixed(2);\n    }\n  <\/script>\n<\/div>\n\n\n\n\n<p>Are you wondering how much it really costs to charge an electric car? Use our <strong>EV Charging Cost Calculator<\/strong> to find out. Whether you want to know the price of charging your battery to full capacity or the cost of driving a set distance, this tool helps you estimate based on your vehicle\u2019s efficiency, your battery size, and your local electricity rates.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is Our EV Charging Cost Calculator?<\/strong><\/h2>\n\n\n\n<p>Our <strong>EV Charging Cost Calculator<\/strong> is a free online tool that helps electric vehicle (EV) owners estimate how much it will cost to charge their car. Instead of guessing or relying on rough averages, this calculator uses your actual battery size, electricity rates, and driving efficiency to provide a personalized estimate.<\/p>\n\n\n\n<p>This calculator is useful for:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>EV owners<\/strong> who want to track charging expenses.<\/li>\n\n\n\n<li><strong>New buyers<\/strong> comparing the cost of EVs vs gas cars.<\/li>\n\n\n\n<li><strong>Businesses &amp; fleets<\/strong> budgeting for electric vehicles.<\/li>\n<\/ul>\n\n\n\n<p>Unlike static charts, our calculator adjusts to <strong>your specific situation<\/strong>, making it more accurate and practical.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Use Our EV Charging Cost Calculator<\/strong><\/h2>\n\n\n\n<p>We designed the tool to be <strong>simple and intuitive<\/strong>. You can choose between two calculation modes:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Charge to Full Capacity<\/strong><\/h3>\n\n\n\n<p>Estimate how much it costs to charge your EV battery from empty to full.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Enter your <strong>battery size (kWh)<\/strong>.<\/li>\n\n\n\n<li>Enter your <strong>local electricity cost per kWh<\/strong>.<\/li>\n\n\n\n<li>Click <strong>Calculate<\/strong> to see the total charging cost.<\/li>\n<\/ul>\n\n\n\n<p>\u2705 <strong>Example:<\/strong><br>If your EV has a <strong>75 kWh battery<\/strong> and electricity costs <strong>$0.16 per kWh<\/strong>, then:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>75 kWh \u00d7 $0.16 = <strong>$12.00 per full charge<\/strong><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Drive a Set Distance<\/strong><\/h3>\n\n\n\n<p>Estimate the electricity cost for a specific trip.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Select your <strong>efficiency unit<\/strong> (kWh\/100 miles, kWh\/100 km, or MPGe).<\/li>\n\n\n\n<li>Enter your <strong>distance<\/strong> (miles or kilometers).<\/li>\n\n\n\n<li>Enter your <strong>local electricity cost per kWh<\/strong>.<\/li>\n\n\n\n<li>Click <strong>Calculate<\/strong> to see the trip cost.<\/li>\n<\/ul>\n\n\n\n<p>\u2705 <strong>Example:<\/strong><br>If your EV consumes <strong>28 kWh\/100 miles<\/strong>, electricity costs <strong>$0.14 per kWh<\/strong>, and you drive <strong>150 miles<\/strong>, then:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Energy use = (28 \u00f7 100) \u00d7 150 = <strong>42 kWh<\/strong><\/li>\n\n\n\n<li>Charging cost = 42 \u00d7 $0.14 = <strong>$5.88<\/strong><\/li>\n<\/ul>\n\n\n\n<p>So, a 150-mile trip costs <strong>just under $6<\/strong> in electricity \u2014 far less than driving a gasoline car the same distance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How EV Charging Costs are Calculated<\/strong><\/h2>\n\n\n\n<p>The cost of charging an electric vehicle depends on several key factors:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Battery Size and Capacity (kWh)<\/strong><\/h3>\n\n\n\n<p>The larger the battery, the more electricity it holds, and the more it costs to charge.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Example: a 40 kWh battery costs less to charge than a 100 kWh battery.<\/li>\n\n\n\n<li>Most modern EVs have batteries ranging from 40 kWh to 120 kWh.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Electricity Cost per kWh<\/strong><\/h3>\n\n\n\n<p>Electricity is measured in kilowatt-hours (kWh). Your local utility rate determines how much you pay.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>U.S. average (2025): ~16\u00a2 per kWh<\/strong><\/li>\n\n\n\n<li>Rates vary widely: from under 10\u00a2 in some states to over 30\u00a2 in others.<\/li>\n\n\n\n<li>Charging at public stations may cost more due to service fees.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Driving Efficiency (kWh\/100 miles, kWh\/100 km, MPGe)<\/strong><\/h3>\n\n\n\n<p>Efficiency tells you how much energy your EV uses to travel a set distance.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Lower kWh\/100mi = more efficient = cheaper to drive.<\/strong><\/li>\n\n\n\n<li>MPGe (miles per gallon equivalent) allows direct comparison with gasoline cars.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Distance Driven<\/strong><\/h3>\n\n\n\n<p>The farther you drive, the more energy you consume. The calculator estimates cost based on your efficiency and distance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Average Cost to Charge an Electric Vehicle<\/strong><\/h2>\n\n\n\n<p>Here\u2019s a quick look at estimated charging costs using the U.S. average rate of 16\u00a2 per kWh:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th><strong>Battery Size<\/strong><\/th><th><strong>Full Charge Cost (16\u00a2\/kWh)<\/strong><\/th><\/tr><\/thead><tbody><tr><td>40 kWh<\/td><td>$6.40<\/td><\/tr><tr><td>60 kWh<\/td><td>$9.60<\/td><\/tr><tr><td>75 kWh<\/td><td>$12.00<\/td><\/tr><tr><td>100 kWh<\/td><td>$16.00<\/td><\/tr><tr><td>120 kWh<\/td><td>$19.20<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>EV Charging at Home vs Public Stations<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Home Charging<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Usually the cheapest option.<\/li>\n\n\n\n<li>Costs are based on your residential electricity rate.<\/li>\n\n\n\n<li>Overnight charging during off-peak hours can save money.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Public Charging<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Level 2 public stations often cost 20\u201330\u00a2 per kWh.<\/li>\n\n\n\n<li>DC fast chargers may cost 40\u201360\u00a2 per kWh.<\/li>\n\n\n\n<li>Networks sometimes charge <strong>per minute<\/strong> instead of per kWh.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Much Does It Cost to Drive an EV per Mile?<\/strong><\/h2>\n\n\n\n<p>On average, EVs cost about <strong>4\u20135\u00a2 per mile<\/strong> to drive.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Example: A 100-mile trip may cost <strong>$4\u20135<\/strong> in electricity.<\/li>\n\n\n\n<li>A gasoline car getting 30 mpg at $3.50\/gal costs <strong>$11.67<\/strong> for the same trip (~12\u00a2 per mile).<\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udc49 That means EVs can be <strong>60\u201370% cheaper per mile<\/strong> than gas cars.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Factors That Influence EV Charging Cost<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Location &amp; electricity provider<\/strong> \u2013 Rates vary widely by state\/country.<\/li>\n\n\n\n<li><strong>Type of charging<\/strong> \u2013 Level 1 (slow), Level 2 (home\/public), DC fast charging (expensive).<\/li>\n\n\n\n<li><strong>Time of day<\/strong> \u2013 Off-peak hours can reduce rates.<\/li>\n\n\n\n<li><strong>Vehicle efficiency<\/strong> \u2013 Some EVs use less energy per mile than others.<\/li>\n\n\n\n<li><strong>Weather &amp; driving style<\/strong> \u2013 Cold weather, high speeds, and heavy loads increase consumption.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Ways to Save on EV Charging Costs<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Charge at night when off-peak rates are lower.<\/li>\n\n\n\n<li>Use free charging stations at workplaces, malls, or municipal lots.<\/li>\n\n\n\n<li>Install home solar panels to generate your own electricity.<\/li>\n\n\n\n<li>Keep tires inflated and drive smoothly for better efficiency.<\/li>\n\n\n\n<li>Monitor your car\u2019s energy use with EV apps.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">FAQs About EV Charging Costs<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list\">\n<div id=\"faq-question-1756742745825\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">How much does it cost to charge an EV at home?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>On average, $6\u2013$20 for a full charge, depending on battery size and local rates.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1756742765700\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Is charging an EV cheaper than gas?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Yes, EVs typically cost <strong>60\u201370% less per mile<\/strong> compared to gasoline vehicles.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1756742778340\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">How long does it take to charge an electric car?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Level 1 chargers take 12\u201324 hours, Level 2 chargers 4\u20138 hours, and DC fast chargers 30\u201360 minutes.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1756742791211\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">What\u2019s the cheapest time to charge an EV?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Overnight during off-peak electricity hours (varies by utility).<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1756742804484\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Does fast charging cost more?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Yes, DC fast charging is convenient but more expensive than home or Level 2 charging.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n<p>Electric vehicles aren\u2019t just the future \u2014 they\u2019re the present. With charging costs averaging <strong>60\u201370% lower than gasoline fueling<\/strong>, EV ownership delivers long-term savings and sustainability benefits. Our <strong>EV Charging Cost Calculator<\/strong> helps you clearly see the financial advantages of driving electric, whether you\u2019re charging at home or on the road.<\/p>\n\n\n\n<p>At <a href=\"https:\/\/motomarketinglab.com\/de\/\" data-type=\"link\" data-id=\"https:\/\/motomarketinglab.com\/\">Moto Marketing Lab<\/a>, we specialize in helping automotive businesses, EV dealers, and charging solution providers connect with the right customers online. Just as this calculator gives drivers a clear view of their costs, our <a href=\"https:\/\/motomarketinglab.com\/de\/services\/\">data-driven SEO strategies<\/a> give your business a clear path to growth in a competitive digital landscape.<\/p>\n\n\n\n<p>\ud83d\udc49 If you\u2019re an EV brand, dealership, or automotive service provider, partner with <strong>Moto Marketing Lab<\/strong> to increase visibility, generate qualified leads, and stay ahead in the fast-evolving automotive industry.<\/p>","protected":false},"excerpt":{"rendered":"<p>Calculate the Cost to Charge Your EV to Full Capacity Battery Size (kWh) Electricity Cost ($\/kWh) Note: the average price of electricity is about 16 cents per kWh. Calculate Electricity Cost Estimate: $0.00 Calculate the Cost to Drive a Set Distance Efficiency kWh \/ 100 mikWh \/ 100 kmMPGe Distance mileskilometers Electricity Cost ($\/kWh) Note:&#8230;<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[16],"tags":[],"class_list":["post-1735","page","type-page","status-publish","hentry","category-tools-calculators"],"_links":{"self":[{"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/pages\/1735","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/comments?post=1735"}],"version-history":[{"count":4,"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/pages\/1735\/revisions"}],"predecessor-version":[{"id":1739,"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/pages\/1735\/revisions\/1739"}],"wp:attachment":[{"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/media?parent=1735"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/categories?post=1735"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/motomarketinglab.com\/de\/wp-json\/wp\/v2\/tags?post=1735"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}