{"id":8349,"date":"2021-10-23T15:26:55","date_gmt":"2021-10-23T09:56:55","guid":{"rendered":"https:\/\/www.skynats.com\/?p=8349"},"modified":"2021-10-23T15:38:27","modified_gmt":"2021-10-23T10:08:27","slug":"how-to-fix-ftp-error-421-service-not-available","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/","title":{"rendered":"How to Fix &#8220;FTP Error 421 Service Not Available&#8221;"},"content":{"rendered":"\n<p>FTP error code 4xx indicates that the connection was not attempted and that the requested action did not occur. However, this is a temporary condition, and the action may be requested again.<\/p>\n\n\n\n<p>Additionally, the FTP error 421 service not available indicates that the connection to the remote server is unavailable.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">FTP Error 421 Service Not Available <\/h2>\n\n\n\n<p>Now, let&#8217;s discuss the most frequently occurring causes of this error and how our <a href=\"https:\/\/www.skynats.com\/blog\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#0375a6\" class=\"has-inline-color\">server management<\/span><\/a> team resolve them.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>Invalid FTP host<\/strong><\/li><\/ol>\n\n\n\n<p>This error can occur when the FTP server is unable to determine the server&#8217;s IP address from the hostname. Additionally, this error is recorded in the server logs (\/var\/log\/messages).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>getaddrinfo 'Hostname_Is_Here' error: Name or service not known warning: unable to determine IP address of 'host.domain.com domain<\/code><\/pre>\n\n\n\n<p><strong>How to fix it?<\/strong><\/p>\n\n\n\n<p>The ping command is used to determine the FTP host&#8217;s connectivity.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ping host.domain.com<\/code><\/pre>\n\n\n\n<p>If ping doesn&#8217;t work, add the correct hostname in the server configuration files.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/hosts\n\/etc\/sysconfig\/network\n<\/code><\/pre>\n\n\n\n<p>Important: Restart the network service to take effect.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/init.d\/network<\/code><\/pre>\n\n\n\n<p>On Plesk servers, the hostname is changed via <strong>Tools &amp; Settings > Server Settings<\/strong>.<\/p>\n\n\n\n<p>2. <strong>Restrictions on firewalls<\/strong><\/p>\n\n\n\n<p>Another possibility for this error is that the firewall configurations or restrictions are incorrect.<\/p>\n\n\n\n<p>We&#8217;ve seen instances where the remote server refuses to accept connections from a particular IP address or range of IP addresses. The IP address may be blocked for a variety of reasons, including abnormal activity, excessive connections, and so on.<\/p>\n\n\n\n<p>Similarly, another possibility is that the user&#8217;s outbound connections are being blocked at the ISP or at their local firewall. We&#8217;ve seen instances where a third-party firewall or antivirus is blocking FTP connections on the system. Additionally, ISPs can block outbound FTP traffic.<\/p>\n\n\n\n<p><strong>How to fix it?<\/strong><\/p>\n\n\n\n<p>Determine whether the customer&#8217;s IP address xx.xx.xx.xx is blocked using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>csf -g xx.xx.xx.xx<\/code><\/pre>\n\n\n\n<p>Additionally, if the IP address is blocked, we will immediately unblock it and restore FTP access. Later, we notify the customer of the reason for the block and the remedial measures.<\/p>\n\n\n\n<p>If there are no server-side issues, we notify customers and instruct them to gradually disable their security applications such as antivirus, Windows firewall, and so on. This assists us in determining which application is causing issues.<\/p>\n\n\n\n<p>Alternatively, if the issue is at the ISP&#8217;s end, we obtain the customer&#8217;s traceroute results. This enables us to determine whether the issue is on the intermediate level.<\/p>\n\n\n\n<p>Most importantly, if customers are blocked at the ISP or local firewall level, we always recommend that they connect via SFTP, which uses SSH.<\/p>\n\n\n\n<p>3. <strong>Errors in FTP service configuration<\/strong><\/p>\n\n\n\n<p>Another variant of this error in ProFTP servers is shown below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>test.com proftpd&#91;130008] 127.0.0.1: Failed binding to ::, port 21: Address already in use\ntest.com proftpd&#91;130008] 127.0.0.1: Check to see if inetd\/xinetd, or another proftpd instance, is already using ::, port 21\n<\/code><\/pre>\n\n\n\n<p>Typically, this error occurs when another application is already using port 21. This can also occur if the server&#8217;s ProFTP service becomes stuck. Similarly, problems can arise due to errors in the FTP service configuration file.<\/p>\n\n\n\n<p><strong>How to fix it?<\/strong><\/p>\n\n\n\n<p>Using the <strong>netstat<\/strong> command, determine which services are listening on FTP port 21.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\nnetstat -plnt | grep :21\n<\/code><\/pre>\n\n\n\n<p>And, if we discover that this port is being used by multiple applications or another instance of proftpd, we will reroute these applications to alternate ports. For example, we always make sure that the <strong>ServerType<\/strong> parameter in the ProFTP configuration file is set to <strong>inetd<\/strong> on Plesk servers.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ServerType inetd<\/code><\/pre>\n\n\n\n<p>The <em>inetd\/xinetd<\/em> service listens on port 21 for connection requests and then starts proftpd and terminates the connection.<\/p>\n\n\n\n<p>If the FTP service becomes unresponsive on the server, we can use the following commands to terminate the dead process and restart the service.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ps aux | grep proftpd\nkill -9 PID\nservice xinetd restart\n<\/code><\/pre>\n\n\n\n<p>Besides that, we check to see if the FTP configuration files (\/etc\/proftpd.conf and \/etc\/vsftpd.conf) are intact.<\/p>\n\n\n\n<p><strong>Can\u2019t connect to FTP?<\/strong> <\/p>\n\n\n\n<p>Check that the ProFTPd configuration file (\/etc\/proftpd.conf) refers to this directory. If the server did not create the folder. To resolve the issue, create a folder \/var\/run\/proftpd\/.<\/p>\n\n\n\n<p><strong>Conclution<\/strong><\/p>\n\n\n\n<p>FTP error 421 service not available can occur as a result of firewall restrictions, an invalid FTP host, and other factors. <\/p>\n\n\n\n<p>If you require an expert to assist you in resolving your ongoing FTP issues? Our <a href=\"https:\/\/www.skynats.com\/contact-us\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#036f9d\" class=\"has-inline-color\">technical experts<\/span><\/a> are available 24&#215;7.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>FTP error code 4xx indicates that the connection was not attempted and that the requested action did not occur. However, this is a temporary condition, and the action may be requested again. Additionally, the FTP error 421 service not available indicates that the connection to the remote server is unavailable. FTP Error 421 Service Not [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[636,635],"class_list":["post-8349","post","type-post","status-publish","format-standard","hentry","category-blog","tag-ftp-421-timeout","tag-ftp-error-421"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Fix FTP Error 421 Service Not Available | Skynats<\/title>\n<meta name=\"description\" content=\"FTP error code 421 indicates that no connection was attempted and no action was performed. The action may be requested again if the condition persists.\" \/>\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-fix-ftp-error-421-service-not-available\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix &quot;FTP Error 421 Service Not Available&quot;\" \/>\n<meta property=\"og:description\" content=\"FTP error code 421 indicates that no connection was attempted and no action was performed. The action may be requested again if the condition persists.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/\" \/>\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=\"2021-10-23T09:56:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-23T10:08:27+00:00\" \/>\n<meta name=\"author\" content=\"Arjun N\" \/>\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=\"Arjun N\" \/>\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-fix-ftp-error-421-service-not-available\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-ftp-error-421-service-not-available\\\/\"},\"author\":{\"name\":\"Arjun N\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/2428d280a8b32a1fbd909b1411e32fb7\"},\"headline\":\"How to Fix &#8220;FTP Error 421 Service Not Available&#8221;\",\"datePublished\":\"2021-10-23T09:56:55+00:00\",\"dateModified\":\"2021-10-23T10:08:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-ftp-error-421-service-not-available\\\/\"},\"wordCount\":668,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"ftp 421 timeout\",\"ftp error 421\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-ftp-error-421-service-not-available\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-ftp-error-421-service-not-available\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-ftp-error-421-service-not-available\\\/\",\"name\":\"How to Fix FTP Error 421 Service Not Available | Skynats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2021-10-23T09:56:55+00:00\",\"dateModified\":\"2021-10-23T10:08:27+00:00\",\"description\":\"FTP error code 421 indicates that no connection was attempted and no action was performed. The action may be requested again if the condition persists.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-ftp-error-421-service-not-available\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-ftp-error-421-service-not-available\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-ftp-error-421-service-not-available\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix &#8220;FTP Error 421 Service Not Available&#8221;\"}]},{\"@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\\\/2428d280a8b32a1fbd909b1411e32fb7\",\"name\":\"Arjun N\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e0f4d2489abeea1769beb944d2258c862259b62ff26853075066ca8ad37e3333?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e0f4d2489abeea1769beb944d2258c862259b62ff26853075066ca8ad37e3333?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e0f4d2489abeea1769beb944d2258c862259b62ff26853075066ca8ad37e3333?s=96&d=mm&r=g\",\"caption\":\"Arjun N\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Fix FTP Error 421 Service Not Available | Skynats","description":"FTP error code 421 indicates that no connection was attempted and no action was performed. The action may be requested again if the condition persists.","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-fix-ftp-error-421-service-not-available\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix \"FTP Error 421 Service Not Available\"","og_description":"FTP error code 421 indicates that no connection was attempted and no action was performed. The action may be requested again if the condition persists.","og_url":"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2021-10-23T09:56:55+00:00","article_modified_time":"2021-10-23T10:08:27+00:00","author":"Arjun N","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Arjun N","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/"},"author":{"name":"Arjun N","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/2428d280a8b32a1fbd909b1411e32fb7"},"headline":"How to Fix &#8220;FTP Error 421 Service Not Available&#8221;","datePublished":"2021-10-23T09:56:55+00:00","dateModified":"2021-10-23T10:08:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/"},"wordCount":668,"commentCount":0,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["ftp 421 timeout","ftp error 421"],"articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/","url":"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/","name":"How to Fix FTP Error 421 Service Not Available | Skynats","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2021-10-23T09:56:55+00:00","dateModified":"2021-10-23T10:08:27+00:00","description":"FTP error code 421 indicates that no connection was attempted and no action was performed. The action may be requested again if the condition persists.","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-ftp-error-421-service-not-available\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fix &#8220;FTP Error 421 Service Not Available&#8221;"}]},{"@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\/2428d280a8b32a1fbd909b1411e32fb7","name":"Arjun N","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e0f4d2489abeea1769beb944d2258c862259b62ff26853075066ca8ad37e3333?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e0f4d2489abeea1769beb944d2258c862259b62ff26853075066ca8ad37e3333?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e0f4d2489abeea1769beb944d2258c862259b62ff26853075066ca8ad37e3333?s=96&d=mm&r=g","caption":"Arjun N"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/8349","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\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=8349"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/8349\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=8349"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=8349"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=8349"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}