{"id":22354,"date":"2020-09-08T13:27:26","date_gmt":"2020-09-08T20:27:26","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=22354"},"modified":"2023-12-01T03:59:32","modified_gmt":"2023-12-01T11:59:32","slug":"python-typeerror-built-in-function-or-method-is-not-iterable","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/","title":{"rendered":"Python TypeError: builtin_function_or_method is not iterable Solution"},"content":{"rendered":"\n<p>When you call a built-in function, you must specify curly brackets after the name of the function. If you try to iterate over a built-in method or function without curly brackets, you\u2019ll encounter the \u201cTypeError: builtin_function_or_method is not iterable\u201d error.<br><\/p>\n\n\n\n<p>This guide discusses what this error means and why it is raised. We\u2019ll walk through an example of this error so you can figure out how to solve it in your program.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">TypeError: builtin_function_or_method is not iterable<\/h2>\n\n\n\n<p>Built-in functions add functionality to the <a href=\"https:\/\/careerkarma.com\/blog\/what-python-is-used-for\/\">Python language<\/a>. Consider this code snippet:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>languages = [&quot;Python&quot;, &quot;Java&quot;]\nprint(&quot;, &quot;.join(languages))<\/pre><\/div>\n\n\n\n<p>The <code>join()<\/code> method turns a list into a string and adds a separator between each value in a string. Our code returns: \u201cPython, Java\u201d.<br><\/p>\n\n\n\n<p>To use a built-in function in your code, you must call the function. In the above example, we call the <code>join()<\/code> method like this:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>join()<\/pre><\/div>\n\n\n\n<p>If you forget the curly brackets, Python will return an error. This is because a <a href=\"https:\/\/careerkarma.com\/blog\/python-functions\/\">function<\/a> is only executed if it is followed by a set of parentheses.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>Build a program that displays information about a phone that is sold at a phone store.<br><\/p>\n\n\n\n<p>To start, declare a dictionary which contains information about the phone:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>phone = {\n\t  &quot;name&quot;: &quot;iPhone 11&quot;,\n&quot;price&quot;: 699.00,\n\t    &quot;year_released&quot;: 2019\n}<\/pre><\/div>\n\n\n\n<p>We want to display this information to the console. To do so, use a method called <code>items()<\/code>. This method returns a list of keys and values over which we can iterate.<br><\/p>\n\n\n\n<p>Declare a for loop that uses the <a href=\"https:\/\/careerkarma.com\/blog\/iterate-through-dictionary-python\/\">items() method<\/a> to display the contents of our dictionary:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for key, value in phone.items:\n\t    print(&quot;{}: {}&quot;.format(key, value))<\/pre><\/div>\n\n\n\n<p>This <a href=\"https:\/\/careerkarma.com\/blog\/python-for-loop\/\">for loop<\/a> goes through every key-value pair in the \u201cphone\u201d dictionary. Our loop prints out each key and the value associated with that key to the console.<br><\/p>\n\n\n\n<p>Run our program and see what happens:<br><\/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 7, in &lt;module&gt;\n\t   for key, value in phone.items:\nTypeError: 'builtin_function_or_method' object is not iterable<\/pre><\/div>\n\n\n\n<p>Our code returns an error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>Take a look at the line of code that our error message has highlighted:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for key, value in phone.items:<\/pre><\/div>\n\n\n\n<p>This line of code should iterate over our dictionary, but it does not work because we have forgotten to specify the curly brackets after the <code>items()<\/code> method.<br><\/p>\n\n\n\n<p>Built-in functions and methods must be followed by a pair of brackets. This is because the pair of brackets tells Python you want to call a function. Without these brackets, Python thinks you want to iterate over the function itself, rather than its result.<br><\/p>\n\n\n\n<p>We cannot iterate over \u201citems\u201d because it is not an iterable. It is a function.<br><\/p>\n\n\n\n<p>To fix our code, we add a set of brackets after the <code>items()<\/code> function;<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>for key, value in phone.items():\n\t    print(&quot;{}: {}&quot;.format(key, value))<\/pre><\/div>\n\n\n\n<p>Our code now knows we want to call the <code>items()<\/code> function. Let\u2019s run the program and see what happens:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>name: iPhone 11\nprice: 699.0\nyear_released: 2019<\/pre><\/div>\n\n\n\n<p>Our code successfully displays all the information from our dictionary.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201cTypeError: builtin_function_or_method is not iterable\u201d error is raised when you try to iterate over a built in function or a method. This is common if you forget to call a method using curly brackets when you are iterating over an object.<br><\/p>\n\n\n\n<p>To solve this problem, make sure you follow all built-in functions with parenthesis if you intend to iterate over them. Now you\u2019re ready to fix this error in your <a href=\"https:\/\/careerkarma.com\/blog\/python-vs-java\/\">Python code<\/a> like a pro!<\/p>\n","protected":false},"excerpt":{"rendered":"When you call a built-in function, you must specify curly brackets after the name of the function. If you try to iterate over a built-in method or function without curly brackets, you\u2019ll encounter the \u201cTypeError: builtin_function_or_method is not iterable\u201d error. This guide discusses what this error means and why it is raised. We\u2019ll walk through&hellip;","protected":false},"author":240,"featured_media":22355,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-22354","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>TypeError: builtin_function_or_method is not iterable | Career Karma<\/title>\n<meta name=\"description\" content=\"The TypeError: builtin_function_or_method is not iterable is raised when you iterate over a built-in function. On Career Karma, learn how to solve this Python 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-typeerror-built-in-function-or-method-is-not-iterable\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python TypeError: builtin_function_or_method is not iterable Solution\" \/>\n<meta property=\"og:description\" content=\"The TypeError: builtin_function_or_method is not iterable is raised when you iterate over a built-in function. On Career Karma, learn how to solve this Python error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/\" \/>\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-09-08T20:27:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:59:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"765\" \/>\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-typeerror-built-in-function-or-method-is-not-iterable\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python TypeError: builtin_function_or_method is not iterable Solution\",\"datePublished\":\"2020-09-08T20:27:26+00:00\",\"dateModified\":\"2023-12-01T11:59:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/\"},\"wordCount\":521,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/\",\"name\":\"TypeError: builtin_function_or_method is not iterable | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-unsplash.jpg\",\"datePublished\":\"2020-09-08T20:27:26+00:00\",\"dateModified\":\"2023-12-01T11:59:32+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The TypeError: builtin_function_or_method is not iterable is raised when you iterate over a built-in function. On Career Karma, learn how to solve this Python error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-unsplash.jpg\",\"width\":1020,\"height\":765},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#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: builtin_function_or_method is not iterable 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":"TypeError: builtin_function_or_method is not iterable | Career Karma","description":"The TypeError: builtin_function_or_method is not iterable is raised when you iterate over a built-in function. On Career Karma, learn how to solve this Python 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-typeerror-built-in-function-or-method-is-not-iterable\/","og_locale":"en_US","og_type":"article","og_title":"Python TypeError: builtin_function_or_method is not iterable Solution","og_description":"The TypeError: builtin_function_or_method is not iterable is raised when you iterate over a built-in function. On Career Karma, learn how to solve this Python error.","og_url":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-08T20:27:26+00:00","article_modified_time":"2023-12-01T11:59:32+00:00","og_image":[{"width":1020,"height":765,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-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-typeerror-built-in-function-or-method-is-not-iterable\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python TypeError: builtin_function_or_method is not iterable Solution","datePublished":"2020-09-08T20:27:26+00:00","dateModified":"2023-12-01T11:59:32+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/"},"wordCount":521,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/","url":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/","name":"TypeError: builtin_function_or_method is not iterable | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-unsplash.jpg","datePublished":"2020-09-08T20:27:26+00:00","dateModified":"2023-12-01T11:59:32+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The TypeError: builtin_function_or_method is not iterable is raised when you iterate over a built-in function. On Career Karma, learn how to solve this Python error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/mimi-thian-ZKBzlifgkgw-unsplash.jpg","width":1020,"height":765},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-built-in-function-or-method-is-not-iterable\/#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: builtin_function_or_method is not iterable 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\/22354","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=22354"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22354\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/22355"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=22354"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=22354"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=22354"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}