{"id":173,"date":"2024-09-08T12:17:17","date_gmt":"2024-09-08T16:17:17","guid":{"rendered":"https:\/\/www.xconvert.com\/blog\/?p=173"},"modified":"2026-04-11T20:32:06","modified_gmt":"2026-04-12T00:32:06","slug":"how-to-compress-a-png-file-to-100-kb-in-linux","status":"publish","type":"post","link":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux","title":{"rendered":"How to compress a PNG file to 100 KB in Linux?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">To compress a PNG file to less than 100 KB in Linux, you can use tools like <code>pngquant<\/code> or <code>optipng<\/code>, which are designed to reduce the file size of PNG images without significant loss of quality. Here&#8217;s how you can use these tools:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Before we begin, we want to let you know you can use <a href=\"https:\/\/www.xconvert.com\/compress-png\">https:\/\/www.xconvert.com\/compress-png<\/a> to compress your PNG to 100KB online. You can choose <code>Autoscale<\/code> feature to keep the quality high while reducing file size to less than 100KB.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Using <code>pngquant<\/code><\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>pngquant<\/code> is a popular lossy PNG compressor that reduces the number of colors in the image, resulting in a smaller file size.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Install <code>pngquant<\/code>:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash line-numbers\">sudo apt-get install pngquant  # For Debian\/Ubuntu\nsudo dnf install pngquant      # For Fedora\nsudo yum install pngquant      # For CentOS\/RHEL<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Compress the PNG file:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">pngquant --quality=65-80 --ext .png --force your-image.png<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>--quality=65-80<\/code>: Sets the quality range (from 65 to 80) for the compression. Lower values will reduce file size more but may also reduce quality.<\/li>\n\n\n\n<li><code>--ext .png<\/code>: Specifies the output file extension (overwrite the original file).<\/li>\n\n\n\n<li><code>--force<\/code>: Overwrites the original file if needed.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Using <code>optipng<\/code><\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>optipng<\/code> is another tool that performs lossless compression, which reduces file size without losing any image quality.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Install <code>optipng<\/code>:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash line-numbers\">sudo apt-get install optipng   # For Debian\/Ubuntu\nsudo dnf install optipng       # For Fedora\nsudo yum install optipng       # For CentOS\/RHEL<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Compress the PNG file:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">optipng -o7 your-image.png<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-o7<\/code>: Sets the optimization level to 7 (maximum). Higher optimization levels take longer but usually yield smaller file sizes.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Using <code>convert<\/code> from ImageMagick<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you already have ImageMagick installed, you can also use the <code>convert<\/code> command to compress the image.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Install ImageMagick:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash line-numbers\">sudo apt-get install imagemagick   # For Debian\/Ubuntu\nsudo dnf install imagemagick       # For Fedora\nsudo yum install imagemagick       # For CentOS\/RHEL<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Compress the PNG file:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">convert your-image.png -quality 80 -resize 800x800 compressed-image.png<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-quality 80<\/code>: Adjusts the quality of the output image (you can reduce this number further to lower the file size).<\/li>\n\n\n\n<li><code>-resize 800x800<\/code>: Resizes the image to a maximum of 800&#215;800 pixels (optional, if the image is very large).<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">While Linux command-line tools are excellent for quick batch processing, those looking for more advanced generative features and automated retouching might prefer using <a href=\"https:\/\/fixthephoto.com\/photoshop-ai.html\" target=\"_blank\" rel=\"noreferrer noopener\">Photoshop AI<\/a> to optimize their visuals before exporting them for the web.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Check the File Size<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">After compressing the file, you can check its size to ensure it is under 100 KB:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">ls -lh compressed-image.png<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Tips:<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If the file is still not under 100 KB, you may need to reduce the quality further or resize the image to a smaller dimension.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Featured photo by <a href=\"https:\/\/unsplash.com\/@mattmoloney?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash\">Matthew Moloney<\/a> on <a href=\"https:\/\/unsplash.com\/photos\/black-and-white-abstract-painting-mI6_0b9EUlE?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash\">Unsplash<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>To compress a PNG file to less than 100 KB in Linux, you can use&#8230;<\/p>\n","protected":false},"author":1,"featured_media":177,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,4],"tags":[8,6,7],"class_list":["post-173","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to-guides","category-tutorial","tag-file-compress","tag-image-comptess","tag-png-compress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to compress a PNG file to 100 KB in Linux?<\/title>\n<meta name=\"description\" content=\"To compress a PNG file to less than 100 KB in Linux, you can use tools like pngquant or optipng, which are designed to reduce the file size of PNG images\" \/>\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.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to compress a PNG file to 100 KB in Linux?\" \/>\n<meta property=\"og:description\" content=\"To compress a PNG file to less than 100 KB in Linux, you can use tools like pngquant or optipng, which are designed to reduce the file size of PNG images\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux\" \/>\n<meta property=\"og:site_name\" content=\"XConvert Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/xconvertcom\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-08T16:17:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-12T00:32:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1966\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xconvert_com\" \/>\n<meta name=\"twitter:site\" content=\"@xconvert_com\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#\\\/schema\\\/person\\\/953c746f3b5603e610ab7d739d85df67\"},\"headline\":\"How to compress a PNG file to 100 KB in Linux?\",\"datePublished\":\"2024-09-08T16:17:17+00:00\",\"dateModified\":\"2026-04-12T00:32:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux\"},\"wordCount\":338,\"image\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg\",\"keywords\":[\"file compress\",\"image comptess\",\"png compress\"],\"articleSection\":[\"How To Guides\",\"Tutorial\"],\"inLanguage\":\"en-CA\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux\",\"url\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux\",\"name\":\"How to compress a PNG file to 100 KB in Linux?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg\",\"datePublished\":\"2024-09-08T16:17:17+00:00\",\"dateModified\":\"2026-04-12T00:32:06+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#\\\/schema\\\/person\\\/953c746f3b5603e610ab7d739d85df67\"},\"description\":\"To compress a PNG file to less than 100 KB in Linux, you can use tools like pngquant or optipng, which are designed to reduce the file size of PNG images\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux#breadcrumb\"},\"inLanguage\":\"en-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CA\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux#primaryimage\",\"url\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg\",\"width\":2560,\"height\":1966,\"caption\":\"Compress PNG images to 100 KB in Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/how-to-compress-a-png-file-to-100-kb-in-linux#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.xconvert.com\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to compress a PNG file to 100 KB in Linux?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/\",\"name\":\"XConvert Blog\",\"description\":\"Blog for XConvert file converter\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-CA\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/#\\\/schema\\\/person\\\/953c746f3b5603e610ab7d739d85df67\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CA\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/www.xconvert.com\\\/blog\\\/author\\\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to compress a PNG file to 100 KB in Linux?","description":"To compress a PNG file to less than 100 KB in Linux, you can use tools like pngquant or optipng, which are designed to reduce the file size of PNG images","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.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux","og_locale":"en_US","og_type":"article","og_title":"How to compress a PNG file to 100 KB in Linux?","og_description":"To compress a PNG file to less than 100 KB in Linux, you can use tools like pngquant or optipng, which are designed to reduce the file size of PNG images","og_url":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux","og_site_name":"XConvert Blog","article_publisher":"https:\/\/www.facebook.com\/xconvertcom","article_published_time":"2024-09-08T16:17:17+00:00","article_modified_time":"2026-04-12T00:32:06+00:00","og_image":[{"width":2560,"height":1966,"url":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@xconvert_com","twitter_site":"@xconvert_com","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux#article","isPartOf":{"@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux"},"author":{"name":"admin","@id":"https:\/\/www.xconvert.com\/blog\/#\/schema\/person\/953c746f3b5603e610ab7d739d85df67"},"headline":"How to compress a PNG file to 100 KB in Linux?","datePublished":"2024-09-08T16:17:17+00:00","dateModified":"2026-04-12T00:32:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux"},"wordCount":338,"image":{"@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux#primaryimage"},"thumbnailUrl":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg","keywords":["file compress","image comptess","png compress"],"articleSection":["How To Guides","Tutorial"],"inLanguage":"en-CA"},{"@type":"WebPage","@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux","url":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux","name":"How to compress a PNG file to 100 KB in Linux?","isPartOf":{"@id":"https:\/\/www.xconvert.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux#primaryimage"},"image":{"@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux#primaryimage"},"thumbnailUrl":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg","datePublished":"2024-09-08T16:17:17+00:00","dateModified":"2026-04-12T00:32:06+00:00","author":{"@id":"https:\/\/www.xconvert.com\/blog\/#\/schema\/person\/953c746f3b5603e610ab7d739d85df67"},"description":"To compress a PNG file to less than 100 KB in Linux, you can use tools like pngquant or optipng, which are designed to reduce the file size of PNG images","breadcrumb":{"@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux#breadcrumb"},"inLanguage":"en-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux"]}]},{"@type":"ImageObject","inLanguage":"en-CA","@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux#primaryimage","url":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg","contentUrl":"https:\/\/www.xconvert.com\/blog\/wp-content\/uploads\/2024\/09\/matthew-moloney-mI6_0b9EUlE-unsplash-1-scaled.jpg","width":2560,"height":1966,"caption":"Compress PNG images to 100 KB in Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/www.xconvert.com\/blog\/how-to-compress-a-png-file-to-100-kb-in-linux#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.xconvert.com\/blog"},{"@type":"ListItem","position":2,"name":"How to compress a PNG file to 100 KB in Linux?"}]},{"@type":"WebSite","@id":"https:\/\/www.xconvert.com\/blog\/#website","url":"https:\/\/www.xconvert.com\/blog\/","name":"XConvert Blog","description":"Blog for XConvert file converter","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.xconvert.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-CA"},{"@type":"Person","@id":"https:\/\/www.xconvert.com\/blog\/#\/schema\/person\/953c746f3b5603e610ab7d739d85df67","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-CA","@id":"https:\/\/secure.gravatar.com\/avatar\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2e9491b416e8c0413e67d504a12509a0b56894bc1ef4b4293cec42a960b5cc63?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/www.xconvert.com\/blog\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/posts\/173","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/comments?post=173"}],"version-history":[{"count":5,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/posts\/173\/revisions"}],"predecessor-version":[{"id":336,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/posts\/173\/revisions\/336"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/media\/177"}],"wp:attachment":[{"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/media?parent=173"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/categories?post=173"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.xconvert.com\/blog\/wp-json\/wp\/v2\/tags?post=173"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}