{"id":14758,"date":"2025-04-25T18:46:00","date_gmt":"2025-04-25T13:16:00","guid":{"rendered":"https:\/\/www.skynats.com\/?p=14758"},"modified":"2025-04-28T10:50:07","modified_gmt":"2025-04-28T05:20:07","slug":"how-to-upgrade-postgresql-from-12-to-14-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/","title":{"rendered":"How to Upgrade PostgreSQL from 12 to 14 on Ubuntu"},"content":{"rendered":"\n<p>PostgreSQL is one of the most popular relational database management systems, known for its robustness, flexibility, and performance. As with any major software, it\u2019s crucial to keep your PostgreSQL version up-to-date to take advantage of new features, optimizations, and security improvements. With the release of PostgreSQL 14, users can benefit from significant performance improvements, better query optimizations, and enhanced security features. In this comprehensive guide, we&#8217;ll walk you through the process of how to upgrade PostgreSQL 12 to 14 on an Ubuntu server. Whether you&#8217;re a system administrator or a developer, this tutorial will help ensure that your upgrade is smooth and seamless. So, let&#8217;s dive in!<\/p>\n\n\n\n<p><strong>Prerequisites<\/strong><\/p>\n\n\n\n<p>Before we begin, ensure that you meet the following prerequisites:<\/p>\n\n\n\n<p>You have sudo or root access to the server.<\/p>\n\n\n\n<p>PostgreSQL 12 is already installed and in use.<\/p>\n\n\n\n<p>You have a stable backup of your databases (always important before performing any major update).<\/p>\n\n\n\n<p><strong>Backup Your Database<\/strong><\/p>\n\n\n\n<p>The most critical step before any upgrade is to create a full backup of your PostgreSQL cluster. These backups will ensure you can restore your data if anything goes wrong during the upgrade process.<\/p>\n\n\n\n<p>To create a backup of all your databases, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u postgres pg_dumpall &gt; ~\/pg_backup.sql<\/code><\/pre>\n\n\n\n<p>This command will dump all databases, roles, and configurations into a single SQL file. Store it in a safe location as a backup.<\/p>\n\n\n\n<p><strong>Update System Packages<\/strong><\/p>\n\n\n\n<p>It&#8217;s always a good practice to update your system before proceeding with any new installations. Ensure that all existing packages are up-to-date:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade -y<\/code><\/pre>\n\n\n\n<p><strong>Add PostgreSQL APT Repository<\/strong><\/p>\n\n\n\n<p>To install PostgreSQL 14, we need to add the official PostgreSQL APT repository to your system\u2019s sources. This repository provides the latest stable versions of PostgreSQL.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo sh -c 'echo \"deb http:\/\/apt.postgresql.org\/pub\/repos\/apt focal-pgdg main\" &gt; \/etc\/apt\/sources.list.d\/pgdg.list'\nwget -q https:\/\/www.postgresql.org\/media\/keys\/ACCC4CF8.asc -O- | sudo apt-key add -<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update<\/code><\/pre>\n\n\n\n<p>The above procedure will add the PostgreSQL repository to your list of package sources and update your package index.<\/p>\n\n\n\n<p><strong>Install PostgreSQL 14<\/strong><\/p>\n\n\n\n<p>With the repository added, we can now install <a href=\"https:\/\/www.postgresql.org\/download\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">PostgreSQL 14<\/mark><\/a> alongside your existing PostgreSQL 12 installation.<\/p>\n\n\n\n<p>Run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install postgresql-14 postgresql-client-14-y<\/code><\/pre>\n\n\n\n<p>This will install PostgreSQL 14 while keeping the existing PostgreSQL 12 intact. You can now safely upgrade without worrying about losing any data.<\/p>\n\n\n\n<p><strong>Check Existing Clusters<\/strong><\/p>\n\n\n\n<p>Before upgrading, let\u2019s check the currently active PostgreSQL clusters:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>pg_lsclusters<\/code><\/pre>\n\n\n\n<p>This will show you a list of all PostgreSQL clusters running on your system. You should see both version 12 and version 14 listed.<\/p>\n\n\n\n<p><strong>Upgrade Using pg_upgrade<\/strong><\/p>\n\n\n\n<p>If you&#8217;re wondering how to upgrade PostgreSQL 12 to 14, PostgreSQL offers a tool called pg_upgradecluster that makes the process much easier. It enables you to upgrade your data from version 12 to 14 safely and efficiently, without any data loss.<\/p>\n\n\n\n<p>Run the following command to begin the upgrade:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo pg_upgradecluster 12 main<\/code><\/pre>\n\n\n\n<p>Once the upgrade is complete, verify it by checking your clusters again:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>pg_lsclusters<\/code><\/pre>\n\n\n\n<p>You should now see that the PostgreSQL 14 cluster is running and the PostgreSQL 12 cluster is still listed as well.<\/p>\n\n\n\n<p><strong>Clean Up Old Cluster<\/strong><\/p>\n\n\n\n<p>After confirming that everything is working correctly (and after testing your application and queries), you can remove the old PostgreSQL 12 cluster:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo pg_dropcluster 12 main<\/code><\/pre>\n\n\n\n<p>This will safely remove the old PostgreSQL 12 data cluster from your server, leaving only PostgreSQL 14.<\/p>\n\n\n\n<p><strong>Verify Upgrade<\/strong><\/p>\n\n\n\n<p>It&#8217;s essential to verify that the upgrade was successful and that everything is functioning correctly. Log into the new PostgreSQL 14 instance:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u postgres psql<\/code><\/pre>\n\n\n\n<p>Once inside the PostgreSQL prompt, check the PostgreSQL version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT version();<\/code><\/pre>\n\n\n\n<p>You should see output showing PostgreSQL 14.x.<\/p>\n\n\n\n<p>If you&#8217;re wondering how to upgrade PostgreSQL 12 to 14, the process is relatively straightforward. It involves key steps such as backing up your data, updating your system, and installing the new version through the PostgreSQL APT repository. To ensure a smooth transition, it&#8217;s important to upgrade dependencies, adjust configuration settings, and verify compatibility with your existing applications. By carefully following these steps, you can take full advantage of the improved performance, advanced security features, and new functionalities that PostgreSQL 14 offers. Additionally, testing the upgrade in a staging environment is essential to minimize any potential disruption to your production systems.<\/p>\n\n\n\n<p>If you need expert help on how to upgrade PostgreSQL 12 to 14 or face challenges during the process, our team is here to assist. We specialize in <a href=\"https:\/\/www.skynats.com\/linux-server-management\/\">Linux server management services<\/a> and can ensure a smooth, secure upgrade tailored to your needs. Contact us today for reliable support and hassle-free database management!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PostgreSQL is one of the most popular relational database management systems, known for its robustness, flexibility, and performance. As with any major software, it\u2019s crucial to keep your PostgreSQL version up-to-date to take advantage of new features, optimizations, and security improvements. With the release of PostgreSQL 14, users can benefit from significant performance improvements, better [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1008,991,236],"class_list":["post-14758","post","type-post","status-publish","format-standard","hentry","category-blog","tag-how-to-upgrade-postgresql-12-to-14","tag-linux-server-management","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Upgrade PostgreSQL 12 to 14 on Ubuntu Easily<\/title>\n<meta name=\"description\" content=\"Learn how to upgrade PostgreSQL 12 to 14 on Ubuntu safely and quickly using simple steps. Ensure a smooth database upgrade without data loss\" \/>\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.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Upgrade PostgreSQL from 12 to 14 on Ubuntu\" \/>\n<meta property=\"og:description\" content=\"Learn how to upgrade PostgreSQL 12 to 14 on Ubuntu safely and quickly using simple steps. Ensure a smooth database upgrade without data loss\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-25T13:16:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-28T05:20:07+00:00\" \/>\n<meta name=\"author\" content=\"Sajna VM\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sajna VM\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\\\/\"},\"author\":{\"name\":\"Sajna VM\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\"},\"headline\":\"How to Upgrade PostgreSQL from 12 to 14 on Ubuntu\",\"datePublished\":\"2025-04-25T13:16:00+00:00\",\"dateModified\":\"2025-04-28T05:20:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\\\/\"},\"wordCount\":691,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"how to upgrade postgresql 12 to 14\",\"Linux Server Management\",\"Ubuntu\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\\\/\",\"name\":\"How to Upgrade PostgreSQL 12 to 14 on Ubuntu Easily\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-04-25T13:16:00+00:00\",\"dateModified\":\"2025-04-28T05:20:07+00:00\",\"description\":\"Learn how to upgrade PostgreSQL 12 to 14 on Ubuntu safely and quickly using simple steps. Ensure a smooth database upgrade without data loss\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Upgrade PostgreSQL from 12 to 14 on Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\",\"name\":\"Sajna VM\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"caption\":\"Sajna VM\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Upgrade PostgreSQL 12 to 14 on Ubuntu Easily","description":"Learn how to upgrade PostgreSQL 12 to 14 on Ubuntu safely and quickly using simple steps. Ensure a smooth database upgrade without data loss","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.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How to Upgrade PostgreSQL from 12 to 14 on Ubuntu","og_description":"Learn how to upgrade PostgreSQL 12 to 14 on Ubuntu safely and quickly using simple steps. Ensure a smooth database upgrade without data loss","og_url":"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-04-25T13:16:00+00:00","article_modified_time":"2025-04-28T05:20:07+00:00","author":"Sajna VM","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sajna VM","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/"},"author":{"name":"Sajna VM","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be"},"headline":"How to Upgrade PostgreSQL from 12 to 14 on Ubuntu","datePublished":"2025-04-25T13:16:00+00:00","dateModified":"2025-04-28T05:20:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/"},"wordCount":691,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["how to upgrade postgresql 12 to 14","Linux Server Management","Ubuntu"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/","url":"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/","name":"How to Upgrade PostgreSQL 12 to 14 on Ubuntu Easily","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-04-25T13:16:00+00:00","dateModified":"2025-04-28T05:20:07+00:00","description":"Learn how to upgrade PostgreSQL 12 to 14 on Ubuntu safely and quickly using simple steps. Ensure a smooth database upgrade without data loss","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-upgrade-postgresql-from-12-to-14-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Upgrade PostgreSQL from 12 to 14 on Ubuntu"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be","name":"Sajna VM","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","caption":"Sajna VM"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14758","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=14758"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14758\/revisions"}],"predecessor-version":[{"id":14762,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14758\/revisions\/14762"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=14758"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=14758"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=14758"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}