{"id":26824,"date":"2026-09-16T10:25:00","date_gmt":"2026-09-16T10:25:00","guid":{"rendered":"https:\/\/netguide.io\/smart-home\/connect-solarwatt-manager-flex-to-home-assistant-via-rest\/"},"modified":"2026-09-16T10:25:02","modified_gmt":"2026-09-16T10:25:02","slug":"connect-solarwatt-manager-flex-to-home-assistant-via-rest","status":"publish","type":"post","link":"https:\/\/netguide.io\/smart-home\/en\/connect-solarwatt-manager-flex-to-home-assistant-via-rest\/","title":{"rendered":"Connect Solarwatt Manager Flex to Home Assistant via REST"},"content":{"rendered":"<div id=\"netgu-1799158674\" class=\"netgu-before-content netgu-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6258556257245998\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-6258556257245998\" \ndata-ad-slot=\"3494115342\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div><p>The Solarwatt Manager Flex controls your local energy system, but importing its data into <a href=\"https:\/\/netguide.io\/smart-home\/category\/home-assistant\/\" data-internallinksmanager029f6b8e52c=\"2\" title=\"Home Assistant\">Home Assistant<\/a> requires a bit of manual setup. Using the local REST API, you can retrieve real-time readings for grid feed-in, grid consumption, and battery storage. This guide walks you through querying the endpoints and properly defining the entities in <a href=\"https:\/\/netguide.io\/smart-home\/category\/home-assistant\/\" data-internallinksmanager029f6b8e52c=\"2\" title=\"Home Assistant\">Home Assistant<\/a> via YAML.<\/p>\n\n<h2>What You Need<\/h2>\n<ul>\n  <li><a href=\"https:\/\/netguide.io\/smart-home\/category\/home-assistant\/\" data-internallinksmanager029f6b8e52c=\"2\" title=\"Home Assistant\">Home Assistant<\/a> with access to your <code>configuration.yaml<\/code> file<\/li>\n  <li>A Solarwatt Manager Flex on your local network (ideally configured with a static IP address)<\/li>\n<\/ul>\n\n<h2>1. Identify Network Data Points<\/h2>\n<p>The Solarwatt Manager Flex provides a local interface. Open your web browser and navigate to <code>http:\/\/&lt;YOUR-MANAGER-IP&gt;\/rest\/items<\/code> to view the list of all reported data points in JSON format.<\/p>\n<p>Search the JSON output for your component names (such as <em>batteryStateOfCharge<\/em>, <em>harmonized_net_power_in<\/em>, or <em>harmonized_net_power_out<\/em>). Once identified, you can query these individual data points directly via their respective URLs.<\/p>\n\n<h2>2. Add REST Sensors to configuration.yaml<\/h2>\n<p>Add the desired sensors to your configuration. Querying individual data points directly prevents issues that occur with fixed array indices when device configurations change. Because the raw data frequently contains timestamps and units (such as <code>1729607445000|8.33 W<\/code>), you can parse the string using <code>split<\/code> or <code>trim<\/code> to extract a clean numerical value.<\/p>\n<p>Add the following block to your <code>configuration.yaml<\/code>, making sure to replace the IP address <code>192.168.1.176<\/code> and the component IDs with your own:<\/p>\n<div class=\"wp-block-kevinbatdorf-code-block-pro\" data-code-block-pro-font-family=\"Code-Pro-JetBrains-Mono\" style=\"font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)\"><span style=\"display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#24292e\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"54\" height=\"14\" viewBox=\"0 0 54 14\"><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(1 1)\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"#FF5F56\" stroke=\"#E0443E\" stroke-width=\".5\"><\/circle><circle cx=\"26\" cy=\"6\" r=\"6\" fill=\"#FFBD2E\" stroke=\"#DEA123\" stroke-width=\".5\"><\/circle><circle cx=\"46\" cy=\"6\" r=\"6\" fill=\"#27C93F\" stroke=\"#1AAB29\" stroke-width=\".5\"><\/circle><\/g><\/svg><\/span><span role=\"button\" tabindex=\"0\" style=\"color:#e1e4e8;display:none\" aria-label=\"Copy\" class=\"code-block-pro-copy-button\"><pre class=\"code-block-pro-copy-button-pre\" aria-hidden=\"true\"><textarea class=\"code-block-pro-copy-button-textarea\" tabindex=\"-1\" aria-hidden=\"true\" readonly>sensor:\n  - platform: rest\n    resource: \"http:\/\/192.168.1.176\/rest\/items\/solarwattBattery_batteryflex_BatteryFlex_0BC333_batteryChannelGroup_batteryStateOfCharge\"\n    name: \"Solarwatt - Battery State of Charge\"\n    unique_id: \"intern.solarwatt.battery.soc\"\n    device_class: battery\n    state_class: measurement\n    unit_of_measurement: \"%\"\n    value_template: \"{{ float(value_json.state) }}\"\n\n  - platform: rest\n    resource: \"http:\/\/192.168.1.176\/rest\/items\/kiwigrid_location_standard_f3383059f84f_harmonized_power_in\"\n    name: \"Solarwatt - Grid Consumption Power\"\n    unique_id: \"intern.solarwatt.net.power.in\"\n    device_class: power\n    state_class: measurement\n    unit_of_measurement: \"W\"\n    value_template: \"{{ float(value_json.state.split('|')[1].split(' ')[0]) }}\"\n\n  - platform: rest\n    resource: \"http:\/\/192.168.1.176\/rest\/items\/kiwigrid_location_standard_f3383059f84f_harmonized_power_out\"\n    name: \"Solarwatt - Grid Feed-in Power\"\n    unique_id: \"intern.solarwatt.net.power.out\"\n    device_class: power\n    state_class: measurement\n    unit_of_measurement: \"W\"\n    value_template: \"{{ float(value_json.state.split('|')[1].split(' ')[0]) }}\"<\/textarea><\/pre><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:24px;height:24px\" fill=\"none\" viewBox=\"0 0 24 24\" stroke=\"currentColor\" stroke-width=\"2\"><path class=\"with-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\"><\/path><path class=\"without-check\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\"><\/path><\/svg><\/span><pre class=\"shiki github-dark\" style=\"background-color: #24292e\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #85E89D\">sensor<\/span><span style=\"color: #E1E4E8\">:<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">  - <\/span><span style=\"color: #85E89D\">platform<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">rest<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">resource<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;http:\/\/192.168.1.176\/rest\/items\/solarwattBattery_batteryflex_BatteryFlex_0BC333_batteryChannelGroup_batteryStateOfCharge&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">name<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;Solarwatt - Battery State of Charge&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">unique_id<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;intern.solarwatt.battery.soc&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">device_class<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">battery<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">state_class<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">measurement<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">unit_of_measurement<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;%&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">value_template<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;{{ float(value_json.state) }}&quot;<\/span><\/span>\n<span class=\"line\"><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">  - <\/span><span style=\"color: #85E89D\">platform<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">rest<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">resource<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;http:\/\/192.168.1.176\/rest\/items\/kiwigrid_location_standard_f3383059f84f_harmonized_power_in&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">name<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;Solarwatt - Grid Consumption Power&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">unique_id<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;intern.solarwatt.net.power.in&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">device_class<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">power<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">state_class<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">measurement<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">unit_of_measurement<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;W&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">value_template<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;{{ float(value_json.state.split(&#39;|&#39;)[1].split(&#39; &#39;)[0]) }}&quot;<\/span><\/span>\n<span class=\"line\"><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">  - <\/span><span style=\"color: #85E89D\">platform<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">rest<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">resource<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;http:\/\/192.168.1.176\/rest\/items\/kiwigrid_location_standard_f3383059f84f_harmonized_power_out&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">name<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;Solarwatt - Grid Feed-in Power&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">unique_id<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;intern.solarwatt.net.power.out&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">device_class<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">power<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">state_class<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">measurement<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">unit_of_measurement<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;W&quot;<\/span><\/span>\n<span class=\"line\"><span style=\"color: #E1E4E8\">    <\/span><span style=\"color: #85E89D\">value_template<\/span><span style=\"color: #E1E4E8\">: <\/span><span style=\"color: #9ECBFF\">&quot;{{ float(value_json.state.split(&#39;|&#39;)[1].split(&#39; &#39;)[0]) }}&quot;<\/span><\/span><\/code><\/pre><\/div>\n\n<h2>3. Check and Reload the Configuration<\/h2>\n<p>Validate your configuration under <strong>Developer Tools &gt; YAML &gt; Check Configuration<\/strong>. Next, reload <em>REST Entities<\/em> or restart <a href=\"https:\/\/netguide.io\/smart-home\/category\/home-assistant\/\" data-internallinksmanager029f6b8e52c=\"2\" title=\"Home Assistant\">Home Assistant<\/a> to initialize the new sensors.<\/p>\n\n<h2>4. Optional: Integral Sensor for Energy Values<\/h2>\n<p>If your endpoint only outputs instantaneous power in watts, you can use a helper to calculate cumulative energy consumption over time.<\/p>\n<p>Navigate to <strong>Settings &gt; Devices &amp; Services &gt; Helpers &gt; Create Helper<\/strong> and select <em>Integration &#8211; Riemann sum integral sensor<\/em>. Choose your grid feed-in or grid consumption sensor as the input, select <em>Left Riemann sum<\/em> as the integration method, set the metric prefix to <em>k (kilo)<\/em>, and select <em>Hours<\/em> as the time unit.<\/p>\n\n<h2>Verify the Setup<\/h2>\n<p>Open <strong>Developer Tools &gt; States<\/strong> and filter for <code>sensor.solarwatt<\/code>. The new sensors should display numerical values for both state of charge and power readings. The values will refresh according to the REST integration&#8217;s polling interval.<\/p>\n\n<h2>Troubleshooting<\/h2>\n<ul>\n  <li><strong>Entity displays &#8220;unknown&#8221;:<\/strong> The format in the <code>state<\/code> field differs. Access the REST URL directly in your browser and check whether the string includes a delimiter like <code>|<\/code> or simply ends with the unit. Adjust the <code>value_template<\/code> accordingly.<\/li>\n  <li><strong>&#8220;Authorization required&#8221; error:<\/strong> Certain firmware versions require authentication credentials for the web interface. Check your energy manager&#8217;s device password (often found on a sticker on the unit or inside your electrical cabinet).<\/li>\n  <li><strong>Sensor reports unexpected values:<\/strong> Check the units and data types in your configuration, as well as the delimiters in the raw response.<\/li>\n<\/ul>\n<p>With clean telemetry data in Home Assistant, you can now automate EV chargers or home appliances based on PV surplus.<\/p>\n<p><em>Quellen: <a href=\"https:\/\/community.simon42.com\/t\/solarwatt-manager-flex-auslesen-via-rest\/35232\" rel=\"nofollow noopener\" target=\"_blank\">Forum: Simon42 &#8211; Forum<\/a>, <a href=\"https:\/\/community.simon42.com\/t\/solarwatt-manager-flex-auslesen-via-rest\/35232\" rel=\"nofollow noopener\" target=\"_blank\">community.simon42.com<\/a>, <a href=\"https:\/\/community.simon42.com\/t\/solarwatt-manager-home-assistant-integration\/76331\" rel=\"nofollow noopener\" target=\"_blank\">community.simon42.com<\/a>, <a href=\"https:\/\/community.home-assistant.io\/t\/solarwatt-manager-flex-1-0\/711722\" rel=\"nofollow noopener\" target=\"_blank\">community.home-assistant.io<\/a><\/em><\/p><div id=\"netgu-1186511786\" class=\"netgu-after-content netgu-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-6258556257245998\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-6258556257245998\" \ndata-ad-slot=\"4559785002\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Read power and battery metrics from the Solarwatt Manager Flex directly into Home Assistant using its REST API. Here is how to configure the sensors.<\/p>\n","protected":false},"author":1,"featured_media":26821,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[26],"tags":[3793,3770,3791,3788,3787,3795],"class_list":["post-26824","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-smart-home-en-en","tag-energy-management","tag-home-assistant-en","tag-photovoltaics","tag-rest-api-en","tag-solarwatt-en","tag-yaml-en"],"uagb_featured_image_src":{"full":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/solarwatt-manager-flex-per-rest-in-home-assistant-einbinden-editorial-editorial-68536-a0ee5d9f90a7fa4fe188f870d1dd64b3cb8.jpeg.jpg",874,766,false],"thumbnail":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/solarwatt-manager-flex-per-rest-in-home-assistant-einbinden-editorial-editorial-68536-a0ee5d9f90a7fa4fe188f870d1dd64b3cb8.jpeg-150x150.jpg",150,150,true],"medium":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/solarwatt-manager-flex-per-rest-in-home-assistant-einbinden-editorial-editorial-68536-a0ee5d9f90a7fa4fe188f870d1dd64b3cb8.jpeg-300x263.jpg",300,263,true],"medium_large":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/solarwatt-manager-flex-per-rest-in-home-assistant-einbinden-editorial-editorial-68536-a0ee5d9f90a7fa4fe188f870d1dd64b3cb8.jpeg-768x673.jpg",768,673,true],"large":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/solarwatt-manager-flex-per-rest-in-home-assistant-einbinden-editorial-editorial-68536-a0ee5d9f90a7fa4fe188f870d1dd64b3cb8.jpeg.jpg",874,766,false],"1536x1536":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/solarwatt-manager-flex-per-rest-in-home-assistant-einbinden-editorial-editorial-68536-a0ee5d9f90a7fa4fe188f870d1dd64b3cb8.jpeg.jpg",874,766,false],"2048x2048":["https:\/\/netguide.io\/smart-home\/wp-content\/uploads\/sites\/3\/2026\/09\/solarwatt-manager-flex-per-rest-in-home-assistant-einbinden-editorial-editorial-68536-a0ee5d9f90a7fa4fe188f870d1dd64b3cb8.jpeg.jpg",874,766,false]},"uagb_author_info":{"display_name":"Tobias","author_link":"https:\/\/netguide.io\/smart-home\/author\/tobias-pries\/"},"uagb_comment_info":0,"uagb_excerpt":"Read power and battery metrics from the Solarwatt Manager Flex directly into Home Assistant using its REST API. Here is how to configure the sensors.","brizy_media":[],"_links":{"self":[{"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/posts\/26824","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/comments?post=26824"}],"version-history":[{"count":1,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/posts\/26824\/revisions"}],"predecessor-version":[{"id":26825,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/posts\/26824\/revisions\/26825"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/media\/26821"}],"wp:attachment":[{"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/media?parent=26824"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/categories?post=26824"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/netguide.io\/smart-home\/wp-json\/wp\/v2\/tags?post=26824"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}