{"id":200056,"date":"2025-04-03T00:50:04","date_gmt":"2025-04-03T00:50:04","guid":{"rendered":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/"},"modified":"2025-04-03T00:50:04","modified_gmt":"2025-04-03T00:50:04","slug":"how-to-extract-key-and-value-from-dictionary-in-python","status":"publish","type":"post","link":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/","title":{"rendered":"How to extract key and value from dictionary in Python?"},"content":{"rendered":"<p>**There are several ways to extract key and value from dictionary in Python. One way is to use the items() method which returns a view object that displays a list of a dictionary&#8217;s key-value pairs. Another way is to use the keys() method to get a list of all the keys in the dictionary, and the values() method to get a list of all the values in the dictionary. You can also use a for loop to iterate over the dictionary and extract key-value pairs.**<\/p>\n<p>Dictionaries in Python are used to store key-value pairs. They are mutable, unordered collections that are indexed by keys. To extract key and value from a dictionary in Python, you can use various methods and techniques. Here are some common ways to do it:<\/p>\n<p>1. **Using the items() method:**<\/p>\n<p>You can use the items() method to extract key-value pairs from a dictionary. This method returns a view object that displays a list of key-value tuples.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nfor key, value in my_dict.items():<br \/>\n    print(key, value)<br \/>\n&#8220;`<\/p>\n<p>2. **Using the keys() method:**<\/p>\n<p>If you only need to extract the keys from a dictionary, you can use the keys() method, which returns a list of all the keys in the dictionary.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nkeys = my_dict.keys()<br \/>\nprint(keys)<br \/>\n&#8220;`<\/p>\n<p>3. **Using the values() method:**<\/p>\n<p>Similarly, if you only need to extract the values from a dictionary, you can use the values() method, which returns a list of all the values in the dictionary.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nvalues = my_dict.values()<br \/>\nprint(values)<br \/>\n&#8220;`<\/p>\n<p>4. **Iterating over the dictionary:**<\/p>\n<p>You can also iterate over the dictionary using a for loop to extract key-value pairs.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nfor key in my_dict:<br \/>\n    value = my_dict[key]<br \/>\n    print(key, value)<br \/>\n&#8220;`<\/p>\n<p>5. **Using list comprehensions:**<\/p>\n<p>List comprehensions provide a concise way to extract key-value pairs from a dictionary.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nitems = [(key, value) for key, value in my_dict.items()]<br \/>\nprint(items)<br \/>\n&#8220;`<\/p>\n<p>6. **Using the get() method:**<\/p>\n<p>You can use the get() method to extract a value from a dictionary using a specified key.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nvalue = my_dict.get(&#8216;b&#8217;)<br \/>\nprint(value)<br \/>\n&#8220;`<\/p>\n<p>7. **Using the pop() method:**<\/p>\n<p>The pop() method can be used to extract an item from a dictionary and remove it at the same time.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nvalue = my_dict.pop(&#8216;b&#8217;)<br \/>\nprint(value)<br \/>\n&#8220;`<\/p>\n<p>8. **Using the items() method with a filter:**<\/p>\n<p>You can use the items() method with a filter function to extract key-value pairs based on a condition.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nfiltered_items = {key: value for key, value in my_dict.items() if value > 1}<br \/>\nprint(filtered_items)<br \/>\n&#8220;`<\/p>\n<p>9. **Using the list() constructor:**<\/p>\n<p>You can use the list() constructor to convert a dictionary&#8217;s key-value pairs into a list of tuples.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nitems = list(my_dict.items())<br \/>\nprint(items)<br \/>\n&#8220;`<\/p>\n<p>10. **Using the zip() function:**<\/p>\n<p>You can use the zip() function to combine the keys and values of a dictionary into a list of tuples.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nitems = list(zip(my_dict.keys(), my_dict.values()))<br \/>\nprint(items)<br \/>\n&#8220;`<\/p>\n<p>11. **Using the dict.items() method:**<\/p>\n<p>You can use the dict.items() method to extract key-value pairs from a dictionary in a specific order.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nitems = dict.items(my_dict)<br \/>\nprint(items)<br \/>\n&#8220;`<\/p>\n<p>12. **Using the dict.keys() and dict.values() methods together:**<\/p>\n<p>You can use the dict.keys() and dict.values() methods together to extract the keys and values from a dictionary separately.<\/p>\n<p>&#8220;`python<br \/>\nmy_dict = {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3}<br \/>\nkeys = dict.keys(my_dict)<br \/>\nvalues = dict.values(my_dict)<br \/>\nprint(keys, values)<br \/>\n&#8220;`<\/p>\n<p>These are just a few of the ways in which you can extract key and value from a dictionary in Python. Depending on your specific requirements, you may choose one method over another. Experiment with different approaches to find the one that best suits your needs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>**There are several ways to extract key and value from dictionary in Python. One way is to use the items() method which returns a view object that displays a list of a dictionary&#8217;s key-value pairs. Another way is to use the keys() method to get a list of all the keys in the dictionary, and &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to extract key and value from dictionary in Python?\" class=\"read-more button\" href=\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/#more-200056\">Read more<span class=\"screen-reader-text\">How to extract key and value from dictionary in Python?<\/span><\/a><\/p>\n","protected":false},"author":51,"featured_media":107420,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[86279],"tags":[],"class_list":["post-200056","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-learn","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to extract key and value from dictionary in Python?<\/title>\n<meta name=\"description\" content=\"**There are several ways to extract key and value from dictionary in Python. One way is to use the items() method which returns a view object that\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to extract key and value from dictionary in Python?\" \/>\n<meta property=\"og:description\" content=\"**There are several ways to extract key and value from dictionary in Python. One way is to use the items() method which returns a view object that\" \/>\n<meta property=\"og:url\" content=\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/synchronyfinancial\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-03T00:50:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Adam Forbes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@synchrony\" \/>\n<meta name=\"twitter:site\" content=\"@synchrony\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Adam Forbes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/\"},\"author\":{\"name\":\"Adam Forbes\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/88cd882dfb29a6b147bc0ea26dc84060\"},\"headline\":\"How to extract key and value from dictionary in Python?\",\"datePublished\":\"2025-04-03T00:50:04+00:00\",\"dateModified\":\"2025-04-03T00:50:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/\"},\"wordCount\":669,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"articleSection\":[\"Learn\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/\",\"name\":\"How to extract key and value from dictionary in Python?\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\"},\"datePublished\":\"2025-04-03T00:50:04+00:00\",\"dateModified\":\"2025-04-03T00:50:04+00:00\",\"description\":\"**There are several ways to extract key and value from dictionary in Python. One way is to use the items() method which returns a view object that\",\"breadcrumb\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/namso-gen.co\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to extract key and value from dictionary in Python?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"description\":\"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co\",\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/namso-gen.co\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"contentUrl\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"width\":500,\"height\":164,\"caption\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\"},\"image\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/synchronyfinancial\",\"https:\/\/twitter.com\/synchrony\",\"https:\/\/www.youtube.com\/synchronyfinancial\",\"https:\/\/www.instagram.com\/synchrony\",\"https:\/\/www.linkedin.com\/company\/synchrony-financial\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/88cd882dfb29a6b147bc0ea26dc84060\",\"name\":\"Adam Forbes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"Adam Forbes\"},\"description\":\"Guest author Adam Forbes has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to extract key and value from dictionary in Python?","description":"**There are several ways to extract key and value from dictionary in Python. One way is to use the items() method which returns a view object that","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:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/","og_locale":"en_US","og_type":"article","og_title":"How to extract key and value from dictionary in Python?","og_description":"**There are several ways to extract key and value from dictionary in Python. One way is to use the items() method which returns a view object that","og_url":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/","og_site_name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","article_publisher":"https:\/\/www.facebook.com\/synchronyfinancial","article_published_time":"2025-04-03T00:50:04+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png","type":"image\/png"}],"author":"Adam Forbes","twitter_card":"summary_large_image","twitter_creator":"@synchrony","twitter_site":"@synchrony","twitter_misc":{"Written by":"Adam Forbes","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/#article","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/"},"author":{"name":"Adam Forbes","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/88cd882dfb29a6b147bc0ea26dc84060"},"headline":"How to extract key and value from dictionary in Python?","datePublished":"2025-04-03T00:50:04+00:00","dateModified":"2025-04-03T00:50:04+00:00","mainEntityOfPage":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/"},"wordCount":669,"commentCount":0,"publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"articleSection":["Learn"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/","url":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/","name":"How to extract key and value from dictionary in Python?","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/#website"},"datePublished":"2025-04-03T00:50:04+00:00","dateModified":"2025-04-03T00:50:04+00:00","description":"**There are several ways to extract key and value from dictionary in Python. One way is to use the items() method which returns a view object that","breadcrumb":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/namso-gen.co\/blog\/how-to-extract-key-and-value-from-dictionary-in-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/namso-gen.co\/blog\/"},{"@type":"ListItem","position":2,"name":"How to extract key and value from dictionary in Python?"}]},{"@type":"WebSite","@id":"https:\/\/namso-gen.co\/blog\/#website","url":"https:\/\/namso-gen.co\/blog\/","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","description":"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co","publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/namso-gen.co\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/namso-gen.co\/blog\/#organization","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","url":"https:\/\/namso-gen.co\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","contentUrl":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","width":500,"height":164,"caption":"Namso Gen Blog - Free Credit Card Generator [100% Valid]"},"image":{"@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/synchronyfinancial","https:\/\/twitter.com\/synchrony","https:\/\/www.youtube.com\/synchronyfinancial","https:\/\/www.instagram.com\/synchrony","https:\/\/www.linkedin.com\/company\/synchrony-financial"]},{"@type":"Person","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/88cd882dfb29a6b147bc0ea26dc84060","name":"Adam Forbes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"Adam Forbes"},"description":"Guest author Adam Forbes has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here."}]}},"_links":{"self":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/200056","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/users\/51"}],"replies":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/comments?post=200056"}],"version-history":[{"count":0,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/200056\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media\/107420"}],"wp:attachment":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media?parent=200056"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/categories?post=200056"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/tags?post=200056"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}