{"id":1199,"date":"2017-12-28T19:06:22","date_gmt":"2017-12-28T13:36:22","guid":{"rendered":"https:\/\/www.booleanworld.com\/?p=1199"},"modified":"2018-03-15T21:10:17","modified_gmt":"2018-03-15T15:40:17","slug":"monitor-network-traffic-linux-using-vnstat","status":"publish","type":"post","link":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/","title":{"rendered":"How to Monitor Network Traffic on Linux Using vnStat"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1216\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat.jpg\" alt=\"vnstat cover\" width=\"700\" height=\"467\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat.jpg 1920w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat-300x200.jpg 300w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat-1024x683.jpg 1024w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat-300x200@2x.jpg 600w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/p>\n<p>Developers and sysadmins may need to monitor various network parameters, such as bandwidth consumption and the traffic flowing in\/out. There are many tools available for this purpose, one of them being vnStat. It is a simple CLI utility that shows network statistics over various interfaces and periods for a particular computer. In this article, we will see how to install and work with vnStat, and (optionally) view this data graphically using vnstat-dashboard.<\/p>\n<h2>Installation<\/h2>\n<p>For Ubuntu and Debian systems, vnStat is available in the default repository. Use the following commands in order to install it:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> apt update\r\n<span style=\"color: #0000ff;\">sudo<\/span> apt install vnstat<\/pre>\n<p>The default repositories for CentOS and Fedora don&#8217;t have vnStat, but you can get them from the <a href=\"https:\/\/fedoraproject.org\/wiki\/EPEL\">EPEL<\/a> repositories. Thus, you should enable the EPEL repositories, and then install vnStat. Use the following commands to do so:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> yum install epel-release\r\n<span style=\"color: #0000ff;\">sudo<\/span> yum install vnstat<\/pre>\n<p>For Fedora systems, type in the following:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> dnf update\r\n<span style=\"color: #0000ff;\">sudo<\/span> dnf\u00a0install vnstat<\/pre>\n<h2>Setting up vnStat<\/h2>\n<p>After installing vnStat, you have to set the network interface which you want to monitor. However, first you need to know the list of network interfaces available on our system before you can ask vnStat to monitor it. To do so, use any of the two commands:<\/p>\n<pre><span style=\"color: #0000ff;\">ip<\/span> link show<\/pre>\n<p>or<\/p>\n<pre><span style=\"color: #0000ff;\">netstat<\/span>\u00a0-i<\/pre>\n<p>This will show a list of all network interfaces available in the system.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1222 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/ifaces.png\" alt=\"List of network interfaces.\" width=\"800\" height=\"119\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/ifaces.png 800w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/ifaces-300x45.png 300w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/ifaces-300x45@2x.png 600w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><\/p>\n<p>For this article, we will just monitor the interface representing Ethernet connection to our system, which is <code>eth0<\/code> in our example. On your system, you may find the interface named differently, such as <code>enp0s3<\/code> or <code>venet0<\/code>. If you use WiFi, there will be a interface such as <code>wlan0<\/code> or <code>wifi0<\/code>. Any interfaces with names like <code>lo<\/code> or <code>lo0<\/code> represent the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Loopback#Virtual_loopback_interface\">loopback interface<\/a>, which is used for local traffic, such as communication between daemons.<\/p>\n<p>So, to select the <code>eth0<\/code>\u00a0 interface for monitoring, use the command:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> vnstat -u -i eth0<\/pre>\n<p>It should tell you that a database has been created. Then, you should set proper permissions for the database with:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> chown -R vnstat: \/var\/lib\/vnstat<\/pre>\n<p>Finally, enable and restart the daemon with:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> systemctl enable vnstat\r\n<span style=\"color: #0000ff;\">sudo<\/span> systemctl restart vnstat<\/pre>\n<p>You can verify that the daemon is running with <a href=\"https:\/\/www.booleanworld.com\/guide-linux-top-command\/\">top<\/a>, or with <code>systemctl status<\/code>:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> systemctl status vnstat<\/pre>\n<p>&nbsp;<\/p>\n<h2><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1240\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/vnstatflow.png\" alt=\"\" width=\"800\" height=\"488\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/vnstatflow.png 800w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/vnstatflow-300x183.png 300w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/vnstatflow-300x183@2x.png 600w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><\/h2>\n<h2>Viewing bandwidth consumption<\/h2>\n<p>By default, vnStat writes fresh statistics to the database every 30 seconds. After waiting for 30 seconds, run <code>vnstat<\/code> to view the monthly and daily statistics in a tabular form. If your system doesn&#8217;t receive too much traffic, you can try downloading <a href=\"https:\/\/linhost.info\/2013\/10\/download-test-files\/\">these files<\/a> to generate some traffic before viewing the statistics.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1229 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/stats1-2.png\" alt=\"vnStat command output\" width=\"550\" height=\"422\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/stats1-2.png 550w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/stats1-2-300x230.png 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/p>\n<p>The &#8220;rx&#8221; and &#8220;tx&#8221; columns show the received and transmitted traffic respectively, and the &#8220;total&#8221; column gives the sum of these two values. The &#8220;avg. rate&#8221; shows the average rate of bandwidth consumption per second, over the course of the day or month.<\/p>\n<p>Sometimes, you may want to see the updated bandwidth usage immediately without waiting. In that case, you can force vnStat to update the database with:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> vnstat -u<\/pre>\n<p>Then, run <code>vnstat<\/code> as usual; you will get to see the updated statistics after you do so.<\/p>\n<p>If you want to view statistics for a different timeframe, there are different switches you can use:<\/p>\n<ul>\n<li><code>-d<\/code>: Daily statistics for the last 30 days.<\/li>\n<li><code>-m<\/code>: Monthly statistics for the past 12 months.<\/li>\n<li><code>-w<\/code>: Statistics for the last 7 days, and the current and previous week.<\/li>\n<li><code>-h<\/code>: Hourly statistics for the last 24 hours.<\/li>\n<li><code>-t<\/code>: Top 10 days with the highest traffic.<\/li>\n<\/ul>\n<p>You can use these switches like so:<\/p>\n<pre><span style=\"color: #0000ff;\">vnstat<\/span> -h<\/pre>\n<p>The hourly statistics also feature a graph, along with the &#8220;rx&#8221;\/&#8221;tx&#8221; values, as shown below. The other switches show a tabular output, like the one in the previous example.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1231 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/trafficgraph.png\" alt=\"vnStat hourly chart\" width=\"600\" height=\"479\" srcset=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/trafficgraph-300x240@2x.png 600w, https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/trafficgraph-300x240.png 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>In addition, vnStat also features a live traffic monitoring mode. To use this mode, use the <code>-l<\/code> switch and give the name of the interface with <code>-i<\/code> like so:<\/p>\n<pre><span style=\"color: #0000ff;\">vnstat<\/span> -l -i eth0<\/pre>\n<p>Once you&#8217;re done, press Ctrl+C to exit.<\/p>\n<h2>Exporting and importing data<\/h2>\n<p>So far, we have seen how to retrieve bandwidth usage data from vnStat. However, the tables are not very useful if you want to perform your own calculations. You can export the data in JSON and XML by using the <code>--json<\/code> and <code>--xml<\/code> switches respectively. For example, if you want to create a file named <code>output.json<\/code> with all bandwidth usage data, run:<\/p>\n<pre><span style=\"color: #0000ff;\">vnstat<\/span> --json &gt; output.json<\/pre>\n<p>If you want to import the database on to another system, you should first export the database with the <code>--exportdb<\/code> switch. The following command writes the database to a plain-text file named <code>vnstat_db<\/code>.<\/p>\n<pre><span style=\"color: #0000ff;\">vnstat<\/span> --exportdb &gt; vnstat_db<\/pre>\n<p>Now, you can transfer this file on the other system, and use the <code>--importdb<\/code> switch to import. For example, if you want to import the <code>vnstat_db<\/code> file for the <code>eth0<\/code> interface, run:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> vnstat --importdb vnstat_db -i eth0 --force<\/pre>\n<h2>View vnStat data over the web<\/h2>\n<p>If you want to monitor network statistics over the web, there are various tools that work alongside vnStat. In this article, we will look at <a href=\"https:\/\/github.com\/alexandermarston\/vnstat-dashboard\" rel=\"noopener\">vnstat-dashboard<\/a>, a web application that helps you visualize vnStat data. In order to use it, you need to install a web server, PHP and a few other tools. We will use Apache simply as an example; but you are free to use another web server.<\/p>\n<p>On an Ubuntu\/Debian system, run these commands to install the necessary tools:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> apt install apache2 php wget unzip<\/pre>\n<p>If you are on a CentOS\/RHEL system, run these commands instead:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> yum install httpd php wget unzip<\/pre>\n<p>(For a Fedora system, simply replace <code>yum<\/code> with <code>dnf<\/code>.)<\/p>\n<p>Then, download the source code from Github, and unzip in the proper directory:<\/p>\n<pre><span style=\"color: #0000ff;\">wget<\/span> https:\/\/github.com\/alexandermarston\/vnstat-dashboard\/archive\/master.zip\r\n<span style=\"color: #0000ff;\">unzip<\/span> master.zip\r\n<span style=\"color: #0000ff;\">sudo<\/span> mv vnstat-dashboard-master\/ \/var\/www\/html\/vnstat\/<\/pre>\n<p>Next, we need to change a few configuration parameters. To do so, open the configuration file in a text editor like vi or nano:<\/p>\n<pre><span style=\"color: #0000ff;\">sudo<\/span> nano \/var\/www\/html\/vnstat\/config.php<\/pre>\n<p>Find the following lines in this file and replace the default values with the ones shown in red:<\/p>\n<pre>$vnstat_bin_dir = <span style=\"color: #ff0000;\">'\/usr\/bin\/vnstat'<\/span>;\r\n$use_predefined_interfaces = <span style=\"color: #ff0000;\">true<\/span>;\r\nif ($use_predefined_interfaces == true) {\r\n  $interface_list = array(<span style=\"color: #ff0000;\">\"eth0\"<\/span>);\r\n  \/\/ ...\r\n}<\/pre>\n<p>After you&#8217;ve made these changes, open <code>http:\/\/&lt;your_server_IP&gt;\/vnstat<\/code> in a browser. You should see a page like this open up:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1235 size-full\" src=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/vnstat-gui-e1514465657186.png\" alt=\"\" width=\"800\" height=\"395\" \/><\/p>\n<p>You can easily toggle between the hourly, daily and monthly tabs and also switch between various network interfaces.<\/p>\n<h2>Conclusion<\/h2>\n<p>vnStat is a very useful tool to monitor and analyze network information of a system. There are a variety of options available to view and log the data of network interfaces which can be used for several use cases.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Developers and sysadmins may need to monitor various network parameters, such as bandwidth consumption and the traffic flowing in\/out. There are many tools available for this purpose, one of them being vnStat. It is&#46;&#46;&#46;<\/p>\n","protected":false},"author":3,"featured_media":1216,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[10,59,58],"class_list":["post-1199","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-linux","tag-monitoring","tag-networking"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Monitor Network Traffic on Linux Using vnStat - Boolean World<\/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.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Monitor Network Traffic on Linux Using vnStat - Boolean World\" \/>\n<meta property=\"og:description\" content=\"Developers and sysadmins may need to monitor various network parameters, such as bandwidth consumption and the traffic flowing in\/out. There are many tools available for this purpose, one of them being vnStat. It is&#046;&#046;&#046;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/\" \/>\n<meta property=\"og:site_name\" content=\"Boolean World\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/booleanworld\" \/>\n<meta property=\"article:published_time\" content=\"2017-12-28T13:36:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-03-15T15:40:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Anirban Das\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@booleanworld\" \/>\n<meta name=\"twitter:site\" content=\"@booleanworld\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anirban Das\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Monitor Network Traffic on Linux Using vnStat - Boolean World","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.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/","og_locale":"en_US","og_type":"article","og_title":"How to Monitor Network Traffic on Linux Using vnStat - Boolean World","og_description":"Developers and sysadmins may need to monitor various network parameters, such as bandwidth consumption and the traffic flowing in\/out. There are many tools available for this purpose, one of them being vnStat. It is&#46;&#46;&#46;","og_url":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/","og_site_name":"Boolean World","article_publisher":"https:\/\/www.facebook.com\/booleanworld","article_published_time":"2017-12-28T13:36:22+00:00","article_modified_time":"2018-03-15T15:40:17+00:00","og_image":[{"width":1920,"height":1280,"url":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat.jpg","type":"image\/jpeg"}],"author":"Anirban Das","twitter_card":"summary_large_image","twitter_creator":"@booleanworld","twitter_site":"@booleanworld","twitter_misc":{"Written by":"Anirban Das","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/#article","isPartOf":{"@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/"},"author":{"name":"Anirban Das","@id":"https:\/\/www.booleanworld.com\/#\/schema\/person\/a9047e674fa7510a9166b357ac61ef51"},"headline":"How to Monitor Network Traffic on Linux Using vnStat","datePublished":"2017-12-28T13:36:22+00:00","dateModified":"2018-03-15T15:40:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/"},"wordCount":954,"commentCount":3,"publisher":{"@id":"https:\/\/www.booleanworld.com\/#organization"},"image":{"@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/#primaryimage"},"thumbnailUrl":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat.jpg","keywords":["linux","monitoring","networking"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/","url":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/","name":"How to Monitor Network Traffic on Linux Using vnStat - Boolean World","isPartOf":{"@id":"https:\/\/www.booleanworld.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/#primaryimage"},"image":{"@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/#primaryimage"},"thumbnailUrl":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat.jpg","datePublished":"2017-12-28T13:36:22+00:00","dateModified":"2018-03-15T15:40:17+00:00","breadcrumb":{"@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/#primaryimage","url":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat.jpg","contentUrl":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/12\/cover-vnstat.jpg","width":1920,"height":1280,"caption":"vnstat cover"},{"@type":"BreadcrumbList","@id":"https:\/\/www.booleanworld.com\/monitor-network-traffic-linux-using-vnstat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.booleanworld.com\/"},{"@type":"ListItem","position":2,"name":"How to Monitor Network Traffic on Linux Using vnStat"}]},{"@type":"WebSite","@id":"https:\/\/www.booleanworld.com\/#website","url":"https:\/\/www.booleanworld.com\/","name":"Boolean World","description":"","publisher":{"@id":"https:\/\/www.booleanworld.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.booleanworld.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.booleanworld.com\/#organization","name":"Boolean World","url":"https:\/\/www.booleanworld.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.booleanworld.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/01\/booleanworld_white_logo.png","contentUrl":"https:\/\/www.booleanworld.com\/wp-content\/uploads\/2017\/01\/booleanworld_white_logo.png","width":517,"height":516,"caption":"Boolean World"},"image":{"@id":"https:\/\/www.booleanworld.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/booleanworld","https:\/\/x.com\/booleanworld"]},{"@type":"Person","@id":"https:\/\/www.booleanworld.com\/#\/schema\/person\/a9047e674fa7510a9166b357ac61ef51","name":"Anirban Das","url":"https:\/\/www.booleanworld.com\/author\/aniirban101\/"}]}},"_links":{"self":[{"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/posts\/1199","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/comments?post=1199"}],"version-history":[{"count":0,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/posts\/1199\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/media\/1216"}],"wp:attachment":[{"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/media?parent=1199"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/categories?post=1199"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.booleanworld.com\/wp-json\/wp\/v2\/tags?post=1199"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}