{"id":120014,"date":"2026-07-08T17:37:01","date_gmt":"2026-07-08T12:07:01","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=120014"},"modified":"2026-07-08T17:37:02","modified_gmt":"2026-07-08T12:07:02","slug":"how-to-merge-two-dictionaries-in-python","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/how-to-merge-two-dictionaries-in-python\/","title":{"rendered":"How to Merge Two Dictionaries in Python\u00a0"},"content":{"rendered":"\n<p>Combining data from two dictionaries is something almost every Python developer runs into, merging config settings, combining API responses, or building a final dataset from multiple sources. Python gives you several clean ways to do this, and picking the right one makes your code easier to read and less likely to cause bugs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>TL;DR\u00a0Summary<\/strong><\/h2>\n\n\n\n<ul>\n<li><strong>Python provides three primary ways to merge dictionaries:<\/strong> the | merge operator, dictionary unpacking (**), and the update() method.<\/li>\n\n\n\n<li><strong>When duplicate keys exist, the value from the right-hand dictionary takes precedence<\/strong> regardless of the merging technique used.<\/li>\n\n\n\n<li><strong>The best method depends on your needs:<\/strong> use | for modern Python, ** for compatibility or multiple dictionaries, and <strong>update() <\/strong>for in-place modifications.<\/li>\n<\/ul>\n\n\n\n<p><em>Merge dictionaries in Python using |, update(), or {**d1, **d2}. Master Python dicts and core concepts with HCL GUVI\u2019s <\/em><strong><em>Python Zero to Hero course.<\/em><\/strong><em> <\/em><a href=\"https:\/\/www.guvi.in\/courses\/programming\/python-zero-to-hero\/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Start your Python journey here<\/em><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Do You Merge Two Dictionaries in Python?<\/strong><\/h2>\n\n\n\n<p>The simplest and most modern way is the merge operator |, available in Python 3.9 and later: <strong>merged = dict1 | dict2<\/strong>. For older Python versions, use dictionary unpacking with <strong>{**dict1, **dict2}<\/strong> or the <strong>update()<\/strong><strong> <\/strong>method. All three produce the same result: a single dictionary combining both.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Method 1: The Merge Operator (Python 3.9+)<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>A Clean, Modern Syntax<\/strong><\/li>\n<\/ol>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/hub\/python\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python <\/a>3.9 introduced the | operator specifically for dictionaries. It reads naturally and creates a brand new dictionary without touching the originals.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>dict1 = {<\/strong><strong>&#8216;a&#8217;<\/strong><strong>: 1, <\/strong><strong>&#8216;b&#8217;<\/strong><strong>: 2} dict2 = {<\/strong><strong>&#8216;c&#8217;<\/strong><strong>: 3, <\/strong><strong>&#8216;d&#8217;<\/strong><strong>: 4}<\/strong><strong><br><\/strong><strong>merged = dict1 | dict2 <\/strong><strong>print<\/strong><strong>(merged) <\/strong><strong># {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3, &#8216;d&#8217;: 4}<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Both dict1 and dict2 stay exactly as they were. This is the recommended approach if you&#8217;re on Python 3.9 or newer.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>What Happens With Duplicate Keys<\/strong><\/li>\n<\/ol>\n\n\n\n<p>When the same key appears in both dictionaries, the right-hand dictionary always wins.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>dict1 = {<\/strong><strong>&#8216;a&#8217;<\/strong><strong>: 1, <\/strong><strong>&#8216;b&#8217;<\/strong><strong>: 2} dict2 = {<\/strong><strong>&#8216;b&#8217;<\/strong><strong>: 3, <\/strong><strong>&#8216;c&#8217;<\/strong><strong>: 4}<\/strong><strong><br><\/strong><strong>merged = dict1 | dict2 <\/strong><strong>print<\/strong><strong>(merged) <\/strong><strong># {&#8216;a&#8217;: 1, &#8216;b&#8217;: 3, &#8216;c&#8217;: 4}<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Here, b exists in both, and dict2&#8217;s value (3) overwrites dict1&#8217;s value (2). This rule applies to every merge method in this guide; the dictionary on the right always takes priority for shared keys.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>The In-Place Version: |=<\/strong><\/li>\n<\/ol>\n\n\n\n<p>If you want to update a dictionary directly instead of creating a new one, use <strong>|=<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>config = {<\/strong><strong>&#8216;debug&#8217;<\/strong><strong>: <\/strong><strong>False<\/strong><strong>, <\/strong><strong>&#8216;timeout&#8217;<\/strong><strong>: 30} overrides = {<\/strong><strong>&#8216;debug&#8217;<\/strong><strong>: <\/strong><strong>True<\/strong><strong>, <\/strong><strong>&#8216;retries&#8217;<\/strong><strong>: 3}<\/strong><strong><br><\/strong><strong>config |= overrides <\/strong><strong>print<\/strong><strong>(config) <\/strong><strong># {&#8216;debug&#8217;: True, &#8216;timeout&#8217;: 30, &#8216;retries&#8217;: 3}<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This modifies config directly, which is useful when you&#8217;re applying overrides to a settings dictionary and don&#8217;t need to preserve the original.<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\">\n\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong>\n  <br \/><br \/>\n\n  <strong style=\"color: #FFFFFF;\">Python 3.9<\/strong> introduced the <strong style=\"color: #FFFFFF;\">dictionary merge operator (<code style=\"color: #FFFFFF;\">|<\/code>)<\/strong>, making it easier and more intuitive to combine dictionaries. Before its introduction, developers typically used the <strong style=\"color: #FFFFFF;\">update()<\/strong> method or <strong style=\"color: #FFFFFF;\">dictionary unpacking (<code style=\"color: #FFFFFF;\">**<\/code>)<\/strong>, which often resulted in more verbose code when merging multiple dictionaries. The merge operator improves code readability while providing a concise and expressive syntax for creating new dictionaries from existing ones.\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Method 2: Dictionary Unpacking With **<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>Works on Older Python Versions Too<\/strong><\/li>\n<\/ol>\n\n\n\n<p>If your project needs to support Python versions before 3.9, dictionary unpacking is the go-to alternative. It&#8217;s been available since Python 3.5.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>dict1 = {<\/strong><strong>&#8216;a&#8217;<\/strong><strong>: 1, <\/strong><strong>&#8216;b&#8217;<\/strong><strong>: 2} dict2 = {<\/strong><strong>&#8216;c&#8217;<\/strong><strong>: 3, <\/strong><strong>&#8216;d&#8217;<\/strong><strong>: 4}<\/strong><strong><br><\/strong><strong>merged = {**dict1, **dict2} <\/strong><strong>print<\/strong><strong>(merged) <\/strong><strong># {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3, &#8216;d&#8217;: 4}<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The ** unpacks each dictionary&#8217;s key-value pairs into a new dictionary literal. The result is identical to using the | operator.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Merging More Than Two Dictionaries<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Unpacking handles any number of dictionaries in one line, which the | operator can&#8217;t do as cleanly.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>defaults = {<\/strong><strong>&#8216;color&#8217;<\/strong><strong>: <\/strong><strong>&#8216;blue&#8217;<\/strong><strong>, <\/strong><strong>&#8216;size&#8217;<\/strong><strong>: <\/strong><strong>&#8216;medium&#8217;<\/strong><strong>} user_prefs = {<\/strong><strong>&#8216;color&#8217;<\/strong><strong>: <\/strong><strong>&#8216;red&#8217;<\/strong><strong>} overrides = {<\/strong><strong>&#8216;size&#8217;<\/strong><strong>: <\/strong><strong>&#8216;large&#8217;<\/strong><strong>, <\/strong><strong>&#8216;font&#8217;<\/strong><strong>: <\/strong><strong>&#8216;Arial&#8217;<\/strong><strong>}<\/strong><strong><br><\/strong><strong>final<\/strong><strong> = {**defaults, **user_prefs, **overrides} <\/strong><strong>print<\/strong><strong>(<\/strong><strong>final<\/strong><strong>) <\/strong><strong># {&#8216;color&#8217;: &#8216;red&#8217;, &#8216;size&#8217;: &#8216;large&#8217;, &#8216;font&#8217;: &#8216;Arial&#8217;}<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Dictionaries listed later override earlier ones for shared keys; the same &#8220;right wins&#8221; rule applies, just extended across multiple dictionaries instead of two.<\/p>\n\n\n\n<ol start=\"3\">\n<li><strong>Adding Extra Keys During the Merge<\/strong><\/li>\n<\/ol>\n\n\n\n<p>You can also mix in individual key-value pairs alongside unpacked dictionaries.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>base = {<\/strong><strong>&#8216;a&#8217;<\/strong><strong>: 1, <\/strong><strong>&#8216;b&#8217;<\/strong><strong>: 2} extended = {**base, <\/strong><strong>&#8216;c&#8217;<\/strong><strong>: 3, <\/strong><strong>&#8216;d&#8217;<\/strong><strong>: 4} <\/strong><strong>print<\/strong><strong>(extended) <\/strong><strong># {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3, &#8216;d&#8217;: 4}<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This is handy when you need to merge a dictionary and add a couple of extra fields in the same step.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Method 3: The update() Method<\/strong><\/h2>\n\n\n\n<ol>\n<li><strong>The Traditional Approach<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Before Python 3.9, update() was the standard way to merge dictionaries. It&#8217;s still widely used and works on every Python 3 version.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>dict1 = {<\/strong><strong>&#8216;a&#8217;<\/strong><strong>: 1, <\/strong><strong>&#8216;b&#8217;<\/strong><strong>: 2} dict2 = {<\/strong><strong>&#8216;c&#8217;<\/strong><strong>: 3, <\/strong><strong>&#8216;d&#8217;<\/strong><strong>: 4}<\/strong><strong><br><\/strong><strong>dict1.update(dict2) <\/strong><strong>print<\/strong><strong>(dict1) <\/strong><strong># {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3, &#8216;d&#8217;: 4}<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Unlike the | operator or unpacking, update() modifies dict1 directly rather than creating a new dictionary. This is a key difference to remember.<\/p>\n\n\n\n<ol start=\"2\">\n<li><strong>Preserving the Original With copy()<\/strong><\/li>\n<\/ol>\n\n\n\n<p>If you need to keep dict1 unchanged, copy it first before calling update().<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>dict1 = {<\/strong><strong>&#8216;a&#8217;<\/strong><strong>: 1, <\/strong><strong>&#8216;b&#8217;<\/strong><strong>: 2} dict2 = {<\/strong><strong>&#8216;c&#8217;<\/strong><strong>: 3, <\/strong><strong>&#8216;d&#8217;<\/strong><strong>: 4}<\/strong><strong><br><\/strong><strong>merged = dict1.copy() merged.update(dict2)<\/strong><strong><br><\/strong><strong>print<\/strong><strong>(merged) <\/strong><strong># {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2, &#8216;c&#8217;: 3, &#8216;d&#8217;: 4} print(dict1) # {&#8216;a&#8217;: 1, &#8216;b&#8217;: 2}&nbsp; unchanged<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This pattern is common in real codebases where you don&#8217;t want a merge operation to have side effects on the original <a href=\"https:\/\/www.guvi.in\/blog\/guide-to-data-exploration\/\" target=\"_blank\" rel=\"noreferrer noopener\">data<\/a>.<\/p>\n\n\n\n<p><em>Merge dictionaries in Python using |, update(), or {**d1, **d2}. Master Python dicts and core concepts with HCL GUVI\u2019s <\/em><strong><em>Python Zero to Hero course.<\/em><\/strong><em> <\/em><a href=\"https:\/\/www.guvi.in\/courses\/programming\/python-zero-to-hero\/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Start your Python journey here<\/em><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Comparing All Three Methods<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Method<\/strong><\/td><td><strong>Python Version<\/strong><\/td><td><strong>Creates New Dict<\/strong><\/td><td><strong>Best For<\/strong><\/td><\/tr><tr><td>dict1 | dict2<\/td><td>3.9+<\/td><td>Yes<\/td><td>Modern, clean syntax<\/td><\/tr><tr><td>{**dict1, **dict2}<\/td><td>3.5+<\/td><td>Yes<\/td><td>Older Python, multiple dicts<\/td><\/tr><tr><td>dict1.update(dict2)<\/td><td>All Python 3<\/td><td>No&nbsp; modifies in place<\/td><td>When you want in-place changes<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Real-World Use Case: Merging Config Settings<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>A Practical Example<\/strong><\/h3>\n\n\n\n<p>A common real-world scenario is combining default settings with user-provided overrides, something almost every application does at startup.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>default_settings = {&#8216;theme&#8217;: &#8216;light&#8217;, &#8216;language&#8217;: &#8216;en&#8217;, &#8216;notifications&#8217;: True} user_settings = {&#8216;theme&#8217;: &#8216;dark&#8217;}<br>final_settings = default_settings | user_settings print(final_settings)<\/strong><br><strong>{&#8216;theme&#8217;: &#8216;dark&#8217;, &#8216;language&#8217;: &#8216;en&#8217;, &#8216;notifications&#8217;: True}<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The user&#8217;s choice for <strong>theme <\/strong>overrides the default, while every setting the user didn&#8217;t specify falls back to the default value. This pattern shows up in <a href=\"https:\/\/www.guvi.in\/hub\/network-programming-with-python\/understanding-apis\/\" target=\"_blank\" rel=\"noreferrer noopener\">API <\/a>clients, application configs, and command-line tools constantly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Which Method Should You Use?<\/strong><\/h2>\n\n\n\n<p>If you&#8217;re on Python 3.9 or later, use the | operator for merging two dictionaries; it&#8217;s the cleanest and most readable choice. Use {**dict1, **dict2} if you need compatibility with older Python versions or you&#8217;re merging more than two dictionaries at once. Reach for update() specifically when you want to modify a dictionary in place rather than create a new one.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Python gives you three solid ways to merge dictionaries, and the right choice depends mostly on your Python version and whether you want a new dictionary or an in-place update.&nbsp;<\/p>\n\n\n\n<p>The | operator is the modern standard for Python 3.9+, unpacking with ** covers older versions and multiple dictionaries, and update() remains useful whenever in-place modification is what you actually want. Whichever method you pick, remember the golden rule: when keys overlap, the right-hand dictionary always wins.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1782958836269\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What is the easiest way to merge two dictionaries in Python?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The easiest and most modern approach is using the merge operator:<br \/>dict1 = {&#8220;a&#8221;: 1}<br \/>dict2 = {&#8220;b&#8221;: 2}<br \/>merged = dict1 | dict2<br \/>This creates a new dictionary containing key-value pairs from both dictionaries.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782958847031\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. What happens when both dictionaries contain the same key?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>When duplicate keys exist, the value from the right-hand dictionary overwrites the value from the left-hand dictionary.<br \/>dict1 = {&#8220;a&#8221;: 1, &#8220;b&#8221;: 2}<br \/>dict2 = {&#8220;b&#8221;: 3}<br \/>result = dict1 | dict2<br \/># {&#8216;a&#8217;: 1, &#8216;b&#8217;: 3}<br \/>This behavior applies to all common dictionary merge methods.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782958860993\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. How can I merge dictionaries in Python versions older than 3.9?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Use dictionary unpacking with **:<br \/>dict1 = {&#8220;a&#8221;: 1}<br \/>dict2 = {&#8220;b&#8221;: 2}<br \/>merged = {**dict1, **dict2}<br \/>This approach works in Python 3.5 and later and produces a new merged dictionary.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782958874315\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. What is the difference between the | operator and update()?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The | operator creates a new dictionary and leaves the original dictionaries unchanged. The update() method modifies the existing dictionary directly.<br \/>dict1.update(dict2)<br \/>Use update() when you want to change the original dictionary in place.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782958886505\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. Can I merge more than two dictionaries at once?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. Dictionary unpacking is particularly useful for combining multiple dictionaries:<br \/>result = {<br \/>\u00a0\u00a0\u00a0\u00a0**defaults,<br \/>\u00a0\u00a0\u00a0\u00a0**user_settings,<br \/>\u00a0\u00a0\u00a0\u00a0**overrides<br \/>}<br \/>Values from dictionaries appearing later override earlier values when keys overlap.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782958901854\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>6. How can I merge dictionaries without modifying the original?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Use either the | operator or create a copy before calling update():<br \/>merged = dict1.copy()<br \/>merged.update(dict2)<br \/>This preserves the original dictionaries while creating a merged result.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1782958916536\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>7. When should I use each dictionary merging method?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p><strong>dict1 | dict2<\/strong> \u2014 Best for Python 3.9+ and merging two dictionaries cleanly.<br \/><strong>{**dict1, **dict2}<\/strong> \u2014 Best for older Python versions or merging multiple dictionaries.<br \/><strong>dict1.update(dict2)<\/strong> \u2014 Best when you want to modify an existing dictionary directly without creating a new one.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Combining data from two dictionaries is something almost every Python developer runs into, merging config settings, combining API responses, or building a final dataset from multiple sources. Python gives you several clean ways to do this, and picking the right one makes your code easier to read and less likely to cause bugs. TL;DR\u00a0Summary Merge [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":121971,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"45","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/how-to-merge-two-dictionaries-in-python-300x118.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/120014"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=120014"}],"version-history":[{"count":2,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/120014\/revisions"}],"predecessor-version":[{"id":121972,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/120014\/revisions\/121972"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/121971"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=120014"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=120014"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=120014"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}