{"id":21187,"date":"2020-08-14T01:31:23","date_gmt":"2020-08-14T08:31:23","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=21187"},"modified":"2023-12-01T03:57:50","modified_gmt":"2023-12-01T11:57:50","slug":"python-dict-object-is-not-callable","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/","title":{"rendered":"Python TypeError: \u2018dict\u2019 object is not callable Solution"},"content":{"rendered":"\n<p>Items in a <a href=\"https:\/\/careerkarma.com\/blog\/python-add-to-dictionary\/\">Python dictionary<\/a> must be called using the indexing syntax. This means you must follow a dictionary with square brackets and the key of the item you want to access. If you try to use curly brackets, Python will return a \u201cTypeError: \u2018dict\u2019 object is not callable\u201d error.<br><\/p>\n\n\n\n<p>In this guide, we talk about this error and why it is raised. We walk through an example of this error in action so you can learn how to solve it in your code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">TypeError: \u2018dict\u2019 object is not callable<\/h2>\n\n\n\n<p>Dictionaries are iterable objects. This means that you can <a href=\"https:\/\/careerkarma.com\/blog\/python-index\/\">access items individually<\/a> from inside a dictionary.<br><\/p>\n\n\n\n<p>To access an item in a dictionary, you need to use indexing syntax. Here\u2019s an example of indexing syntax in Python:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>dictionary = {&quot;key1&quot;: &quot;value1&quot;}\nprint(dictionary[&quot;key1&quot;])<\/pre><\/div>\n\n\n\n<p>Run our code. \u201cvalue\u201d is returned. The value associated with the key \u201ckey1\u201d is \u201cvalue1\u201d.<br><\/p>\n\n\n\n<p>If we try to access an item from our dictionary using curly brackets, we encounter an error. This is because curly brackets are used to denote <a href=\"https:\/\/careerkarma.com\/blog\/python-functions\/\">function calls<\/a> in Python.<br><\/p>\n\n\n\n<p>When Python sees a pair or curly brackets, it thinks you are trying to execute a function.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>Here, we create a program that prints out all the values in a dictionary to the console. This dictionary contains information about a type of bird, the Starling.<br><\/p>\n\n\n\n<p>Start by declaring a dictionary:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>starling = {\n\t&quot;name&quot;: &quot;Starling&quot;,\n\t&quot;Scientific_name&quot;: &quot;Sturnus Vulgaris&quot;,\n\t&quot;conservation_status_uk&quot;: &quot;Red&quot;,\n\t&quot;food&quot;: &quot;Invertebrates and fruit&quot;\n}<\/pre><\/div>\n\n\n\n<p>This dictionary has four keys and four values. Let\u2019s use <a href=\"https:\/\/careerkarma.com\/blog\/python-print-without-new-line\/\">print() statements<\/a> to print each value from our dictionary to the console:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;Name: &quot; + starling(&quot;name&quot;))\nprint(&quot;Scientific Name: &quot; + starling(&quot;scientific_name&quot;))\nprint(&quot;UK Conservation Status: &quot; + starling(&quot;conservation_status_uk&quot;))\nprint(&quot;What They Eat: &quot; + starling(&quot;food&quot;)) <\/pre><\/div>\n\n\n\n<p>This code should print out the values of \u201cname\u201d, \u201cscientific_name\u201d, \u201cconservation_status_uk\u201d, and \u201cfood\u201d to the console. Run our code and see what happens:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Traceback (most recent call last):\n  File &quot;main.py&quot;, line 8, in &lt;module&gt;\n\tprint(&quot;Name: &quot; + starling(&quot;name&quot;))\nTypeError: 'dict' object is not callable<\/pre><\/div>\n\n\n\n<p>Our code returns an error.<br><\/p>\n\n\n\n<p>This is because we are incorrectly accessing items from our dictionary. Dictionary items must be accessed using indexing syntax. In our code above, we\u2019ve tried to use curly brackets to access items in our dictionary.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>To solve this error, we need to make sure we use square brackets to access items in our dictionary. Every time we access an item from the \u2018starling\u201d dictionary, we should use this syntax:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>starling[&quot;key&quot;]<\/pre><\/div>\n\n\n\n<p>Use this syntax in our main program:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;Name: &quot; + starling[&quot;name&quot;])\nprint(&quot;Scientific Name: &quot; + starling[&quot;scientific_name&quot;])\nprint(&quot;UK Conservation Status: &quot; + starling[&quot;conservation_status_uk&quot;])\nprint(&quot;What They Eat: &quot; + starling[&quot;food&quot;])<\/pre><\/div>\n\n\n\n<p>Our code now functions successfully:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Name: Starling\nScientific Name: Sturnus Vulgaris\nUK Conservation Status: Red\nWhat They Eat: Invertebrates and fruit<\/pre><\/div>\n\n\n\n<p>Instead of using curly brackets to access items in our dictionary, we have used square brackets. Square brackets indicate to Python that we want to access items from an iterable object. Curly brackets, on the other hand, indicate a function call.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201cTypeError: \u2018dict\u2019 object is not callable\u201d error is raised when you try to use curly brackets to access items from inside a dictionary. To solve this error, make sure you use the proper square bracket syntax when you try to access a dictionary item.<br><\/p>\n\n\n\n<p>Now you have all the knowledge you need to fix this error in your <a href=\"https:\/\/careerkarma.com\/blog\/python-vs-java\/\">Python code<\/a>!<\/p>\n","protected":false},"excerpt":{"rendered":"Items in a Python dictionary must be called using the indexing syntax. This means you must follow a dictionary with square brackets and the key of the item you want to access. If you try to use curly brackets, Python will return a \u201cTypeError: \u2018dict\u2019 object is not callable\u201d error. In this guide, we talk&hellip;","protected":false},"author":240,"featured_media":21188,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-21187","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-python"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Python","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Python TypeError: \u2018dict\u2019 object is not callable Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about the Python TypeError: \u2018dict\u2019 object is not callable, how the error works, and how to solve the error.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python TypeError: \u2018dict\u2019 object is not callable Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about the Python TypeError: \u2018dict\u2019 object is not callable, how the error works, and how to solve the error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-14T08:31:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:57:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"589\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\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:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python TypeError: \u2018dict\u2019 object is not callable Solution\",\"datePublished\":\"2020-08-14T08:31:23+00:00\",\"dateModified\":\"2023-12-01T11:57:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/\"},\"wordCount\":475,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/\",\"name\":\"Python TypeError: \u2018dict\u2019 object is not callable Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg\",\"datePublished\":\"2020-08-14T08:31:23+00:00\",\"dateModified\":\"2023-12-01T11:57:50+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about the Python TypeError: \u2018dict\u2019 object is not callable, how the error works, and how to solve the error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg\",\"width\":1020,\"height\":589,\"caption\":\"Laptop displaying rough draft of website on wooden desk next mug of coffee and smartphone.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/careerkarma.com\/blog\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Python TypeError: \u2018dict\u2019 object is not callable Solution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Python TypeError: \u2018dict\u2019 object is not callable Solution | Career Karma","description":"On Career Karma, learn about the Python TypeError: \u2018dict\u2019 object is not callable, how the error works, and how to solve the error.","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:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/","og_locale":"en_US","og_type":"article","og_title":"Python TypeError: \u2018dict\u2019 object is not callable Solution","og_description":"On Career Karma, learn about the Python TypeError: \u2018dict\u2019 object is not callable, how the error works, and how to solve the error.","og_url":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-08-14T08:31:23+00:00","article_modified_time":"2023-12-01T11:57:50+00:00","og_image":[{"width":1020,"height":589,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python TypeError: \u2018dict\u2019 object is not callable Solution","datePublished":"2020-08-14T08:31:23+00:00","dateModified":"2023-12-01T11:57:50+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/"},"wordCount":475,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/","url":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/","name":"Python TypeError: \u2018dict\u2019 object is not callable Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg","datePublished":"2020-08-14T08:31:23+00:00","dateModified":"2023-12-01T11:57:50+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about the Python TypeError: \u2018dict\u2019 object is not callable, how the error works, and how to solve the error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/igor-miske-Px3iBXV-4TU-unsplash.jpg","width":1020,"height":589,"caption":"Laptop displaying rough draft of website on wooden desk next mug of coffee and smartphone."},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-dict-object-is-not-callable\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/careerkarma.com\/blog\/python\/"},{"@type":"ListItem","position":3,"name":"Python TypeError: \u2018dict\u2019 object is not callable Solution"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21187","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=21187"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21187\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/21188"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=21187"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=21187"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=21187"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}