{"id":15707,"date":"2025-09-13T19:45:00","date_gmt":"2025-09-13T14:15:00","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15707"},"modified":"2025-09-15T11:14:12","modified_gmt":"2025-09-15T05:44:12","slug":"how-to-migrate-route-53-domains-between-aws-accounts","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/","title":{"rendered":"How to Migrate Route 53 Domains Between AWS Accounts"},"content":{"rendered":"\n<p>When moving infrastructure between AWS accounts, one common task is migrating DNS records in Amazon Route 53. Instead of manually copying records, we can export them from the source account and import them into the destination account. This ensures consistency and reduces the chance of misconfiguration. In this guide, we\u2019ll walk through How to migrate a Route 53 domains and its records from one AWS account to another.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-prerequisites\">Prerequisites<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Access to both the source and destination AWS accounts.<\/li>\n\n\n\n<li>jq installed (used for JSON filtering).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-1-create-a-new-hosted-zone-in-the-destination-account-console\"><strong>Step 1<\/strong>: Create a New Hosted Zone in the Destination Account (Console)<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Log in to the <strong>AWS Management Console<\/strong> of the destination account.<br><\/li>\n\n\n\n<li>Navigate to <strong>Route 53 \u2192 Hosted Zones<\/strong>.<br><\/li>\n\n\n\n<li>Click <strong>Create hosted zone<\/strong>.<br><\/li>\n\n\n\n<li>Enter the domain name (e.g., example.com).<br><\/li>\n\n\n\n<li>Choose <strong>Public hosted zone<\/strong> (if the domain is internet-facing).<br><\/li>\n\n\n\n<li>Click <strong>Create hosted zone<\/strong>.<br><\/li>\n<\/ol>\n\n\n\n<p>&nbsp;Note: This hosted zone will come with default <strong>NS<\/strong> and <strong>SOA<\/strong> records. Keep them as-is, since they\u2019re needed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-2-export-records-from-the-source-account\"><strong>Step 2<\/strong>: Export Records from the Source Account<\/h2>\n\n\n\n<p>Run the following command to list all DNS records in the source account:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws route53 list-resource-record-sets \\\n    --hosted-zone-id SOURCE_HOSTED_ZONE_ID \\\n    > source-records.json<\/code><\/pre>\n\n\n\n<p>This file contains all records, including system ones like NS and SOA. We don\u2019t want to overwrite those in the destination.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-3-clean-and-format-the-records\"><strong>Step 3<\/strong>: Clean and Format the Records<\/h2>\n\n\n\n<p>Use jq to filter out NS and SOA records:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jq '{Changes: &#91;.ResourceRecordSets&#91;]\n  | select(.Type!=\"NS\" and .Type!=\"SOA\")\n  | {Action:\"CREATE\", ResourceRecordSet:.}]}' \\\n  source-records.json > formatted-records.json<\/code><\/pre>\n\n\n\n<p>This generates a new file (formatted-records.json) containing only the records we need to migrate.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-4-download-the-json-file-from-cloudshell\"><strong>Step 4<\/strong>: Download the JSON File from CloudShell<\/h2>\n\n\n\n<p>1. In CloudShell, go to the <strong>Actions<\/strong> menu (top-right).<\/p>\n\n\n\n<p>2. Select <strong>Download file<\/strong>.<\/p>\n\n\n\n<p>3. Enter the filename (e.g., source-records.json).<\/p>\n\n\n\n<p>4. Save it to your local computer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-5-upload-the-json-file-to-the-destination-account\"><strong>Step 5<\/strong>: Upload the JSON File to the Destination Account<\/h2>\n\n\n\n<p>1. Switch to the destination AWS account.<\/p>\n\n\n\n<p>2. Open CloudShell.<\/p>\n\n\n\n<p>3. In the <strong>Actions<\/strong> menu, select<strong> Upload file<\/strong>.<\/p>\n\n\n\n<p>4. Choose your formatted-records.json and upload it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-6-import-records-into-the-destination-account\"><strong>Step 6<\/strong>: Import Records into the Destination Account<\/h2>\n\n\n\n<p>Upload the new records to the hosted zone in the destination account:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws route53 change-resource-record-sets \\\n    --hosted-zone-id DESTINATION_HOSTED_ZONE_ID \\\n    --change-batch file:\/\/formatted-records.json<\/code><\/pre>\n\n\n\n<p>This will create all DNS records in the new hosted zone.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-7-verify-the-import-status\"><strong>Step 7<\/strong>: Verify the Import Status<\/h2>\n\n\n\n<p>Check whether the changes are applied:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws route53 get-change --id CHANGE_ID<\/code><\/pre>\n\n\n\n<p>The CHANGE_ID comes from the response of the previous step. Once the status shows as INSYNC, the migration is complete.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-8-update-the-domain-registrar\"><strong>Step 8<\/strong>: Update the Domain Registrar<\/h2>\n\n\n\n<p>If your domain is registered outside <a href=\"https:\/\/aws.amazon.com\/console\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">AWS<\/mark><\/a>, log in to your domain registrar and update the nameservers (NS) to match those provided by Route 53 in the destination hosted zone.<\/p>\n\n\n\n<p>If your domain is registered in Route 53 itself, simply update the domain\u2019s nameserver delegation to point to the new hosted zone in the destination account.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-9-test-your-dns\"><strong>Step 9<\/strong>: Test Your DNS<\/h2>\n\n\n\n<p>Use tools like dig, nslookup, or online DNS checkers to confirm that your records are resolving correctly:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>dig A example.com\nnslookup mail.example.com<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\">Conclusion<\/h3>\n\n\n\n<p>Migrating Route 53 hosted zones between AWS accounts involves exporting records from the source, cleaning them up, importing them into the destination, and updating the nameservers. By following this process, you ensure a smooth migration without downtime.<\/p>\n\n\n\n<p>Need expert help to Migrate Route 53 Domains between AWS accounts seamlessly? Our team at Skynats specializes in <a href=\"https:\/\/www.skynats.com\/aws-management\/\">AWS Management Services<\/a>, ensuring smooth DNS transfers, zero downtime, and secure migrations. Contact us today for reliable support and hassle-free domain management<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When moving infrastructure between AWS accounts, one common task is migrating DNS records in Amazon Route 53. Instead of manually copying records, we can export them from the source account and import them into the destination account. This ensures consistency and reduces the chance of misconfiguration. In this guide, we\u2019ll walk through How to migrate [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1006,1104],"class_list":["post-15707","post","type-post","status-publish","format-standard","hentry","category-blog","tag-aws-management-services","tag-migrate-route-53-domains-between-aws-accounts"],"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>Migrate Route 53 Domains: Easy AWS Account Transfer Guide<\/title>\n<meta name=\"description\" content=\"Learn how to Migrate Route 53 Domains between AWS accounts easily. Follow our step-by-step guide &amp; simplify your transfer today!\" \/>\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-migrate-route-53-domains-between-aws-accounts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Migrate Route 53 Domains Between AWS Accounts\" \/>\n<meta property=\"og:description\" content=\"Learn how to Migrate Route 53 Domains between AWS accounts easily. Follow our step-by-step guide &amp; simplify your transfer today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/\" \/>\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-09-13T14:15:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-15T05:44:12+00:00\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\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=\"Sourav AJ\" \/>\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.skynats.com\\\/blog\\\/how-to-migrate-route-53-domains-between-aws-accounts\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-route-53-domains-between-aws-accounts\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to Migrate Route 53 Domains Between AWS Accounts\",\"datePublished\":\"2025-09-13T14:15:00+00:00\",\"dateModified\":\"2025-09-15T05:44:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-route-53-domains-between-aws-accounts\\\/\"},\"wordCount\":516,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"AWS Management Services\",\"Migrate Route 53 Domains Between AWS Accounts\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-route-53-domains-between-aws-accounts\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-route-53-domains-between-aws-accounts\\\/\",\"name\":\"Migrate Route 53 Domains: Easy AWS Account Transfer Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-09-13T14:15:00+00:00\",\"dateModified\":\"2025-09-15T05:44:12+00:00\",\"description\":\"Learn how to Migrate Route 53 Domains between AWS accounts easily. Follow our step-by-step guide & simplify your transfer today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-route-53-domains-between-aws-accounts\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-route-53-domains-between-aws-accounts\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-migrate-route-53-domains-between-aws-accounts\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Migrate Route 53 Domains Between AWS Accounts\"}]},{\"@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\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Migrate Route 53 Domains: Easy AWS Account Transfer Guide","description":"Learn how to Migrate Route 53 Domains between AWS accounts easily. Follow our step-by-step guide & simplify your transfer today!","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-migrate-route-53-domains-between-aws-accounts\/","og_locale":"en_US","og_type":"article","og_title":"How to Migrate Route 53 Domains Between AWS Accounts","og_description":"Learn how to Migrate Route 53 Domains between AWS accounts easily. Follow our step-by-step guide & simplify your transfer today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-09-13T14:15:00+00:00","article_modified_time":"2025-09-15T05:44:12+00:00","author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to Migrate Route 53 Domains Between AWS Accounts","datePublished":"2025-09-13T14:15:00+00:00","dateModified":"2025-09-15T05:44:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/"},"wordCount":516,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["AWS Management Services","Migrate Route 53 Domains Between AWS Accounts"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/","url":"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/","name":"Migrate Route 53 Domains: Easy AWS Account Transfer Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-09-13T14:15:00+00:00","dateModified":"2025-09-15T05:44:12+00:00","description":"Learn how to Migrate Route 53 Domains between AWS accounts easily. Follow our step-by-step guide & simplify your transfer today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-migrate-route-53-domains-between-aws-accounts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Migrate Route 53 Domains Between AWS Accounts"}]},{"@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\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15707","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\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15707"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15707\/revisions"}],"predecessor-version":[{"id":15709,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15707\/revisions\/15709"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15707"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15707"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15707"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}