{"id":30091,"date":"2015-11-18T00:48:39","date_gmt":"2015-11-17T19:18:39","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=30091"},"modified":"2026-07-29T10:58:02","modified_gmt":"2026-07-29T05:28:02","slug":"how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/","title":{"rendered":"How to allow Cross Domain Ajax calls to an Application in Spring Boot Application"},"content":{"rendered":"<p>You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to <strong>Allow-Origin : {your domain&#8217;s}<\/strong> or you can use a <strong>wild card &#8220;*&#8221;\u00a0<\/strong> to allow the calls from all domains.<\/p>\n<p>You can even Define the Custom Headers your application supports by defining them in a comma separated format , e.g\u00a0<strong>Access-Control-Allow-Headers: &#8220;header-1,header-2,header3&#8221;<\/strong><\/p>\n<pre>package com.ekiras.filter;\r\n\r\nimport org.springframework.stereotype.Component;\r\n\r\nimport javax.servlet.*;\r\nimport javax.servlet.http.HttpServletResponse;\r\nimport java.io.IOException;\r\n\r\n@Component\r\npublic class CorsFilter implements Filter {\r\n\r\n    public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {\r\n        HttpServletResponse response = (HttpServletResponse) res;\r\n        response.setHeader(\"Access-Control-Allow-Origin\", \"*\");\r\n        response.setHeader(\"Access-Control-Allow-Methods\", \"POST, GET, OPTIONS, DELETE\");\r\n        response.setHeader(\"Access-Control-Max-Age\", \"3600\");\r\n        response.setHeader(\"Access-Control-Allow-Headers\", \"Content-Type, x-requested-with, X-Custom-Header\");\r\n        chain.doFilter(req, res);\r\n    }\r\n\r\n    public void init(FilterConfig filterConfig) {}\r\n\r\n    public void destroy() {}\r\n\r\n}<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain&#8217;s} or you can use a wild card &#8220;*&#8221;\u00a0 to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a [&hellip;]<\/p>\n","protected":false},"author":173,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":2,"footnotes":""},"categories":[446,1],"tags":[96,2763,2072],"class_list":["post-30091","post","type-post","status-publish","format-standard","hentry","category-java","category-technology","tag-ajax","tag-cors","tag-springboot"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain&#039;s} or you can use a wild card &quot;*&quot; to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Ekansh Rastogi\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"How to allow Cross Domain Ajax calls | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain&#039;s} or you can use a wild card &quot;*&quot; to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to allow Cross Domain Ajax calls | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain&#039;s} or you can use a wild card &quot;*&quot; to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/#article\",\"name\":\"How to allow Cross Domain Ajax calls | TO THE NEW Blog\",\"headline\":\"How to allow Cross Domain Ajax calls to an Application in Spring Boot Application\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ekansh-rastogi\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-11-18T00:48:39+05:30\",\"dateModified\":\"2026-07-29T10:58:02+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/#webpage\"},\"articleSection\":\"Java\\\/JVM, Technology, Ajax, CORs, SpringBoot\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/#listItem\",\"name\":\"How to allow Cross Domain Ajax calls to an Application in Spring Boot Application\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/#listItem\",\"position\":3,\"name\":\"How to allow Cross Domain Ajax calls to an Application in Spring Boot Application\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ekansh-rastogi\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ekansh-rastogi\\\/\",\"name\":\"Ekansh Rastogi\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/91d1d74c-6f74-4e88-b66c-3bb2e73fae21_ekansh.rastogi@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Ekansh Rastogi\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/\",\"name\":\"How to allow Cross Domain Ajax calls | TO THE NEW Blog\",\"description\":\"You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain's} or you can use a wild card \\\"*\\\" to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ekansh-rastogi\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ekansh-rastogi\\\/#author\"},\"datePublished\":\"2015-11-18T00:48:39+05:30\",\"dateModified\":\"2026-07-29T10:58:02+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to allow Cross Domain Ajax calls | TO THE NEW Blog","description":"You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain's} or you can use a wild card \"*\" to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a","canonical_url":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/#article","name":"How to allow Cross Domain Ajax calls | TO THE NEW Blog","headline":"How to allow Cross Domain Ajax calls to an Application in Spring Boot Application","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/ekansh-rastogi\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"datePublished":"2015-11-18T00:48:39+05:30","dateModified":"2026-07-29T10:58:02+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/#webpage"},"articleSection":"Java\/JVM, Technology, Ajax, CORs, SpringBoot"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.online\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/#listItem","name":"How to allow Cross Domain Ajax calls to an Application in Spring Boot Application"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/#listItem","position":3,"name":"How to allow Cross Domain Ajax calls to an Application in Spring Boot Application","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/ekansh-rastogi\/#author","url":"https:\/\/2thenew.online\/blog\/author\/ekansh-rastogi\/","name":"Ekansh Rastogi","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/91d1d74c-6f74-4e88-b66c-3bb2e73fae21_ekansh.rastogi@tothenew.com.jpg","width":96,"height":96,"caption":"Ekansh Rastogi"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/#webpage","url":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/","name":"How to allow Cross Domain Ajax calls | TO THE NEW Blog","description":"You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain's} or you can use a wild card \"*\" to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/ekansh-rastogi\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/ekansh-rastogi\/#author"},"datePublished":"2015-11-18T00:48:39+05:30","dateModified":"2026-07-29T10:58:02+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"How to allow Cross Domain Ajax calls | TO THE NEW Blog","og:description":"You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain's} or you can use a wild card &quot;*&quot; to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a","og:url":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"How to allow Cross Domain Ajax calls | TO THE NEW Blog","twitter:description":"You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain's} or you can use a wild card &quot;*&quot; to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"30091","title":"How to allow Cross Domain Ajax calls | #site_title","description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/","og_title":null,"og_description":null,"og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"created":"2021-04-29 22:44:26","updated":"2026-07-29 05:28:03","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to allow Cross Domain Ajax calls to an Application in Spring Boot Application\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Technology","link":"https:\/\/2thenew.online\/blog\/category\/technology\/"},{"label":"How to allow Cross Domain Ajax calls to an Application in Spring Boot Application","link":"https:\/\/2thenew.online\/blog\/how-to-allow-cross-domain-ajax-calls-to-an-application-in-spring-boot-application\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/30091","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/173"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=30091"}],"version-history":[{"count":1,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/30091\/revisions"}],"predecessor-version":[{"id":80905,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/30091\/revisions\/80905"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=30091"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=30091"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=30091"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}