{"id":11388,"date":"2019-08-18T16:07:00","date_gmt":"2019-08-18T16:07:00","guid":{"rendered":"http:\/\/www.techolac.com\/?p=11388"},"modified":"2019-08-18T16:07:00","modified_gmt":"2019-08-18T16:07:00","slug":"ubuntu-list-installed-packages","status":"publish","type":"post","link":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/","title":{"rendered":"Ubuntu List Installed Packages"},"content":{"rendered":"<p>Apt Get List Installed&#8211; step by step tutorial. Apt is a command-line interface that allows you to execute actions such as installing new software packages, removing unneeded software packages, updating the existing software packages, searching for particular software packages etc. on a Linux Server running Debian as an operating system or Debian-based Linux distributions like Ubuntu. In this tutorial, we will show you how to list all installed packages with on Ubuntu (show all installed software on your Server).<\/p>\n<h2><span id=\"1-List-the-installed-software-packages-on-Ubuntu\" class=\"ez-toc-section\">1. List the installed software packages on Ubuntu<\/span><\/h2>\n<p>First of all, connect to your Linux server via SSH. To list the installed software packages on your machine you can use the following command:<\/p>\n<pre>sudo apt list --installed<\/pre>\n<p>The output of the command will be very similar to the following one, depending on which packages are currently installed:<\/p>\n<pre>Listing...\r\nacl\/xenial,now 2.2.52-3 amd64 [installed]\r\nadduser\/xenial,xenial,now 3.113+nmu3ubuntu4 all [installed]\r\napache2\/xenial-updates,xenial-security,now 2.4.18-2ubuntu3.1 amd64 [installed]\r\napache2-bin\/xenial-updates,xenial-security,now 2.4.18-2ubuntu3.1 amd64 [installed,automatic]\r\napache2-data\/xenial-updates,xenial-updates,xenial-security,xenial-security,now 2.4.18-2ubuntu3.1 all [installed,automatic]\r\napache2-doc\/xenial-updates,xenial-updates,xenial-security,xenial-security,now 2.4.18-2ubuntu3.1 all [installed]\r\napache2-utils\/xenial-updates,xenial-security,now 2.4.18-2ubuntu3.1 amd64 [installed]\r\napparmor\/xenial-updates,now 2.10.95-0ubuntu2.5 amd64 [installed,automatic]\r\napt\/xenial-updates,now 1.2.19 amd64 [installed]\r\napt-utils\/xenial-updates,now 1.2.19 amd64 [installed]\r\n...\r\n<\/pre>\n<h2>2. Use the LESS program<\/h2>\n<p>To easily read the entire output you can use the less program.<\/p>\n<pre>sudo apt list --installed | less<\/pre>\n<h2><span id=\"3-Use-the-GREP-Command\" class=\"ez-toc-section\">3. Use the GREP Command<\/span><\/h2>\n<p>You can look for a specific package through the output using the <code>grep<\/code> program.<\/p>\n<pre>sudo apt list --installed | grep -i apache<\/pre>\n<h2><span id=\"4-List-all-packages-that-include-Apache\" class=\"ez-toc-section\">4. List all packages that include Apache<\/span><\/h2>\n<p>The output from the above command will list all packages that include <code>apache<\/code> in their names.<\/p>\n<pre>apache2\/xenial-updates,xenial-security,now 2.4.18-2ubuntu3.1 amd64 [installed]\r\napache2-bin\/xenial-updates,xenial-security,now 2.4.18-2ubuntu3.1 amd64 [installed,automatic]\r\napache2-data\/xenial-updates,xenial-updates,xenial-security,xenial-security,now 2.4.18-2ubuntu3.1 all [installed,automatic]\r\napache2-doc\/xenial-updates,xenial-updates,xenial-security,xenial-security,now 2.4.18-2ubuntu3.1 all [installed]\r\napache2-utils\/xenial-updates,xenial-security,now 2.4.18-2ubuntu3.1 amd64 [installed]\r\nlibapache2-mod-php\/xenial,xenial,now 1:7.0+35ubuntu6 all [installed,automatic]\r\nlibapache2-mod-php7.0\/xenial-updates,now 7.0.13-0ubuntu0.16.04.1 amd64 [installed,automatic]\r\nlibapache2-mod-security2\/xenial,now 2.9.0-1 amd64 [installed]\r\nlibapache2-modsecurity\/xenial,xenial,now 2.9.0-1 all [installed]\r\n<\/pre>\n<p>Apt supports patterns to match package names and options to list installed <code>(--installed)<\/code> packages, upgradeable <code>(--upgradeable)<\/code> packages or all available <code>(--all-versions)<\/code> package versions.<\/p>\n<h2><span id=\"5-Use-the-DPKG-program\" class=\"ez-toc-section\">5. Use the DPKG program<\/span><\/h2>\n<p><a href=\"http:\/\/techolac.com\/wp-content\/uploads\/2019\/08\/list-installed-packages-ubuntu-1.jpg\"><img decoding=\"async\" class=\"alignright size-full wp-image-28250\" src=\"http:\/\/techolac.com\/wp-content\/uploads\/2019\/08\/list-installed-packages-ubuntu-1.jpg\" alt=\"list installed packages ubuntu\" width=\"131\" height=\"150\" \/><\/a>Another alternative that you can use to list the installed software packages on your Ubuntu VPS is the <code>dpkg<\/code> command.<\/p>\n<pre>sudo dpkg -l<\/pre>\n<p>The output of the command will provide you with information such as the name of the package, version, architecture and short description about the package. Of course, you can use the <code>grep<\/code> program again to search for a specific package.<\/p>\n<pre>sudo dpkg -l | grep -i apache<\/pre>\n<p>The output should look like the one below:<\/p>\n<pre>ii  apache2                       2.4.18-2ubuntu3.1                     amd64        Apache HTTP Server\r\nii  apache2-bin                   2.4.18-2ubuntu3.1                     amd64        Apache HTTP Server (modules and other binary files)\r\nii  apache2-data                  2.4.18-2ubuntu3.1                     all          Apache HTTP Server (common files)\r\nii  apache2-doc                   2.4.18-2ubuntu3.1                     all          Apache HTTP Server (on-site documentation)\r\nii  apache2-utils                 2.4.18-2ubuntu3.1                     amd64        Apache HTTP Server (utility programs for web servers)\r\nrc  apache2.2-common              2.2.22-6ubuntu5.1                     amd64        Apache HTTP Server common files\r\nii  libapache2-mod-php            1:7.0+35ubuntu6                       all          server-side, HTML-embedded scripting language (Apache 2 module) (default)\r\nrc  libapache2-mod-php5           5.5.9+dfsg-1ubuntu4.16                amd64        server-side, HTML-embedded scripting language (Apache 2 module)\r\nii  libapache2-mod-php7.0         7.0.13-0ubuntu0.16.04.1               amd64        server-side, HTML-embedded scripting language (Apache 2 module)\r\nii  libapache2-mod-security2      2.9.0-1                               amd64        Tighten web applications security for Apache\r\nii  libapache2-modsecurity        2.9.0-1                               all          Dummy transitional package\r\nii  libapr1:amd64                 1.5.2-3                               amd64        Apache Portable Runtime Library\r\nii  libaprutil1:amd64             1.5.4-1build1                         amd64        Apache Portable Runtime Utility Library\r\nii  libaprutil1-dbd-sqlite3:amd64 1.5.4-1build1                         amd64        Apache Portable Runtime Utility Library - SQLite3 Driver\r\nii  libaprutil1-ldap:amd64        1.5.4-1build1                         amd64        Apache Portable Runtime Utility Library - LDAP Driver\r\n.<\/pre>\n<p>With the competition of this tutorial, you have successfully learned how to list installed packages in Ubuntu.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Apt Get List Installed&#8211; step by step tutorial. Apt is a command-line interface that allows you to execute actions such as installing new software packages, removing unneeded software packages, updating the existing software packages, searching for particular software packages etc. on a Linux Server running Debian as an operating system or Debian-based Linux distributions like [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":11389,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26],"tags":[1372,134,1373],"class_list":["post-11388","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-installed-packages","tag-ubuntu","tag-ubuntu-list-installed-packages"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Ubuntu List Installed Packages - Techolac<\/title>\n<meta name=\"description\" content=\"Complete guide to ubuntu list installed packages with various methods in easy and fast methods. Ubuntu list installed packages view.\" \/>\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.techolac.com\/linux\/ubuntu-list-installed-packages\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ubuntu List Installed Packages - Techolac\" \/>\n<meta property=\"og:description\" content=\"Complete guide to ubuntu list installed packages with various methods in easy and fast methods. Ubuntu list installed packages view.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/\" \/>\n<meta property=\"og:site_name\" content=\"Techolac - Computer Technology News\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-18T16:07:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png\" \/>\n\t<meta property=\"og:image:width\" content=\"694\" \/>\n\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Editorial Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editorial Staff\" \/>\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:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/\"},\"author\":{\"name\":\"Editorial Staff\",\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\"},\"headline\":\"Ubuntu List Installed Packages\",\"datePublished\":\"2019-08-18T16:07:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/\"},\"wordCount\":297,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\"},\"image\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png\",\"keywords\":[\"Installed Packages\",\"Ubuntu\",\"ubuntu list installed packages\"],\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/\",\"url\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/\",\"name\":\"Ubuntu List Installed Packages - Techolac\",\"isPartOf\":{\"@id\":\"https:\/\/www.techolac.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png\",\"datePublished\":\"2019-08-18T16:07:00+00:00\",\"description\":\"Complete guide to ubuntu list installed packages with various methods in easy and fast methods. Ubuntu list installed packages view.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#primaryimage\",\"url\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png\",\"contentUrl\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png\",\"width\":694,\"height\":350},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.techolac.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ubuntu List Installed Packages\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.techolac.com\/#website\",\"url\":\"https:\/\/www.techolac.com\/\",\"name\":\"Techolac - Computer Technology News\",\"description\":\"A weblog on emerging technology and internet news, reviews, tips for a broad range of computing technologies.\",\"publisher\":{\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.techolac.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\",\"name\":\"Editorial Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g\",\"caption\":\"Editorial Staff\"},\"logo\":{\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/image\/\"},\"url\":\"https:\/\/www.techolac.com\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Ubuntu List Installed Packages - Techolac","description":"Complete guide to ubuntu list installed packages with various methods in easy and fast methods. Ubuntu list installed packages view.","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.techolac.com\/linux\/ubuntu-list-installed-packages\/","og_locale":"en_US","og_type":"article","og_title":"Ubuntu List Installed Packages - Techolac","og_description":"Complete guide to ubuntu list installed packages with various methods in easy and fast methods. Ubuntu list installed packages view.","og_url":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/","og_site_name":"Techolac - Computer Technology News","article_published_time":"2019-08-18T16:07:00+00:00","og_image":[{"width":694,"height":350,"url":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png","type":"image\/png"}],"author":"Editorial Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Editorial Staff","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#article","isPartOf":{"@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/"},"author":{"name":"Editorial Staff","@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b"},"headline":"Ubuntu List Installed Packages","datePublished":"2019-08-18T16:07:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/"},"wordCount":297,"commentCount":0,"publisher":{"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b"},"image":{"@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#primaryimage"},"thumbnailUrl":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png","keywords":["Installed Packages","Ubuntu","ubuntu list installed packages"],"articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/","url":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/","name":"Ubuntu List Installed Packages - Techolac","isPartOf":{"@id":"https:\/\/www.techolac.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#primaryimage"},"image":{"@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#primaryimage"},"thumbnailUrl":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png","datePublished":"2019-08-18T16:07:00+00:00","description":"Complete guide to ubuntu list installed packages with various methods in easy and fast methods. Ubuntu list installed packages view.","breadcrumb":{"@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#primaryimage","url":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png","contentUrl":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/Dell_XPS_Laptop_Front-Desktop.png","width":694,"height":350},{"@type":"BreadcrumbList","@id":"https:\/\/www.techolac.com\/linux\/ubuntu-list-installed-packages\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.techolac.com\/"},{"@type":"ListItem","position":2,"name":"Ubuntu List Installed Packages"}]},{"@type":"WebSite","@id":"https:\/\/www.techolac.com\/#website","url":"https:\/\/www.techolac.com\/","name":"Techolac - Computer Technology News","description":"A weblog on emerging technology and internet news, reviews, tips for a broad range of computing technologies.","publisher":{"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.techolac.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b","name":"Editorial Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techolac.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g","caption":"Editorial Staff"},"logo":{"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/image\/"},"url":"https:\/\/www.techolac.com\/author\/admin\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts\/11388","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/comments?post=11388"}],"version-history":[{"count":0,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts\/11388\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/media\/11389"}],"wp:attachment":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/media?parent=11388"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/categories?post=11388"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/tags?post=11388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}