{"id":810,"date":"2021-12-11T00:05:54","date_gmt":"2021-12-10T23:05:54","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=810"},"modified":"2021-12-11T00:05:56","modified_gmt":"2021-12-10T23:05:56","slug":"return-the-sum-of-even-digits-of-a-given-number-in-java","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/","title":{"rendered":"Return the Sum of Even Digits of a Given Number in Java"},"content":{"rendered":"\n<p><strong>Question:<\/strong><\/p>\n\n\n\n<p>Write a static method below that takes integer number as input argument and returns the sum of the even digits of that number.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>No System.out.println statements should appear in your method Instead, you need to return the result. <\/li><\/ol>\n\n\n\n<p> 2. No Scanner operations should appear here (e.g., input.nextInt()),Instead, refer to the input parameters of this method.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Solution<\/strong>:<\/p>\n\n\n\n<pre title=\"sumEvenDigits.java\" class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">public class SumExercise{\n\npublic static void main(String [] args){\n  System.out.println(sumEvendigits(5842))\n\/\/14\n}\npublic static int sumEvendigits(int number) {\r\n\t\t\n\tint digit;\r\n\tint sum = 0;\r\n\t\t\r\n\twhile(number != 0)\r\n\t{\r\n          digit = number % 10;   \r\n\t\t\t\r\n\t  if(digit % 2 == 0)\r\n\t  sum = sum + digit;\r\n\t            \r\n\t  number = number \/ 10;\r\n          }\r\n\t  return sum;\r\n\t}\r\n\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-sum-digits-of-any-integer-number\"><a href=\"https:\/\/codeflarelimited.com\/blog\/write-a-static-method-that-takes-int-number-as-input-argument-and-returns-the-sum-of-the-digits-of-that-number\/\" target=\"_blank\" rel=\"noreferrer noopener\">Sum Digits of Any Integer Number<\/a><\/h3>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-check-if-a-given-number-is-palindrome-in-java\"><a href=\"https:\/\/codeflarelimited.com\/blog\/check-if-a-number-is-palindrome-in-java\/\" target=\"_blank\" rel=\"noreferrer noopener\">Check if a Given Number is Palindrome in Java<\/a><\/h3>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Question: Write a static method below that takes integer number as input argument and returns the sum of<\/p>\n","protected":false},"author":1,"featured_media":807,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[98],"tags":[],"class_list":["post-810","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-softare-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Return the Sum of Even Digits of a Given Number in Java<\/title>\n<meta name=\"description\" content=\"Write a static method below that takes integer number as input argument and returns the sum of the even digits of that number.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Return the Sum of Even Digits of a Given Number in Java\" \/>\n<meta property=\"og:description\" content=\"Write a static method below that takes integer number as input argument and returns the sum of the even digits of that number.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-10T23:05:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-10T23:05:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/11\/Screenshot-2021-11-08-at-01.14.03.png\" \/>\n\t<meta property=\"og:image:width\" content=\"939\" \/>\n\t<meta property=\"og:image:height\" content=\"468\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Return the Sum of Even Digits of a Given Number in Java\",\"datePublished\":\"2021-12-10T23:05:54+00:00\",\"dateModified\":\"2021-12-10T23:05:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/\"},\"wordCount\":88,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Screenshot-2021-11-08-at-01.14.03.png\",\"articleSection\":[\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/\",\"name\":\"Return the Sum of Even Digits of a Given Number in Java\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Screenshot-2021-11-08-at-01.14.03.png\",\"datePublished\":\"2021-12-10T23:05:54+00:00\",\"dateModified\":\"2021-12-10T23:05:56+00:00\",\"description\":\"Write a static method below that takes integer number as input argument and returns the sum of the even digits of that number.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Screenshot-2021-11-08-at-01.14.03.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Screenshot-2021-11-08-at-01.14.03.png\",\"width\":939,\"height\":468,\"caption\":\"sum the digits of a number\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/return-the-sum-of-even-digits-of-a-given-number-in-java\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Return the Sum of Even Digits of a Given Number in Java\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Return the Sum of Even Digits of a Given Number in Java","description":"Write a static method below that takes integer number as input argument and returns the sum of the even digits of that number.","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:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/","og_locale":"en_US","og_type":"article","og_title":"Return the Sum of Even Digits of a Given Number in Java","og_description":"Write a static method below that takes integer number as input argument and returns the sum of the even digits of that number.","og_url":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2021-12-10T23:05:54+00:00","article_modified_time":"2021-12-10T23:05:56+00:00","og_image":[{"width":939,"height":468,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/11\/Screenshot-2021-11-08-at-01.14.03.png","type":"image\/png"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Return the Sum of Even Digits of a Given Number in Java","datePublished":"2021-12-10T23:05:54+00:00","dateModified":"2021-12-10T23:05:56+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/"},"wordCount":88,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/11\/Screenshot-2021-11-08-at-01.14.03.png","articleSection":["softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/","url":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/","name":"Return the Sum of Even Digits of a Given Number in Java","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/11\/Screenshot-2021-11-08-at-01.14.03.png","datePublished":"2021-12-10T23:05:54+00:00","dateModified":"2021-12-10T23:05:56+00:00","description":"Write a static method below that takes integer number as input argument and returns the sum of the even digits of that number.","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/11\/Screenshot-2021-11-08-at-01.14.03.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/11\/Screenshot-2021-11-08-at-01.14.03.png","width":939,"height":468,"caption":"sum the digits of a number"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/return-the-sum-of-even-digits-of-a-given-number-in-java\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"Return the Sum of Even Digits of a Given Number in Java"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/11\/Screenshot-2021-11-08-at-01.14.03.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/810","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=810"}],"version-history":[{"count":1,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/810\/revisions"}],"predecessor-version":[{"id":812,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/810\/revisions\/812"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/807"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=810"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=810"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=810"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}