{"id":1628,"date":"2026-05-10T14:41:37","date_gmt":"2026-05-10T12:41:37","guid":{"rendered":"https:\/\/itc-lucke.com\/usv-at-home\/"},"modified":"2026-05-10T14:48:52","modified_gmt":"2026-05-10T12:48:52","slug":"usv-at-home","status":"publish","type":"post","link":"https:\/\/itc-lucke.com\/en\/usv-at-home\/","title":{"rendered":"USV at home"},"content":{"rendered":"<section class=\"ups-blogpost\">\n<h1>Safe Shutdown for TrueNAS Scale and Proxmox using an APC Back-UPS and NUT Remote Shutdown<\/h1>\n<p>\n    Many small businesses and homelabs today operate multiple systems at the same time:<br \/>\n    a TrueNAS Scale storage server, a Proxmox virtualization host and several<br \/>\n    network devices such as routers or switches.\n  <\/p>\n<p>\n    Even a short power outage can cause unclean shutdowns of virtual machines,<br \/>\n    ZFS pools or running services. In this article I demonstrate a simple and<br \/>\n    reliable setup where TrueNAS Scale acts as the central UPS master and safely<br \/>\n    shuts down a Proxmox host over the network.\n  <\/p>\n<h2>Goal of this setup<\/h2>\n<ul>\n<li>Connect the UPS directly to TrueNAS Scale via USB<\/li>\n<li>Use Proxmox as a remote monitoring client<\/li>\n<li>Automatically shut systems down during power outages<\/li>\n<li>Protect VMs and ZFS pools from sudden power loss<\/li>\n<li>Keep routers and network devices online as long as possible<\/li>\n<\/ul>\n<h2>Hardware used<\/h2>\n<ul>\n<li>APC Back-UPS RS 550G<\/li>\n<li>TrueNAS Scale<\/li>\n<li>Proxmox VE<\/li>\n<li>Standard local network<\/li>\n<\/ul>\n<h2>Architecture<\/h2>\n<pre>\nUPS (USB)\n   \u2502\n   \u2514\u2500\u2500 TrueNAS Scale (NUT Master)\n            \u2502\n            \u2514\u2500\u2500 Network\n                    \u2502\n                    \u2514\u2500\u2500 Proxmox VE (NUT Client)\n  <\/pre>\n<h2>Configure TrueNAS Scale<\/h2>\n<p>\n    The UPS is connected directly to the TrueNAS system via USB.<br \/>\n    TrueNAS then operates as the central NUT server.\n  <\/p>\n<h3>Enable the UPS service<\/h3>\n<ul>\n<li>System Settings \u2192 Services \u2192 UPS<\/li>\n<li>UPS Mode: Master<\/li>\n<li>Driver: APC ups 2 Back-UPS Pro USB<\/li>\n<li>Port: automatically detected<\/li>\n<\/ul>\n<h3>Recommended settings<\/h3>\n<pre><code>\nShutdown Mode: UPS goes on battery\nShutdown Timer: 30\nHost Sync: 15\nPower Off UPS: disabled\n  <\/code><\/pre>\n<h3>Enable remote monitoring<\/h3>\n<p>\n    Important: enable \u201cRemote Monitor\u201d so that other systems<br \/>\n    can access the UPS status over the network.\n  <\/p>\n<h3>Optional runtime override<\/h3>\n<p>\n    Especially with APC Back-UPS devices, runtime estimation can be inaccurate.<br \/>\n    A conservative override is therefore recommended.\n  <\/p>\n<pre><code>\noverride.battery.runtime.low = 60\n  <\/code><\/pre>\n<h2>Check UPS status<\/h2>\n<pre><code>\nupsc ups@localhost\n  <\/code><\/pre>\n<p>Important values:<\/p>\n<pre><code>\nbattery.runtime\nbattery.runtime.low\nbattery.charge\nups.status\n  <\/code><\/pre>\n<h2>Configure Proxmox as NUT client<\/h2>\n<h3>Install NUT<\/h3>\n<pre><code>\napt update\napt install nut-client\n  <\/code><\/pre>\n<h3>\/etc\/nut\/nut.conf<\/h3>\n<pre><code>\nMODE=netclient\n  <\/code><\/pre>\n<h3>\/etc\/nut\/upsmon.conf<\/h3>\n<pre><code>\nMONITOR ups@192.168.178.100 1 upsmon fixmepass slave\nMINSUPPLIES 1\nSHUTDOWNCMD \"\/sbin\/shutdown -h now\"\nPOWERDOWNFLAG \/etc\/killpower\n  <\/code><\/pre>\n<p>\n    Where:\n  <\/p>\n<ul>\n<li><strong>192.168.178.100<\/strong> = IP address of the TrueNAS server<\/li>\n<li><strong>ups<\/strong> = UPS name<\/li>\n<li><strong>upsmon\/fixmepass<\/strong> = monitoring user configured in TrueNAS<\/li>\n<\/ul>\n<h3>Enable the service<\/h3>\n<pre><code>\nsystemctl enable nut-client\nsystemctl restart nut-client\n  <\/code><\/pre>\n<h2>Test the connection<\/h2>\n<h3>Port test<\/h3>\n<pre><code>\nnc -zv 192.168.178.100 3493\n  <\/code><\/pre>\n<h3>Read UPS status<\/h3>\n<pre><code>\nupsc ups@192.168.178.100\n  <\/code><\/pre>\n<h3>Monitor logs<\/h3>\n<pre><code>\njournalctl -f | grep -Ei \"ups|nut|shutdown|fsd\"\n  <\/code><\/pre>\n<h2>Real-world test<\/h2>\n<p>\n    After disconnecting the UPS from mains power,<br \/>\n    the following sequence should appear:\n  <\/p>\n<pre><code>\nUPS on battery\n\u2192 Shutdown timer starts\n\u2192 FSD (Forced Shutdown)\n\u2192 Proxmox shuts down\n\u2192 TrueNAS shuts down\n  <\/code><\/pre>\n<h2>Important findings<\/h2>\n<ul>\n<li>Low-cost APC Back-UPS devices often provide inaccurate runtime estimations<\/li>\n<li>After replacing the battery, the runtime curve may require recalibration<\/li>\n<li>A conservative shutdown timer is usually more reliable than percentage indicators<\/li>\n<li>30 seconds is sufficient for many small environments<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>\n    For small server environments this setup is surprisingly effective.<br \/>\n    Even affordable APC Back-UPS models are capable of safely shutting down<br \/>\n    TrueNAS and Proxmox systems while protecting data integrity.\n  <\/p>\n<p>\n    Users who later require advanced monitoring, accurate battery analytics<br \/>\n    or SNMP integration can easily upgrade to an APC Smart-UPS system.\n  <\/p>\n<p>\n    For homelabs, small offices and private virtualization environments,<br \/>\n    the combination of TrueNAS Scale, Proxmox and NUT already provides<br \/>\n    a highly reliable and professional solution.\n  <\/p>\n<\/section>\n<section class=\"ups-eventlog\">\n<h2>Real-world shutdown event log<\/h2>\n<p>\n    The following log shows the actual shutdown sequence during a simulated power outage.<br \/>\n    TrueNAS Scale was connected directly to the UPS via USB and acted as the NUT master.<br \/>\n    Proxmox was configured as a secondary NUT client over the network.\n  <\/p>\n<h3>Timeline<\/h3>\n<table>\n<thead>\n<tr>\n<th>Time<\/th>\n<th>System<\/th>\n<th>Event<\/th>\n<th>Explanation<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>14:33:05<\/td>\n<td>Proxmox<\/td>\n<td>Temporary UPS communication loss<\/td>\n<td>\n          Proxmox briefly lost the connection to the TrueNAS NUT server.<br \/>\n          This can happen during service restarts or network polling interruptions.\n        <\/td>\n<\/tr>\n<tr>\n<td>14:33:10<\/td>\n<td>Proxmox<\/td>\n<td>UPS communication restored<\/td>\n<td>\n          The NUT connection to TrueNAS was re-established successfully.<br \/>\n          Remote monitoring was working again.\n        <\/td>\n<\/tr>\n<tr>\n<td>14:33:50<\/td>\n<td>Proxmox<\/td>\n<td>UPS on battery<\/td>\n<td>\n          Proxmox received the ONBATT state from TrueNAS.<br \/>\n          This means the UPS had switched from mains power to battery operation.\n        <\/td>\n<\/tr>\n<tr>\n<td>14:34:10<\/td>\n<td>Proxmox<\/td>\n<td>Forced shutdown in progress<\/td>\n<td>\n          TrueNAS triggered FSD, short for Forced Shutdown.<br \/>\n          As a secondary NUT client, Proxmox immediately started its automatic power-fail shutdown.\n        <\/td>\n<\/tr>\n<tr>\n<td>14:34:10<\/td>\n<td>Proxmox<\/td>\n<td>Battery low received<\/td>\n<td>\n          The LOWBATT state was also received from the NUT master.<br \/>\n          With inexpensive APC Back-UPS models this value can be conservative,<br \/>\n          but in this setup the actual shutdown is controlled by the timer.\n        <\/td>\n<\/tr>\n<tr>\n<td>14:34:10<\/td>\n<td>Proxmox<\/td>\n<td>Automatic shutdown started<\/td>\n<td>\n          Proxmox executed the configured shutdown command and began shutting down the host<br \/>\n          and its virtual machines.\n        <\/td>\n<\/tr>\n<tr>\n<td>14:34:15<\/td>\n<td>TrueNAS<\/td>\n<td>Automatic power-fail shutdown<\/td>\n<td>\n          TrueNAS started its own shutdown sequence after triggering the shutdown event<br \/>\n          for connected NUT clients.\n        <\/td>\n<\/tr>\n<tr>\n<td>14:34:20<\/td>\n<td>TrueNAS<\/td>\n<td>System poweroff<\/td>\n<td>\n          TrueNAS displayed the final system message:<br \/>\n          \u201cThe system will power off now!\u201d<br \/>\n          This confirms that the shutdown process reached the operating system poweroff stage.\n        <\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Measured shutdown sequence<\/h3>\n<pre><code>\n14:33:50  Proxmox receives ONBATT\n14:34:10  Proxmox receives FSD and starts shutdown\n14:34:15  TrueNAS starts automatic power-fail shutdown\n14:34:20  TrueNAS announces system poweroff\n  <\/code><\/pre>\n<h3>Result<\/h3>\n<p>\n    The test confirmed that the NUT master\/client setup works correctly:<br \/>\n    TrueNAS detects the UPS event, triggers the forced shutdown and Proxmox reacts<br \/>\n    as expected as a secondary client.\n  <\/p>\n<p>\n    The Proxmox host started shutting down approximately 20 seconds after the ONBATT event.<br \/>\n    TrueNAS followed a few seconds later and reached the final poweroff stage.\n  <\/p>\n<p>\n    This behavior is exactly what is desired in a small homelab or office environment:<br \/>\n    the virtualization host shuts down first, followed by the storage system.<br \/>\n    Network devices such as a router or switch can remain connected to the UPS<br \/>\n    and continue running for some additional time.\n  <\/p>\n<\/section>\n","protected":false},"excerpt":{"rendered":"<p>Safe Shutdown for TrueNAS Scale and Proxmox using an APC Back-UPS and NUT Remote Shutdown Many small businesses and homelabs today operate multiple systems at the same time: a TrueNAS Scale storage server, a Proxmox virtualization host and several network devices such as routers or switches. Even a short power outage can cause unclean shutdowns [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1635,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[34],"tags":[],"class_list":["post-1628","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news-en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>USV at home - IT Consulting Lucke<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/itc-lucke.com\/en\/usv-at-home\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"USV at home\" \/>\n<meta property=\"og:description\" content=\"Safe Shutdown for TrueNAS Scale and Proxmox using an APC Back-UPS and NUT Remote Shutdown Many small businesses and homelabs today operate multiple systems at the same time: a TrueNAS Scale storage server, a Proxmox virtualization host and several network devices such as routers or switches. Even a short power outage can cause unclean shutdowns [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/itc-lucke.com\/en\/usv-at-home\/\" \/>\n<meta property=\"og:site_name\" content=\"IT Consulting Lucke\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-10T12:41:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-10T12:48:52+00:00\" \/>\n<meta name=\"author\" content=\"SaschaITC257\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"SaschaITC257\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/\"},\"author\":{\"name\":\"SaschaITC257\",\"@id\":\"https:\/\/itc-lucke.com\/#\/schema\/person\/ea4b56279cfddc28436bacfee4166b36\"},\"headline\":\"USV at home\",\"datePublished\":\"2026-05-10T12:41:37+00:00\",\"dateModified\":\"2026-05-10T12:48:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/\"},\"wordCount\":756,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itc-lucke.com\/wp-content\/uploads\/2026\/05\/usv.png\",\"articleSection\":[\"News\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/itc-lucke.com\/en\/usv-at-home\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/\",\"url\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/\",\"name\":\"USV at home - IT Consulting Lucke\",\"isPartOf\":{\"@id\":\"https:\/\/itc-lucke.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itc-lucke.com\/wp-content\/uploads\/2026\/05\/usv.png\",\"datePublished\":\"2026-05-10T12:41:37+00:00\",\"dateModified\":\"2026-05-10T12:48:52+00:00\",\"author\":{\"@id\":\"https:\/\/itc-lucke.com\/#\/schema\/person\/ea4b56279cfddc28436bacfee4166b36\"},\"breadcrumb\":{\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/itc-lucke.com\/en\/usv-at-home\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/#primaryimage\",\"url\":\"https:\/\/itc-lucke.com\/wp-content\/uploads\/2026\/05\/usv.png\",\"contentUrl\":\"https:\/\/itc-lucke.com\/wp-content\/uploads\/2026\/05\/usv.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/itc-lucke.com\/en\/usv-at-home\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/itc-lucke.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"USV at home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/itc-lucke.com\/#website\",\"url\":\"https:\/\/itc-lucke.com\/\",\"name\":\"IT Consulting Lucke\",\"description\":\"IT - Infrastruktur - Marketing - Social Media - Specials\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/itc-lucke.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/itc-lucke.com\/#\/schema\/person\/ea4b56279cfddc28436bacfee4166b36\",\"name\":\"SaschaITC257\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/5e98165f4576be428325f0de12d2aba65cff688b70a4043d1a3f822383ce7b27?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5e98165f4576be428325f0de12d2aba65cff688b70a4043d1a3f822383ce7b27?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5e98165f4576be428325f0de12d2aba65cff688b70a4043d1a3f822383ce7b27?s=96&d=mm&r=g\",\"caption\":\"SaschaITC257\"},\"url\":\"https:\/\/itc-lucke.com\/en\/author\/saschaitc257\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"USV at home - IT Consulting Lucke","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:\/\/itc-lucke.com\/en\/usv-at-home\/","og_locale":"en_US","og_type":"article","og_title":"USV at home","og_description":"Safe Shutdown for TrueNAS Scale and Proxmox using an APC Back-UPS and NUT Remote Shutdown Many small businesses and homelabs today operate multiple systems at the same time: a TrueNAS Scale storage server, a Proxmox virtualization host and several network devices such as routers or switches. Even a short power outage can cause unclean shutdowns [&hellip;]","og_url":"https:\/\/itc-lucke.com\/en\/usv-at-home\/","og_site_name":"IT Consulting Lucke","article_published_time":"2026-05-10T12:41:37+00:00","article_modified_time":"2026-05-10T12:48:52+00:00","author":"SaschaITC257","twitter_card":"summary_large_image","twitter_misc":{"Written by":"SaschaITC257","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/#article","isPartOf":{"@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/"},"author":{"name":"SaschaITC257","@id":"https:\/\/itc-lucke.com\/#\/schema\/person\/ea4b56279cfddc28436bacfee4166b36"},"headline":"USV at home","datePublished":"2026-05-10T12:41:37+00:00","dateModified":"2026-05-10T12:48:52+00:00","mainEntityOfPage":{"@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/"},"wordCount":756,"commentCount":0,"image":{"@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/#primaryimage"},"thumbnailUrl":"https:\/\/itc-lucke.com\/wp-content\/uploads\/2026\/05\/usv.png","articleSection":["News"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/itc-lucke.com\/en\/usv-at-home\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/","url":"https:\/\/itc-lucke.com\/en\/usv-at-home\/","name":"USV at home - IT Consulting Lucke","isPartOf":{"@id":"https:\/\/itc-lucke.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/#primaryimage"},"image":{"@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/#primaryimage"},"thumbnailUrl":"https:\/\/itc-lucke.com\/wp-content\/uploads\/2026\/05\/usv.png","datePublished":"2026-05-10T12:41:37+00:00","dateModified":"2026-05-10T12:48:52+00:00","author":{"@id":"https:\/\/itc-lucke.com\/#\/schema\/person\/ea4b56279cfddc28436bacfee4166b36"},"breadcrumb":{"@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/itc-lucke.com\/en\/usv-at-home\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/#primaryimage","url":"https:\/\/itc-lucke.com\/wp-content\/uploads\/2026\/05\/usv.png","contentUrl":"https:\/\/itc-lucke.com\/wp-content\/uploads\/2026\/05\/usv.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/itc-lucke.com\/en\/usv-at-home\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/itc-lucke.com\/en\/"},{"@type":"ListItem","position":2,"name":"USV at home"}]},{"@type":"WebSite","@id":"https:\/\/itc-lucke.com\/#website","url":"https:\/\/itc-lucke.com\/","name":"IT Consulting Lucke","description":"IT - Infrastruktur - Marketing - Social Media - Specials","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/itc-lucke.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/itc-lucke.com\/#\/schema\/person\/ea4b56279cfddc28436bacfee4166b36","name":"SaschaITC257","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5e98165f4576be428325f0de12d2aba65cff688b70a4043d1a3f822383ce7b27?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5e98165f4576be428325f0de12d2aba65cff688b70a4043d1a3f822383ce7b27?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5e98165f4576be428325f0de12d2aba65cff688b70a4043d1a3f822383ce7b27?s=96&d=mm&r=g","caption":"SaschaITC257"},"url":"https:\/\/itc-lucke.com\/en\/author\/saschaitc257\/"}]}},"_links":{"self":[{"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/posts\/1628","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/comments?post=1628"}],"version-history":[{"count":3,"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/posts\/1628\/revisions"}],"predecessor-version":[{"id":1632,"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/posts\/1628\/revisions\/1632"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/media\/1635"}],"wp:attachment":[{"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/media?parent=1628"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/categories?post=1628"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itc-lucke.com\/en\/wp-json\/wp\/v2\/tags?post=1628"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}