{"id":550,"date":"2023-11-17T08:00:49","date_gmt":"2023-11-17T08:00:49","guid":{"rendered":"https:\/\/www.bleuio.com\/blog\/?p=550"},"modified":"2023-11-20T06:50:20","modified_gmt":"2023-11-20T06:50:20","slug":"creating-a-home-assistant-integration-with-hibouair-and-bleuio","status":"publish","type":"post","link":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/","title":{"rendered":"Creating a Home Assistant Integration with HibouAir and BleuIO"},"content":{"rendered":"\n<p>In this tutorial, we will walk you through the process of creating a <a href=\"https:\/\/www.home-assistant.io\/\" target=\"_blank\" rel=\"noreferrer noopener\">Home Assistant integration<\/a> to read <a href=\"https:\/\/www.hibouair.com\/\">air quality data<\/a> from a BLE air quality monitor called HibouAir. To accomplish this, we&#8217;ll be using BleuIO, a BLE USB dongle, to read data via the serial port. BleuIO comes equipped with a Python library that simplifies the project significantly. This integration provides real-time updates of various air quality parameters, such as pressure, temperature, humidity, VOC, CO2 and Particle Matters.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before we dive into the implementation, make sure you have the following prerequisites in place:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>HibouAir Air Quality Monitor<\/strong>: Ensure you have a <a href=\"https:\/\/www.hibouair.com\/\">HibouAir air quality monitor<\/a>. You can obtain it from the official source.<\/li>\n\n\n\n<li><strong>BleuIO BLE USB Dongle<\/strong>: Acquire a <a href=\"https:\/\/www.bleuio.com\/\">BleuIO BLE USB dongle<\/a> to facilitate communication with the HibouAir monitor.<\/li>\n\n\n\n<li><strong>Host Computer<\/strong>: We&#8217;ll use a Windows-based host computer in this example.<\/li>\n\n\n\n<li><strong>Home Assistant<\/strong>: Install Home Assistant and have it up and running. You can run Home Assistant within a virtual machine using VirtualBox, as demonstrated in this tutorial.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Implementation<\/h2>\n\n\n\n<p>Let&#8217;s start by setting up the Home Assistant integration for HibouAir and BleuIO. You can find the complete code for this project on the following GitHub repository:<\/p>\n\n\n\n<p><strong>GitHub Repository:<\/strong> <a href=\"https:\/\/github.com\/smart-sensor-devices-ab\/hibouair-home-assistant-ble\">HibouAir Home Assistant BLE Integration<\/a><\/p>\n\n\n\n<p>Follow these steps to implement the integration:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Set Up the Custom Component<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a folder named <code><strong>custom_components<\/strong><\/code> within your Home Assistant directory.<\/li>\n\n\n\n<li>Inside the <code><strong>custom_components<\/strong><\/code> directory, create a subfolder named <code><strong>hibouair_ble<\/strong><\/code>.<\/li>\n\n\n\n<li>Copy all the files from the GitHub repository (<code>__init__.py<\/code>, <code>const.py<\/code>, <code>manifest.json<\/code>, and <code>sensor.py<\/code>) into the <code>hibouair_ble<\/code> directory.<\/li>\n\n\n\n<li>Open the <code>const.py<\/code> file and update the HibouAir sensor ID to match your specific device. This ID is used to identify the devices advertised data.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"915\" height=\"876\" src=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-1.png\" alt=\"\" class=\"wp-image-552\" srcset=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-1.png 915w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-1-300x287.png 300w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-1-768x735.png 768w\" sizes=\"auto, (max-width: 915px) 100vw, 915px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">2. Update Configuration<\/h3>\n\n\n\n<p>Edit your Home Assistant configuration file (<code>configuration.yaml<\/code>) to include the newly added HibouAir BLE sensor:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>sensor: <\/code>\n<code>    - platform: hibouair_ble <\/code>\n<code>      scan_interval: 120<\/code><\/code><\/pre>\n\n\n\n<p>Here&#8217;s a brief explanation of this configuration:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>platform<\/code>: Specifies the integration to use, which is <code>hibouair_ble<\/code> in this case.<\/li>\n\n\n\n<li><code>scan_interval<\/code>: Sets the interval for scanning and updating data. The example uses 120 seconds (2 minutes) for real-time data updates. Adjust this value according to your preference.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3. Restart Home Assistant<\/h3>\n\n\n\n<p>After updating the configuration, save the file and restart your Home Assistant instance. This will enable the integration.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Monitor Air Quality Data<\/h3>\n\n\n\n<p>Once Home Assistant is restarted, you should be able to see entities representing various air quality parameters with the <code>hibouair_ble<\/code> prefix. These parameters may include pressure, temperature, humidity, VOC, CO2, and more. The air quality data will update every 2 minutes, providing real-time information about your environment.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"498\" src=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-2-1024x498.png\" alt=\"\" class=\"wp-image-553\" srcset=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-2-1024x498.png 1024w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-2-300x146.png 300w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-2-768x374.png 768w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-2.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>After setting up the dashboard with the Hibouair_ble entities , the dashboard looks like this<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"498\" src=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-3-1024x498.png\" alt=\"\" class=\"wp-image-554\" srcset=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-3-1024x498.png 1024w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-3-300x146.png 300w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-3-768x374.png 768w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/image-3.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>This integration is a simple example, and you can further customize and automate your smart home based on the data collected from the HibouAir monitor. Feel free to adapt the code to your specific requirements and enhance the capabilities of your Home Assistant setup.<\/p>\n\n\n\n<p>With the combination of HibouAir and BleuIO, you can effortlessly create a home automation system that ensures your environment remains healthy and comfortable.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will walk you through the process of creating a Home Assistant integration to read air quality data from a BLE air quality monitor called HibouAir. To accomplish this, we&#8217;ll be using BleuIO, a BLE USB dongle, to read data via the serial port. BleuIO comes equipped with a Python library that [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":555,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,2],"tags":[],"class_list":["post-550","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bleuio","category-bleuio-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Creating a Home Assistant Integration with HibouAir and BleuIO - BleuIO - Create Bluetooth Low Energy application<\/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:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating a Home Assistant Integration with HibouAir and BleuIO - BleuIO - Create Bluetooth Low Energy application\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will walk you through the process of creating a Home Assistant integration to read air quality data from a BLE air quality monitor called HibouAir. To accomplish this, we&#8217;ll be using BleuIO, a BLE USB dongle, to read data via the serial port. BleuIO comes equipped with a Python library that [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/\" \/>\n<meta property=\"og:site_name\" content=\"BleuIO - Create Bluetooth Low Energy application\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-17T08:00:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-20T06:50:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/home-assistant-integration.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"BleuIO\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/\"},\"author\":{\"name\":\"BleuIO\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\"},\"headline\":\"Creating a Home Assistant Integration with HibouAir and BleuIO\",\"datePublished\":\"2023-11-17T08:00:49+00:00\",\"dateModified\":\"2023-11-20T06:50:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/\"},\"wordCount\":491,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/home-assistant-integration.jpg\",\"articleSection\":[\"BleuIO\",\"BleuIO tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/\",\"name\":\"Creating a Home Assistant Integration with HibouAir and BleuIO - BleuIO - Create Bluetooth Low Energy application\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/home-assistant-integration.jpg\",\"datePublished\":\"2023-11-17T08:00:49+00:00\",\"dateModified\":\"2023-11-20T06:50:20+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/home-assistant-integration.jpg\",\"contentUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/home-assistant-integration.jpg\",\"width\":700,\"height\":400,\"caption\":\"home assistant integration\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating a Home Assistant Integration with HibouAir and BleuIO\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/\",\"name\":\"BleuIO - Create Bluetooth Low Energy application\",\"description\":\"Learn Bluetooth Low Energy programming and build Bluetooth Low Energy Application\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\",\"name\":\"BleuIO\",\"sameAs\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\"],\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/author\\\/biadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating a Home Assistant Integration with HibouAir and BleuIO - BleuIO - Create Bluetooth Low Energy application","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:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/","og_locale":"en_US","og_type":"article","og_title":"Creating a Home Assistant Integration with HibouAir and BleuIO - BleuIO - Create Bluetooth Low Energy application","og_description":"In this tutorial, we will walk you through the process of creating a Home Assistant integration to read air quality data from a BLE air quality monitor called HibouAir. To accomplish this, we&#8217;ll be using BleuIO, a BLE USB dongle, to read data via the serial port. BleuIO comes equipped with a Python library that [&hellip;]","og_url":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/","og_site_name":"BleuIO - Create Bluetooth Low Energy application","article_published_time":"2023-11-17T08:00:49+00:00","article_modified_time":"2023-11-20T06:50:20+00:00","og_image":[{"width":700,"height":400,"url":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/home-assistant-integration.jpg","type":"image\/jpeg"}],"author":"BleuIO","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/#article","isPartOf":{"@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/"},"author":{"name":"BleuIO","@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80"},"headline":"Creating a Home Assistant Integration with HibouAir and BleuIO","datePublished":"2023-11-17T08:00:49+00:00","dateModified":"2023-11-20T06:50:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/"},"wordCount":491,"commentCount":0,"image":{"@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/home-assistant-integration.jpg","articleSection":["BleuIO","BleuIO tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/","url":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/","name":"Creating a Home Assistant Integration with HibouAir and BleuIO - BleuIO - Create Bluetooth Low Energy application","isPartOf":{"@id":"https:\/\/www.bleuio.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/#primaryimage"},"image":{"@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/home-assistant-integration.jpg","datePublished":"2023-11-17T08:00:49+00:00","dateModified":"2023-11-20T06:50:20+00:00","author":{"@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80"},"breadcrumb":{"@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/#primaryimage","url":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/home-assistant-integration.jpg","contentUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2023\/11\/home-assistant-integration.jpg","width":700,"height":400,"caption":"home assistant integration"},{"@type":"BreadcrumbList","@id":"https:\/\/www.bleuio.com\/blog\/creating-a-home-assistant-integration-with-hibouair-and-bleuio\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.bleuio.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Creating a Home Assistant Integration with HibouAir and BleuIO"}]},{"@type":"WebSite","@id":"https:\/\/www.bleuio.com\/blog\/#website","url":"https:\/\/www.bleuio.com\/blog\/","name":"BleuIO - Create Bluetooth Low Energy application","description":"Learn Bluetooth Low Energy programming and build Bluetooth Low Energy Application","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bleuio.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80","name":"BleuIO","sameAs":["https:\/\/www.bleuio.com\/blog"],"url":"https:\/\/www.bleuio.com\/blog\/author\/biadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/550","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/comments?post=550"}],"version-history":[{"count":1,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/550\/revisions"}],"predecessor-version":[{"id":556,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/550\/revisions\/556"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/media\/555"}],"wp:attachment":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/media?parent=550"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/categories?post=550"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/tags?post=550"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}