{"id":6356,"date":"2023-01-10T13:55:59","date_gmt":"2023-01-10T13:55:59","guid":{"rendered":"https:\/\/profen.com\/?p=6356"},"modified":"2023-01-10T14:40:16","modified_gmt":"2023-01-10T14:40:16","slug":"a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq","status":"publish","type":"post","link":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/","title":{"rendered":"A War Between MQTT Message Brokers : Mosquitto vs VerneMQ"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column][vc_column_text]MQTT (Message Queuing Telemetry Transport) is a lightweight messaging protocol for IoT (Internet of Things) and M2M (Machine-to-Machine) communication that is designed to be low overhead and easy to implement. It is based on the publish-subscribe model, where a client publishes a message to a topic on a broker, and any subscribers to that topic will receive the message.<\/p>\n<p>MQTT brokers are servers that handle the distribution of messages to clients based on topic subscriptions. They provide a centralized location for publish and subscribe messages, allowing clients to communicate with each other without the need to exchange IP addresses or configure firewalls.<\/p>\n<p>Mosquitto and VerneMQ are both open-source MQTT brokers that can be used to facilitate communication between MQTT clients. Below is a comparison of some features of the two brokers:<\/p>\n<figure class=\"wp-block-table\">\n<table>\n<thead>\n<tr>\n<th>Feature<\/th>\n<th>Mosquitto<\/th>\n<th>VerneMQ<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Protocol support<\/td>\n<td>MQTT, MQTT-SN<\/td>\n<td>MQTT, MQTT-SN, WebSockets<\/td>\n<\/tr>\n<tr>\n<td>Authentication<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>Authorization<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>Bridges<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>Clustering<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>High availability<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>Message persistence<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>Supported platforms<\/td>\n<td>Windows, Linux, macOS, Raspberry Pi, etc.<\/td>\n<td>Windows, Linux, macOS, FreeBSD, etc.<\/td>\n<\/tr>\n<tr>\n<td>License<\/td>\n<td>Eclipse Public License 1.0<\/td>\n<td>Apache License 2.0<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p>Here is an example of how you might deploy Mosquitto and VerneMQ on a Kubernetes environment:<\/p>\n<p><strong>Mosquitto<\/strong><\/p>\n<p>1. Create a Kubernetes Deployment resource that manages a set of replicas of your Mosquitto broker pods. For example:<\/p>\n<pre class=\"wp-block-code\"><code>apiVersion: apps\/v1\r\nkind: Deployment\r\nmetadata:\r\n  name: mosquitto\r\nspec:\r\n  replicas: 3\r\n  selector:\r\n    matchLabels:\r\n      app: mosquitto\r\n  template:\r\n    metadata:\r\n      labels:\r\n        app: mosquitto\r\n    spec:\r\n      containers:\r\n      - name: mosquitto\r\n        image: eclipse-mosquitto:latest\r\n        ports:\r\n        - containerPort: 1883<\/code><\/pre>\n<p>2. Create a Kubernetes Service resource to expose your Mosquitto pods to other parts of the cluster. This can be either a ClusterIP Service, which exposes the service on a cluster-internal IP, or a LoadBalancer Service, which exposes the service externally using a cloud provider\u2019s load balancer:<\/p>\n<pre class=\"wp-block-code\"><code>apiVersion: v1\r\nkind: Service\r\nmetadata:\r\n  name: mosquitto\r\nspec:\r\n  type: LoadBalancer\r\n  selector:\r\n    app: mosquitto\r\n  ports:\r\n  - protocol: TCP\r\n    port: 1883\r\n    targetPort: 1883<\/code><\/pre>\n<p><strong>VerneMQ<\/strong><\/p>\n<p>1. Create a Kubernetes Deployment resource that manages a set of replicas of your VerneMQ broker pods. For example:<\/p>\n<pre class=\"wp-block-code\"><code>apiVersion: apps\/v1\r\nkind: Deployment\r\nmetadata:\r\n  name: vernemq\r\nspec:\r\n  replicas: 3\r\n  selector:\r\n    matchLabels:\r\n      app: vernemq\r\n  template:\r\n    metadata:\r\n      labels:\r\n        app: vernemq\r\n    spec:\r\n      containers:\r\n      - name: vernemq\r\n        image: vernemq\/vernemq:latest\r\n        ports:\r\n        - containerPort: 1883<\/code><\/pre>\n<p>2. Create a Kubernetes Service resource to expose your VerneMQ pods to other parts of the cluster. This can be either a ClusterIP Service, which exposes the service on a cluster-internal IP, or a LoadBalancer Service, which exposes the service externally using a cloud provider\u2019s load balancer:<\/p>\n<pre class=\"wp-block-code\"><code>apiVersion: v1\r\nkind: Service\r\nmetadata:\r\n  name: vernemq\r\nspec:\r\n  type: LoadBalancer\r\n  selector:\r\n    app: vernemq\r\n  ports:\r\n  - protocol: TCP\r\n    port: 1883\r\n    targetPort: 1883<\/code><\/pre>\n<p>To stress test both brokers, you can use a load testing tool such as JMeter or Apache Bench to simulate a large number of concurrent MQTT clients publishing and subscribing to topics. You can then measure the performance of the brokers in terms of metrics such as the number of messages processed per second, the latency of the publish and subscribe operations, and the resource usage (e.g. CPU, memory, network) of the broker pods.<\/p>\n<p>Here is a sample stress test using Apache JMeter to simulate a large number of concurrent MQTT clients publishing and subscribing to topics on an MQTT broker:<\/p>\n<ol>\n<li>Install JMeter on your local machine.<\/li>\n<li>Start JMeter and create a new \u201cTest Plan\u201d by right-clicking on the root node in the tree on the left side of the JMeter window and selecting \u201cAdd &gt; Threads (Users) &gt; Thread Group\u201d.<\/li>\n<li>Add an MQTT Sampler to your Thread Group by right-clicking on the Thread Group and selecting \u201cAdd &gt; Sampler &gt; MQTT Sampler\u201d.<\/li>\n<li>Configure the MQTT Sampler with the following settings:<\/li>\n<\/ol>\n<ul>\n<li>Server Name or IP: the hostname or IP address of your MQTT broker<\/li>\n<li>Port Number: the port number of your MQTT broker (e.g. 1883 for Mosquitto, 8080 for VerneMQ)<\/li>\n<li>Client ID: a unique identifier for the MQTT client (e.g. \u201cclient1\u201d)<\/li>\n<li>Topic: the topic to publish or subscribe to (e.g. \u201ctest\/topic\u201d)<\/li>\n<li>Quality of Service (QoS): the QoS level for the message (e.g. 0, 1, or 2)<\/li>\n<li>Action: select \u201cPublish\u201d to publish a message to the topic or \u201cSubscribe\u201d to subscribe to the topic<\/li>\n<li>Payload: the message payload to publish (if Action is \u201cPublish\u201d)<\/li>\n<\/ul>\n<ol start=\"5\">\n<li>Set the number of threads (users) and the ramp-up period in the Thread Group to the desired values. For example, to simulate 100 concurrent MQTT clients, set the number of threads to 100 and the ramp-up period to 100 (so that all threads are started at once).<\/li>\n<li>Add a listener to your Thread Group to view the results of the test. Right-click on the Thread Group and select \u201cAdd &gt; Listener &gt; View Results Tree\u201d.<\/li>\n<li>Run the test by clicking on the \u201cStart\u201d button at the top of the JMeter window. The listener will show the results of the test, including the number of messages published or received, the response time, and any errors that occurred.<\/li>\n<\/ol>\n<p>[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_column_text]MQTT (Message Queuing Telemetry Transport) is a lightweight messaging protocol for IoT (Internet of Things) and M2M (Machine-to-Machine) communication that [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":6357,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_vp_format_video_url":"","_vp_image_focal_point":[],"footnotes":""},"categories":[28,72],"tags":[],"class_list":["post-6356","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-rd-corner"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Profen Group - A War Between MQTT Message Brokers : Mosquitto vs VerneMQ<\/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:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Profen Group - A War Between MQTT Message Brokers : Mosquitto vs VerneMQ\" \/>\n<meta property=\"og:description\" content=\"[vc_row][vc_column][vc_column_text]MQTT (Message Queuing Telemetry Transport) is a lightweight messaging protocol for IoT (Internet of Things) and M2M (Machine-to-Machine) communication that [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/\" \/>\n<meta property=\"og:site_name\" content=\"Profen Group\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-10T13:55:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-10T14:40:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"297\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"sadmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sadmin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/\"},\"author\":{\"name\":\"sadmin\",\"@id\":\"https:\/\/profen.com\/#\/schema\/person\/86dbf5f3ab018ab588aaaa7d3edba0c3\"},\"headline\":\"A War Between MQTT Message Brokers : Mosquitto vs VerneMQ\",\"datePublished\":\"2023-01-10T13:55:59+00:00\",\"dateModified\":\"2023-01-10T14:40:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/\"},\"wordCount\":729,\"image\":{\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png\",\"articleSection\":[\"Blog\",\"R&amp;D Corner\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/\",\"url\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/\",\"name\":\"Profen Group - A War Between MQTT Message Brokers : Mosquitto vs VerneMQ\",\"isPartOf\":{\"@id\":\"https:\/\/profen.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png\",\"datePublished\":\"2023-01-10T13:55:59+00:00\",\"dateModified\":\"2023-01-10T14:40:16+00:00\",\"author\":{\"@id\":\"https:\/\/profen.com\/#\/schema\/person\/86dbf5f3ab018ab588aaaa7d3edba0c3\"},\"breadcrumb\":{\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#primaryimage\",\"url\":\"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png\",\"contentUrl\":\"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png\",\"width\":1024,\"height\":297},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ana sayfa\",\"item\":\"https:\/\/profen.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A War Between MQTT Message Brokers : Mosquitto vs VerneMQ\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/profen.com\/#website\",\"url\":\"https:\/\/profen.com\/\",\"name\":\"Profen Group\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/profen.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/profen.com\/#\/schema\/person\/86dbf5f3ab018ab588aaaa7d3edba0c3\",\"name\":\"sadmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/00c64138ebc26cf37194efae2aec1547784f5a0a83d6adb10a4f29caff9372ea?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/00c64138ebc26cf37194efae2aec1547784f5a0a83d6adb10a4f29caff9372ea?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/00c64138ebc26cf37194efae2aec1547784f5a0a83d6adb10a4f29caff9372ea?s=96&d=mm&r=g\",\"caption\":\"sadmin\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Profen Group - A War Between MQTT Message Brokers : Mosquitto vs VerneMQ","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:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/","og_locale":"en_US","og_type":"article","og_title":"Profen Group - A War Between MQTT Message Brokers : Mosquitto vs VerneMQ","og_description":"[vc_row][vc_column][vc_column_text]MQTT (Message Queuing Telemetry Transport) is a lightweight messaging protocol for IoT (Internet of Things) and M2M (Machine-to-Machine) communication that [&hellip;]","og_url":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/","og_site_name":"Profen Group","article_published_time":"2023-01-10T13:55:59+00:00","article_modified_time":"2023-01-10T14:40:16+00:00","og_image":[{"width":1024,"height":297,"url":"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png","type":"image\/png"}],"author":"sadmin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"sadmin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#article","isPartOf":{"@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/"},"author":{"name":"sadmin","@id":"https:\/\/profen.com\/#\/schema\/person\/86dbf5f3ab018ab588aaaa7d3edba0c3"},"headline":"A War Between MQTT Message Brokers : Mosquitto vs VerneMQ","datePublished":"2023-01-10T13:55:59+00:00","dateModified":"2023-01-10T14:40:16+00:00","mainEntityOfPage":{"@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/"},"wordCount":729,"image":{"@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#primaryimage"},"thumbnailUrl":"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png","articleSection":["Blog","R&amp;D Corner"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/","url":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/","name":"Profen Group - A War Between MQTT Message Brokers : Mosquitto vs VerneMQ","isPartOf":{"@id":"https:\/\/profen.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#primaryimage"},"image":{"@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#primaryimage"},"thumbnailUrl":"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png","datePublished":"2023-01-10T13:55:59+00:00","dateModified":"2023-01-10T14:40:16+00:00","author":{"@id":"https:\/\/profen.com\/#\/schema\/person\/86dbf5f3ab018ab588aaaa7d3edba0c3"},"breadcrumb":{"@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#primaryimage","url":"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png","contentUrl":"https:\/\/profen.com\/wp-content\/uploads\/2023\/01\/message-broker-message-1-1024x297-1.png","width":1024,"height":297},{"@type":"BreadcrumbList","@id":"https:\/\/profen.com\/en\/a-war-between-mqtt-message-brokers-mosquitto-vs-vernemq\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ana sayfa","item":"https:\/\/profen.com\/en\/"},{"@type":"ListItem","position":2,"name":"A War Between MQTT Message Brokers : Mosquitto vs VerneMQ"}]},{"@type":"WebSite","@id":"https:\/\/profen.com\/#website","url":"https:\/\/profen.com\/","name":"Profen Group","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/profen.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/profen.com\/#\/schema\/person\/86dbf5f3ab018ab588aaaa7d3edba0c3","name":"sadmin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/00c64138ebc26cf37194efae2aec1547784f5a0a83d6adb10a4f29caff9372ea?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/00c64138ebc26cf37194efae2aec1547784f5a0a83d6adb10a4f29caff9372ea?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/00c64138ebc26cf37194efae2aec1547784f5a0a83d6adb10a4f29caff9372ea?s=96&d=mm&r=g","caption":"sadmin"}}]}},"_links":{"self":[{"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/posts\/6356","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/comments?post=6356"}],"version-history":[{"count":3,"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/posts\/6356\/revisions"}],"predecessor-version":[{"id":6409,"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/posts\/6356\/revisions\/6409"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/media\/6357"}],"wp:attachment":[{"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/media?parent=6356"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/categories?post=6356"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/profen.com\/en\/wp-json\/wp\/v2\/tags?post=6356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}