{"id":4670,"date":"2016-05-31T12:00:02","date_gmt":"2016-05-31T17:00:02","guid":{"rendered":"http:\/\/www.filecloud.com\/blog\/?p=4670"},"modified":"2021-07-27T13:33:22","modified_gmt":"2021-07-27T18:33:22","slug":"how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat","status":"publish","type":"post","link":"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/","title":{"rendered":"Use Netstat Application to See Listening Ports in Windows"},"content":{"rendered":"<p>Whenever an application wants to make itself accessible over the network, it claims a TCP\/IP port, which means that port can\u2019t be used by anything else. So if you need to use an in-use port, how do you tell what application is holding it?<\/p>\n<p>There\u2019s a number of ways to tell which application has the port locked, here we will use a windows built-in way using the command line and Task Manager.<\/p>\n<p><strong>Using Built-In Tools to See What is Listening on a Port<\/strong><\/p>\n<p>The first step is to use a command-line tool to see what ports are in use, and use a special flag that tells us which port is assigned to each Windows process identifier number. Then we can use that number to look up exactly which process it is.<\/p>\n<p>Open up a command prompt and type in the following\u2014you may have to open in Administrator mode to see all processes:<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-4672\" src=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/05\/p11.png\" alt=\"p1\" width=\"375\" height=\"421\"><\/p>\n<p><strong>netstat\u00a0-ab | more<\/strong><\/p>\n<p>This will immediately show you a list, although it\u2019s maybe a little complicated. You\u2019ll see the process name in the list, and you can search for it.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-4675\" src=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/05\/p41.png\" alt=\"p4\" width=\"527\" height=\"327\"><\/p>\n<p>You can also use this other method, which takes an extra step, but makes it easier to locate the actual process:<\/p>\n<p><strong><br \/>\nnetstat -aon | more<\/strong><\/p>\n<p>If you look on the right-hand side, you\u2019ll see where I\u2019ve highlighted the list of PIDs, or Process Identifiers. Find the one that\u2019s bound to the port that you\u2019re trying to troubleshoot\u2014for this example, you\u2019ll see that 0.0.0.0:80, or port 80, is in use by PID 1184.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-4673\" src=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/05\/p21.png\" alt=\"p2\" width=\"493\" height=\"246\"><\/p>\n<p>Now you can simply open up Task Manager\u2014you might have to use the option to Show Processes for All Users, and then you\u2019ll be able to find the PID in the list. Once you\u2019re there, you can use the End Process, Open File Location, or Go to Service(s) options to control the process or stop it.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-4676\" src=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/05\/p51.png\" alt=\"p5\" width=\"418\" height=\"487\"><\/p>\n<p>Alternatively you can even use resource monitor to stop any process that is running. To open resource monitor type <strong>resmon.exe<\/strong> in run. This will bring up the resource monitor window.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-4677\" src=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/05\/p61.png\" alt=\"p6\" width=\"360\" height=\"183\"><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-4674\" src=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/05\/p31.png\" alt=\"p3\" width=\"530\" height=\"372\"><\/p>\n<p>There would be situations were some other process is running at port 80. To stop anything running in port 80 the following command can be used from command prompt.<\/p>\n<p><strong>net stop http \/y <\/strong><\/p>\n<p><strong>Frequently Asked Questions (FAQs)<\/strong><\/p>\n<p><strong>What application is listening on a TCP IP port in Windows?<\/strong><br \/>\nNetstat is a diagnostic tool that creates a list of open ports that the machine is listening to, as well as the ports it is currently connected to on other machines.\u00a0 In Netstat, stat stands for state or statistics, which tells you the current network status of every TCP connection.<\/p>\n<p><strong>How do I find out what application is using a TCP port?<\/strong><br \/>\nYou can use Netstat -b -a -o.<\/p>\n<p>This tool provides a list of all open ports and their associated processes. The -o shows the process id, which you can look up in your task manager or processes tab. To end that process, simply enter taskkill \/PID xxxx.<\/p>\n<p><strong>How can I tell if a server is listening on a port?<\/strong><br \/>\nOn the server itself, use Netstat -an to check to see which ports are listening. From outside the server, telnet host port can be used to check connections. A refused connection means nothing is running, whereas an accepted connection means something is running. Timeout implies a firewall is blocking access.<\/p>\n<p><strong>How do I find out what application is using port 8080?<\/strong><br \/>\nOpen the diagnostic tool, netstat -ano. This tool will list the PID (Process Identifier) that is listening to port 80. Open the Task Manager\u2019s Processes tab. Select \u201cView\u201d and \u201cSelect Columns\u201d menu. Activate the PID column to see the name of the process listening on port 80.<\/p>\n<p><strong>Is Port 8080 http or https?<\/strong><br \/>\nPort 8080 is a non-standard, high number port that is popular as an alternative port for HTTP servers, most often application servers. Port 8443 is a default alternative port for HTTPS servers. It can also be used as an alternative port for any protocol like ssh, FTP, NTP, BOOTP, etc.<\/p>\n<p><strong>Why is port 8080 default?<\/strong><br \/>\nHistorically, only authorized system administrators were able to establish and operate a web server on port 80, since this was within the first 1023-port privileged region. When non-administrators wished to run their own web servers, they often chose port 8080 to host a secondary or alternate web server.<\/p>\n<p><a href=\"https:\/\/www.airsend.io\/?utm_source=filecloud&amp;utm_medium=blog\" class=\"broken_link\"><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-22625\" src=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2019\/12\/320_50_mobile_ad_2x.png\" alt=\"\" width=\"656\" height=\"116\"><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Whenever an application wants to make itself accessible over the network, it claims a TCP\/IP port, which means that port can\u2019t be used by anything else. So if you need to use an in-use port, how do you tell what application is holding it? There\u2019s a number of ways to tell which application has the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.13 (Yoast SEO v20.13) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Use Netstat Application to See Listening Ports in Windows<\/title>\n<meta name=\"description\" content=\"In Windows, use the Netstat application to see what ports are listening. When an application tries to make itself available over the network, it claims a TCP\/IP port.\" \/>\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.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Use Netstat Application to See Listening Ports in Windows\" \/>\n<meta property=\"og:description\" content=\"In Windows, use the Netstat application to see what ports are listening. When an application tries to make itself available over the network, it claims a TCP\/IP port.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/\" \/>\n<meta property=\"og:site_name\" content=\"FileCloud blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tonidopage\" \/>\n<meta property=\"article:published_time\" content=\"2016-05-31T17:00:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-27T18:33:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/05\/p11.png\" \/>\n<meta name=\"author\" content=\"Team FileCloud\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@getfilecloud\" \/>\n<meta name=\"twitter:site\" content=\"@getfilecloud\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team FileCloud\" \/>\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.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/\"},\"author\":{\"name\":\"Team FileCloud\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/8a8df071f564aa2c10fa07d6ce60c935\"},\"headline\":\"Use Netstat Application to See Listening Ports in Windows\",\"datePublished\":\"2016-05-31T17:00:02+00:00\",\"dateModified\":\"2021-07-27T18:33:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/\"},\"wordCount\":738,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/#organization\"},\"articleSection\":[\"Enterprise File Sharing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/\",\"url\":\"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/\",\"name\":\"Use Netstat Application to See Listening Ports in Windows\",\"isPartOf\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/#website\"},\"datePublished\":\"2016-05-31T17:00:02+00:00\",\"dateModified\":\"2021-07-27T18:33:22+00:00\",\"description\":\"In Windows, use the Netstat application to see what ports are listening. When an application tries to make itself available over the network, it claims a TCP\/IP port.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.filecloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Use Netstat Application to See Listening Ports in Windows\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#website\",\"url\":\"https:\/\/www.filecloud.com\/blog\/\",\"name\":\"FileCloud blog\",\"description\":\"Topics on Private cloud, On-Premises, Self-Hosted, Enterprise File Sync and Sharing\",\"publisher\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.filecloud.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#organization\",\"name\":\"FileCloud\",\"url\":\"https:\/\/www.filecloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/02\/filecloud_logo_comparison.jpg\",\"contentUrl\":\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/02\/filecloud_logo_comparison.jpg\",\"width\":155,\"height\":40,\"caption\":\"FileCloud\"},\"image\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/tonidopage\",\"https:\/\/twitter.com\/getfilecloud\",\"https:\/\/www.linkedin.com\/company\/codelathe\",\"https:\/\/www.pinterest.com\/filecloud\/filecloud\/\",\"https:\/\/www.youtube.com\/channel\/UCbU5gTFdNCPESA5aGipFW6g\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/8a8df071f564aa2c10fa07d6ce60c935\",\"name\":\"Team FileCloud\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b5818ab931b69298f500d8a184fd2384?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b5818ab931b69298f500d8a184fd2384?s=96&d=mm&r=g\",\"caption\":\"Team FileCloud\"},\"sameAs\":[\"http:\/\/www.filecloud.com\"],\"url\":\"https:\/\/www.filecloud.com\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Use Netstat Application to See Listening Ports in Windows","description":"In Windows, use the Netstat application to see what ports are listening. When an application tries to make itself available over the network, it claims a TCP\/IP port.","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.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/","og_locale":"en_US","og_type":"article","og_title":"Use Netstat Application to See Listening Ports in Windows","og_description":"In Windows, use the Netstat application to see what ports are listening. When an application tries to make itself available over the network, it claims a TCP\/IP port.","og_url":"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/","og_site_name":"FileCloud blog","article_publisher":"https:\/\/www.facebook.com\/tonidopage","article_published_time":"2016-05-31T17:00:02+00:00","article_modified_time":"2021-07-27T18:33:22+00:00","og_image":[{"url":"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/05\/p11.png"}],"author":"Team FileCloud","twitter_card":"summary_large_image","twitter_creator":"@getfilecloud","twitter_site":"@getfilecloud","twitter_misc":{"Written by":"Team FileCloud","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/#article","isPartOf":{"@id":"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/"},"author":{"name":"Team FileCloud","@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/8a8df071f564aa2c10fa07d6ce60c935"},"headline":"Use Netstat Application to See Listening Ports in Windows","datePublished":"2016-05-31T17:00:02+00:00","dateModified":"2021-07-27T18:33:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/"},"wordCount":738,"commentCount":0,"publisher":{"@id":"https:\/\/www.filecloud.com\/blog\/#organization"},"articleSection":["Enterprise File Sharing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/","url":"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/","name":"Use Netstat Application to See Listening Ports in Windows","isPartOf":{"@id":"https:\/\/www.filecloud.com\/blog\/#website"},"datePublished":"2016-05-31T17:00:02+00:00","dateModified":"2021-07-27T18:33:22+00:00","description":"In Windows, use the Netstat application to see what ports are listening. When an application tries to make itself available over the network, it claims a TCP\/IP port.","breadcrumb":{"@id":"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.filecloud.com\/blog\/how-to-find-what-application-is-listening-on-a-tcpip-port-in-windows-using-netstat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.filecloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Use Netstat Application to See Listening Ports in Windows"}]},{"@type":"WebSite","@id":"https:\/\/www.filecloud.com\/blog\/#website","url":"https:\/\/www.filecloud.com\/blog\/","name":"FileCloud blog","description":"Topics on Private cloud, On-Premises, Self-Hosted, Enterprise File Sync and Sharing","publisher":{"@id":"https:\/\/www.filecloud.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.filecloud.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.filecloud.com\/blog\/#organization","name":"FileCloud","url":"https:\/\/www.filecloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/02\/filecloud_logo_comparison.jpg","contentUrl":"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/02\/filecloud_logo_comparison.jpg","width":155,"height":40,"caption":"FileCloud"},"image":{"@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tonidopage","https:\/\/twitter.com\/getfilecloud","https:\/\/www.linkedin.com\/company\/codelathe","https:\/\/www.pinterest.com\/filecloud\/filecloud\/","https:\/\/www.youtube.com\/channel\/UCbU5gTFdNCPESA5aGipFW6g"]},{"@type":"Person","@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/8a8df071f564aa2c10fa07d6ce60c935","name":"Team FileCloud","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b5818ab931b69298f500d8a184fd2384?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b5818ab931b69298f500d8a184fd2384?s=96&d=mm&r=g","caption":"Team FileCloud"},"sameAs":["http:\/\/www.filecloud.com"],"url":"https:\/\/www.filecloud.com\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/posts\/4670"}],"collection":[{"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/comments?post=4670"}],"version-history":[{"count":13,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/posts\/4670\/revisions"}],"predecessor-version":[{"id":31720,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/posts\/4670\/revisions\/31720"}],"wp:attachment":[{"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/media?parent=4670"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/categories?post=4670"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/tags?post=4670"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}