{"id":30356,"date":"2015-11-29T11:39:00","date_gmt":"2015-11-29T06:09:00","guid":{"rendered":"https:\/\/2thenew.today\/blog\/?p=30356"},"modified":"2016-02-09T10:51:56","modified_gmt":"2016-02-09T05:21:56","slug":"how-to-get-output-sql-server-as-a-json-string","status":"publish","type":"post","link":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/","title":{"rendered":"How to get output from Sql server as a jSON String ?"},"content":{"rendered":"<p>We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format \u00a0from database ,then we can face problem because database does not support \u00a0native JSON integration. There is a way through which we can generate output in json format by following these steps:-<\/p>\n<p>1.Convert tabular format to xml .<\/p>\n<p>2.Generate json format from that xml by using custom select query as \u00a0in given below example step 3.<\/p>\n<p>This is step by step process to convert sql output to json format as:-<\/p>\n<p><strong>1)<\/strong> <strong>Let\u2019s create Product list table in sql server and insert some record in this table<\/strong>.<\/p>\n<p>createtableProductList<br \/>\n(<br \/>\nId int identity(1,1) primary key,<br \/>\nProductName varchar(500),<br \/>\nPrice numeric(18,2),<br \/>\nQuantity int,<br \/>\nInserton datetime<br \/>\n)<\/p>\n<p>insert into ProductList(ProductName,Price,quantity,Inserton)<br \/>\nvalues(&#8216;Digital camera&#8217;,20000,5,getdate())<\/p>\n<p>insert into ProductList(ProductName,Price,quantity,Inserton)<br \/>\nvalues(&#8216;Laptop&#8217;,10000,5,getdate())<\/p>\n<p>insert into ProductList(ProductName,Price,quantity,Inserton)<br \/>\nvalues(&#8216;Printer&#8217;,12000.00,5,getdate())<\/p>\n<p>insert into ProductList(ProductName,Price,quantity,Inserton)<br \/>\nvalues(&#8216;Mobile Phone&#8217;,12000.00,5,getdate())<\/p>\n<p>insert into ProductList(ProductName,Price,quantity,Inserton)<br \/>\nvalues(&#8216;Digital camera&#8217;,20000.00, 5,getdate())<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-30354\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/ShowProduct.png\" alt=\"ShowProduct\" width=\"392\" height=\"118\" \/><\/p>\n<p><strong>2)<\/strong> <strong>Convert sql table into \u00a0XML Format<\/strong><\/p>\n<p>Select * from ProductList for XML Path(&#8216;xml path&#8217;)<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-30355\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/XML.png\" alt=\"XML\" width=\"392\" height=\"328\" \/><\/p>\n<p><strong>3)<\/strong> <strong>Convert XML To JSon format string by using custom select query.<\/strong><\/p>\n<p>select'[&#8216;+<br \/>\nstuff(<br \/>\n(<br \/>\nselect top 2 &#8216;,{&#8220;ProductName&#8221;: &#8220;&#8216;+ProductName+'&#8221;,&#8221;Price&#8221;: &#8220;&#8216;+convert(varchar,Price)+'&#8221;,&#8221;Quantity&#8221;: &#8220;&#8216;+convert(varchar,quantity)+'&#8221;,&#8221;Inserton&#8221;: &#8220;&#8216;+convert(varchar,Inserton,105)+'&#8221;}&#8217;<br \/>\nfrom ProductList for XML Path(&#8221;)<br \/>\n),1,1,&#8221;<br \/>\n)<br \/>\n+&#8217;]'[ProductDetail]<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-30353\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/JSON.png\" alt=\"JSON\" width=\"392\" height=\"233\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format \u00a0from database ,then we can face problem because database does not support \u00a0native JSON integration. There is a way through which we can generate output in json format by following these steps:- [&hellip;]<\/p>\n","protected":false},"author":855,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":38,"footnotes":""},"categories":[1],"tags":[2867],"class_list":["post-30356","post","type-post","status-publish","format-standard","hentry","category-technology","tag-sql-to-xml-conversion"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format from database ,then we can face problem because database does not support native JSON integration. There is a way through which we can generate output in json format by following these steps:-\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Mohit Kumar\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/\" \/>\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 get output from Sql server as a jSON String ? | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format from database ,then we can face problem because database does not support native JSON integration. There is a way through which we can generate output in json format by following these steps:-\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.today\/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 get output from Sql server as a jSON String ? | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format from database ,then we can face problem because database does not support native JSON integration. There is a way through which we can generate output in json format by following these steps:-\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.today\/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-get-output-sql-server-as-a-json-string\\\/#article\",\"name\":\"How to get output from Sql server as a jSON String ? | TO THE NEW Blog\",\"headline\":\"How to get output from Sql server as a jSON String ?\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mohit-kumar1\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/11\\\/ShowProduct.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-get-output-sql-server-as-a-json-string\\\/#articleImage\"},\"datePublished\":\"2015-11-29T11:39:00+05:30\",\"dateModified\":\"2016-02-09T10:51:56+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-get-output-sql-server-as-a-json-string\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-get-output-sql-server-as-a-json-string\\\/#webpage\"},\"articleSection\":\"Technology, SQL to XML conversion\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-get-output-sql-server-as-a-json-string\\\/#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-get-output-sql-server-as-a-json-string\\\/#listItem\",\"name\":\"How to get output from Sql server as a jSON String ?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-get-output-sql-server-as-a-json-string\\\/#listItem\",\"position\":3,\"name\":\"How to get output from Sql server as a jSON String ?\",\"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\\\/mohit-kumar1\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mohit-kumar1\\\/\",\"name\":\"Mohit Kumar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-get-output-sql-server-as-a-json-string\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/21c535ef-49a1-438f-a7e0-613e190f0829_mohit.kumar1@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Mohit Kumar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-get-output-sql-server-as-a-json-string\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-get-output-sql-server-as-a-json-string\\\/\",\"name\":\"How to get output from Sql server as a jSON String ? | TO THE NEW Blog\",\"description\":\"We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format from database ,then we can face problem because database does not support native JSON integration. There is a way through which we can generate output in json format by following these steps:-\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-get-output-sql-server-as-a-json-string\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mohit-kumar1\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mohit-kumar1\\\/#author\"},\"datePublished\":\"2015-11-29T11:39:00+05:30\",\"dateModified\":\"2016-02-09T10:51:56+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 get output from Sql server as a jSON String ? | TO THE NEW Blog","description":"We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format from database ,then we can face problem because database does not support native JSON integration. There is a way through which we can generate output in json format by following these steps:-","canonical_url":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#article","name":"How to get output from Sql server as a jSON String ? | TO THE NEW Blog","headline":"How to get output from Sql server as a jSON String ?","author":{"@id":"https:\/\/2thenew.today\/blog\/author\/mohit-kumar1\/#author"},"publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/ShowProduct.png","@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#articleImage"},"datePublished":"2015-11-29T11:39:00+05:30","dateModified":"2016-02-09T10:51:56+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#webpage"},"articleSection":"Technology, SQL to XML conversion"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.today\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.today\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#listItem","name":"How to get output from Sql server as a jSON String ?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#listItem","position":3,"name":"How to get output from Sql server as a jSON String ?","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.today\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.today\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.today\/blog\/author\/mohit-kumar1\/#author","url":"https:\/\/2thenew.today\/blog\/author\/mohit-kumar1\/","name":"Mohit Kumar","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/21c535ef-49a1-438f-a7e0-613e190f0829_mohit.kumar1@tothenew.com.jpg","width":96,"height":96,"caption":"Mohit Kumar"}},{"@type":"WebPage","@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#webpage","url":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/","name":"How to get output from Sql server as a jSON String ? | TO THE NEW Blog","description":"We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format from database ,then we can face problem because database does not support native JSON integration. There is a way through which we can generate output in json format by following these steps:-","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.today\/blog\/author\/mohit-kumar1\/#author"},"creator":{"@id":"https:\/\/2thenew.today\/blog\/author\/mohit-kumar1\/#author"},"datePublished":"2015-11-29T11:39:00+05:30","dateModified":"2016-02-09T10:51:56+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.today\/blog\/#website","url":"https:\/\/2thenew.today\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"How to get output from Sql server as a jSON String ? | TO THE NEW Blog","og:description":"We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format from database ,then we can face problem because database does not support native JSON integration. There is a way through which we can generate output in json format by following these steps:-","og:url":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/","og:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"How to get output from Sql server as a jSON String ? | TO THE NEW Blog","twitter:description":"We can convert tabular format to xml using sql query in sql server database ,but if we want to convert in json format from database ,then we can face problem because database does not support native JSON integration. There is a way through which we can generate output in json format by following these steps:-","twitter:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"30356","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","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":"","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":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 16:13:55","updated":"2024-02-29 09:27:24","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.today\/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.today\/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 get output from Sql server as a jSON String ?\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.today\/blog"},{"label":"Technology","link":"https:\/\/2thenew.today\/blog\/category\/technology\/"},{"label":"How to get output from Sql server as a jSON String ?","link":"https:\/\/2thenew.today\/blog\/how-to-get-output-sql-server-as-a-json-string\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/30356","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/users\/855"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/comments?post=30356"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/30356\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/media?parent=30356"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/categories?post=30356"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/tags?post=30356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}