{"id":1696,"date":"2026-05-22T17:53:20","date_gmt":"2026-05-22T17:53:20","guid":{"rendered":"https:\/\/www.bleuio.com\/blog\/?p=1696"},"modified":"2026-05-25T08:50:09","modified_gmt":"2026-05-25T08:50:09","slug":"build-a-ble-rssi-heatmap-visualizer-using-bleuio","status":"publish","type":"post","link":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/","title":{"rendered":"Build a BLE RSSI Heatmap Visualizer Using BleuIO"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Bluetooth Low Energy devices are everywhere, from smart sensors and beacons to IoT devices and proximity-based applications. When working with BLE, developers often need a quick way to scan nearby advertising devices and understand their signal strength.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In this project, we build a simple <strong>BLE RSSI Heatmap Visualizer<\/strong> using the <strong>BleuIO USB dongle<\/strong>. The application runs directly in the browser and connects to BleuIO through the serial port. It performs a BLE scan, reads nearby advertising devices, extracts their RSSI values, and displays them in a visual heatmap.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is helpful because raw BLE scan output can be difficult to read, especially when many devices are advertising at the same time. With this visualizer, developers can quickly see which devices have strong, medium, or weak signal strength.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">BleuIO makes this project simple because it handles the BLE scanning through easy AT commands. Instead of writing low-level Bluetooth code, we can send commands from JavaScript and focus on building the visualization.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Requirements<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To try this project, you need:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A <a href=\"https:\/\/www.bleuio.com\/bluetooth-low-energy-usb-ssd025.php\" target=\"_blank\" rel=\"noreferrer noopener\">BleuIO USB dongle<\/a><\/li>\n\n\n\n<li>The <a href=\"https:\/\/github.com\/smart-sensor-devices-ab\/ble-rss-heatmap-visualizer\" target=\"_blank\" rel=\"noreferrer noopener\">project source code from GitHub<\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How It Works<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The application connects to the BleuIO dongle using the browser\u2019s Web Serial API. Once connected, it sends BleuIO AT commands to put the dongle into central scanning mode and start a BLE GAP scan.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The main commands used are:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>AT+CENTRAL<br>AT+SHOWRSSI=1<br>AT+GAPSCAN=5<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><code>AT+CENTRAL<\/code> prepares BleuIO for scanning. <code>AT+SHOWRSSI=1<\/code> enables RSSI values in the scan output. <code>AT+GAPSCAN=5<\/code> scans nearby BLE devices for 5 seconds.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The browser app then reads the serial output and looks for device information such as MAC address, RSSI value, and device name if available. Each device is grouped based on RSSI strength.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The signal categories are simple:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Strong signal: RSSI &gt;= -50<br>Medium signal: RSSI between -51 and -70<br>Weak signal: RSSI &lt;= -71<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The heatmap places BleuIO at the center and displays nearby BLE devices around it. Stronger devices appear closer to the center, while weaker devices appear farther away. The device bubbles are also color-coded, making it easier to understand the BLE environment at a glance.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A table below the heatmap shows the detected devices with MAC address, RSSI, name, signal category, and last seen time.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">GitHub Project Code<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The full source code is available here:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:&#47;&#47;github.com\/smart-sensor-devices-ab\/ble-rss-heatmap-visualizer<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">You can download or clone the project and open it in a supported browser.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Live Testing<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can also try the live version here:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><a href=\"https:\/\/smart-sensor-devices-ab.github.io\/ble-rss-heatmap-visualizer\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/smart-sensor-devices-ab.github.io\/ble-rss-heatmap-visualizer\/<\/a><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">To test it:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Plug in the BleuIO USB dongle.<\/li>\n\n\n\n<li>Open the live page in your browser.<\/li>\n\n\n\n<li>Click <strong>Connect<\/strong>.<\/li>\n\n\n\n<li>Select the BleuIO serial port.<\/li>\n\n\n\n<li>Click <strong>Scan<\/strong>.<\/li>\n\n\n\n<li>View the BLE RSSI heatmap and detected device table.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Output Screenshot<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Add output screenshot here.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"521\" src=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/image-1-1024x521.png\" alt=\"\" class=\"wp-image-1698\" srcset=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/image-1-1024x521.png 1024w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/image-1-300x153.png 300w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/image-1-768x391.png 768w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/image-1-1536x781.png 1536w, https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/image-1-2048x1042.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">This is an example project showing how BleuIO can be used with the Web Serial API to build a practical BLE scanning and visualization tool. Developers can use the source code as a starting point and modify it for their own use cases.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, the project can be extended to scan for a longer period of time, change the RSSI threshold values, filter specific devices, highlight known BLE sensors, or integrate the scan results into a larger web dashboard.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Because BleuIO works with simple AT commands over serial, it is easy to integrate with different programming languages, platforms, and browser-based tools like this one.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bluetooth Low Energy devices are everywhere, from smart sensors and beacons to IoT devices and proximity-based applications. When working with BLE, developers often need a quick way to scan nearby advertising devices and understand their signal strength. In this project, we build a simple BLE RSSI Heatmap Visualizer using the BleuIO USB dongle. The application [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1700,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,2],"tags":[],"class_list":["post-1696","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.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Build a BLE RSSI Heatmap Visualizer Using 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\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build a BLE RSSI Heatmap Visualizer Using BleuIO - BleuIO - Create Bluetooth Low Energy application\" \/>\n<meta property=\"og:description\" content=\"Bluetooth Low Energy devices are everywhere, from smart sensors and beacons to IoT devices and proximity-based applications. When working with BLE, developers often need a quick way to scan nearby advertising devices and understand their signal strength. In this project, we build a simple BLE RSSI Heatmap Visualizer using the BleuIO USB dongle. The application [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/\" \/>\n<meta property=\"og:site_name\" content=\"BleuIO - Create Bluetooth Low Energy application\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-22T17:53:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-25T08:50:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/ble-rss-heatmap-visualizer.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\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\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/\"},\"author\":{\"name\":\"BleuIO\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\"},\"headline\":\"Build a BLE RSSI Heatmap Visualizer Using BleuIO\",\"datePublished\":\"2026-05-22T17:53:20+00:00\",\"dateModified\":\"2026-05-25T08:50:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/\"},\"wordCount\":525,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/ble-rss-heatmap-visualizer.webp\",\"articleSection\":[\"BleuIO\",\"BleuIO tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/\",\"name\":\"Build a BLE RSSI Heatmap Visualizer Using BleuIO - BleuIO - Create Bluetooth Low Energy application\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/ble-rss-heatmap-visualizer.webp\",\"datePublished\":\"2026-05-22T17:53:20+00:00\",\"dateModified\":\"2026-05-25T08:50:09+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/#\\\/schema\\\/person\\\/89bc581382d5964043f96efc54b75b80\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/ble-rss-heatmap-visualizer.webp\",\"contentUrl\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/ble-rss-heatmap-visualizer.webp\",\"width\":1200,\"height\":675,\"caption\":\"ble rss heatmap visualizer\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.bleuio.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Build a BLE RSSI Heatmap Visualizer Using 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":"Build a BLE RSSI Heatmap Visualizer Using 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\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/","og_locale":"en_US","og_type":"article","og_title":"Build a BLE RSSI Heatmap Visualizer Using BleuIO - BleuIO - Create Bluetooth Low Energy application","og_description":"Bluetooth Low Energy devices are everywhere, from smart sensors and beacons to IoT devices and proximity-based applications. When working with BLE, developers often need a quick way to scan nearby advertising devices and understand their signal strength. In this project, we build a simple BLE RSSI Heatmap Visualizer using the BleuIO USB dongle. The application [&hellip;]","og_url":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/","og_site_name":"BleuIO - Create Bluetooth Low Energy application","article_published_time":"2026-05-22T17:53:20+00:00","article_modified_time":"2026-05-25T08:50:09+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/ble-rss-heatmap-visualizer.webp","type":"image\/webp"}],"author":"BleuIO","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/#article","isPartOf":{"@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/"},"author":{"name":"BleuIO","@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80"},"headline":"Build a BLE RSSI Heatmap Visualizer Using BleuIO","datePublished":"2026-05-22T17:53:20+00:00","dateModified":"2026-05-25T08:50:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/"},"wordCount":525,"commentCount":0,"image":{"@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/ble-rss-heatmap-visualizer.webp","articleSection":["BleuIO","BleuIO tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/","url":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/","name":"Build a BLE RSSI Heatmap Visualizer Using BleuIO - BleuIO - Create Bluetooth Low Energy application","isPartOf":{"@id":"https:\/\/www.bleuio.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/#primaryimage"},"image":{"@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/ble-rss-heatmap-visualizer.webp","datePublished":"2026-05-22T17:53:20+00:00","dateModified":"2026-05-25T08:50:09+00:00","author":{"@id":"https:\/\/www.bleuio.com\/blog\/#\/schema\/person\/89bc581382d5964043f96efc54b75b80"},"breadcrumb":{"@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/#primaryimage","url":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/ble-rss-heatmap-visualizer.webp","contentUrl":"https:\/\/www.bleuio.com\/blog\/wp-content\/uploads\/2026\/05\/ble-rss-heatmap-visualizer.webp","width":1200,"height":675,"caption":"ble rss heatmap visualizer"},{"@type":"BreadcrumbList","@id":"https:\/\/www.bleuio.com\/blog\/build-a-ble-rssi-heatmap-visualizer-using-bleuio\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.bleuio.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Build a BLE RSSI Heatmap Visualizer Using 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\/1696","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=1696"}],"version-history":[{"count":3,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/1696\/revisions"}],"predecessor-version":[{"id":1701,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/posts\/1696\/revisions\/1701"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/media\/1700"}],"wp:attachment":[{"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/media?parent=1696"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/categories?post=1696"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bleuio.com\/blog\/wp-json\/wp\/v2\/tags?post=1696"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}