{"id":20562,"date":"2020-07-30T19:42:41","date_gmt":"2020-07-31T02:42:41","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=20562"},"modified":"2023-12-01T03:57:09","modified_gmt":"2023-12-01T11:57:09","slug":"python-typeerror-can-only-concatenate-str-not-int-to-str","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/","title":{"rendered":"Python typeerror: can only concatenate str (not &#8220;int&#8221;) to str Solution"},"content":{"rendered":"\n<p>You\u2019ve just started writing a Python program and then it hits you: a TypeError. This one\u2019s new to you: &#8220;typeerror: can only concatenate str (not &#8220;int&#8221;) to str&#8221;. What does it mean? Why is it being raised in your code? These are all good questions.<br><\/p>\n\n\n\n<p>In this guide, we\u2019re going to talk about what this Python error means and how you can solve it. We\u2019ll walk through an example program with this error so that you can see how it works. Without further ado, let\u2019s get started!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Problem: typeerror: can only concatenate str (not &#8220;int&#8221;) to str<\/h2>\n\n\n\n<p>In Python, values can only be <a href=\"https:\/\/careerkarma.com\/blog\/python-concatenate-strings\/\">concatenated<\/a> if they are the same type. You cannot concatenate a string and an integer, or a string and a list. If you do, a TypeError is raised:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>typeerror: can only concatenate str (not &quot;int&quot;) to str<\/pre><\/div>\n\n\n\n<p>There are a few programming languages, like JavaScript, which allow you to concatenate strings and integers together. In Python, you cannot do this. If you want to concatenate a string and an integer, you\u2019ve got to convert the integer to a string first before you concatenate it to a string.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Situation<\/h2>\n\n\n\n<p>This error is raised when you try to concatenate a <a href=\"https:\/\/careerkarma.com\/blog\/python-string-methods\/\">string<\/a> and an integer.<br><\/p>\n\n\n\n<p>Let\u2019s take a look at a program which suffers from this problem:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>gatsby = {\n\t&quot;title&quot;: &quot;The Great Gatsby&quot;,\n\t&quot;author&quot;: &quot;F. Scott Fitzgerald&quot;,\n\t&quot;price&quot;: 4.99,\n\t&quot;quantity_in_stock&quot;: 4\n}\n\nprint(&quot;There are &quot; + gatsby[&quot;quantity_in_stock&quot;] + &quot; copies of The Great Gatsby in stock.&quot;)<\/pre><\/div>\n\n\n\n<p>This program prints out how many copies of the book <em>The Great Gatsby<\/em> are in stock at a bookstore. First, we declare a <a href=\"https:\/\/careerkarma.com\/blog\/python-add-to-dictionary\/\">dictionary<\/a> called &#8220;gatsby&#8221;. This dictionary contains four pieces of information about the book: its title, the author, its price, and how many copies are in stock.<br><\/p>\n\n\n\n<p>Next, we print out a message informing the user how many copies are in stock at the bookstore.<br><\/p>\n\n\n\n<p>Let\u2019s try to run our code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Traceback (most recent call last):\nFile &quot;main.py&quot;, line 8, in &lt;module&gt;\n\tprint(&quot;There are &quot; + gatsby[&quot;quantity_in_stock&quot;] + &quot; copies of The Great Gatsby in stock.&quot;)\nTypeError: can only concatenate str (not &quot;int&quot;) to str<\/pre><\/div>\n\n\n\n<p>As we expected, a TypeError has been raised.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>The value of gatsby[&#8220;quantity_in_stock&#8221;] is an integer. A TypeError has been raised because we have tried to concatenate that value, an integer, to a string.<br><\/p>\n\n\n\n<p>We can solve this problem by converting the value of gatsby[&#8220;quantity_in_stock&#8221;] to a string before we concatenate it to our other strings. We can do this using the <a href=\"https:\/\/careerkarma.com\/blog\/python-string-to-int\/\">str() method<\/a>, which converts an integer to a string:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>print(&quot;There are &quot; + str(gatsby[&quot;quantity_in_stock&quot;]) + &quot; copies of The Great Gatsby in stock.&quot;)<\/pre><\/div>\n\n\n\n<p>Let\u2019s try to run our code again:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>There are 4 copies of The Great Gatsby in stock.<\/pre><\/div>\n\n\n\n<p>Our code has found how many copies of <em>The Great Gatsby<\/em> are in stock. Then, it has printed out how many copies are in stock to the console. This value is printed in the following format:<br><\/p>\n\n\n\n<p>There are X copies of The Great Gatsby in stock.<br><\/p>\n\n\n\n<p>&#8220;X&#8221; refers to how many copies are in stock.<\/p>\n\n\n\n<iframe loading=\"lazy\" frameborder=\"0\" width=\"100%\" height=\"400px\" src=\"https:\/\/repl.it\/@careerkarma\/can-only-concatenate-str-not-int-to-str?lite=true\"><\/iframe>\n<br>\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The error &#8220;typeerror: can only concatenate str (not &#8220;int&#8221;) to str&#8221; is raised when you try to concatenate a string and an integer. To solve this error, make sure that all values in a line of code are strings before you try to concatenate them.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to solve this Python TypeError like a pro!<\/p>\n","protected":false},"excerpt":{"rendered":"You\u2019ve just started writing a Python program and then it hits you: a TypeError. This one\u2019s new to you: \"typeerror: can only concatenate str (not \"int\") to str\". What does it mean? Why is it being raised in your code? These are all good questions. In this guide, we\u2019re going to talk about what this&hellip;","protected":false},"author":240,"featured_media":20563,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-20562","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: can only concatenate str (not &quot;int&quot;) to str<\/title>\n<meta name=\"description\" content=\"The Python typeerror: can only concatenate str (not &quot;int&quot;) to str error is raised when you try to concatenate a string and an integer. On Career Karma, learn how to fix this 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-can-only-concatenate-str-not-int-to-str\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python typeerror: can only concatenate str (not &quot;int&quot;) to str Solution\" \/>\n<meta property=\"og:description\" content=\"The Python typeerror: can only concatenate str (not &quot;int&quot;) to str error is raised when you try to concatenate a string and an integer. On Career Karma, learn how to fix this error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/\" \/>\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-07-31T02:42:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:57:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\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-can-only-concatenate-str-not-int-to-str\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python typeerror: can only concatenate str (not &#8220;int&#8221;) to str Solution\",\"datePublished\":\"2020-07-31T02:42:41+00:00\",\"dateModified\":\"2023-12-01T11:57:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/\"},\"wordCount\":502,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/\",\"name\":\"Python typeerror: can only concatenate str (not \\\"int\\\") to str\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-unsplash.jpg\",\"datePublished\":\"2020-07-31T02:42:41+00:00\",\"dateModified\":\"2023-12-01T11:57:09+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Python typeerror: can only concatenate str (not \\\"int\\\") to str error is raised when you try to concatenate a string and an integer. On Career Karma, learn how to fix this error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#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: can only concatenate str (not &#8220;int&#8221;) to str 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: can only concatenate str (not \"int\") to str","description":"The Python typeerror: can only concatenate str (not \"int\") to str error is raised when you try to concatenate a string and an integer. On Career Karma, learn how to fix this 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-can-only-concatenate-str-not-int-to-str\/","og_locale":"en_US","og_type":"article","og_title":"Python typeerror: can only concatenate str (not \"int\") to str Solution","og_description":"The Python typeerror: can only concatenate str (not \"int\") to str error is raised when you try to concatenate a string and an integer. On Career Karma, learn how to fix this error.","og_url":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-31T02:42:41+00:00","article_modified_time":"2023-12-01T11:57:09+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-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-can-only-concatenate-str-not-int-to-str\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python typeerror: can only concatenate str (not &#8220;int&#8221;) to str Solution","datePublished":"2020-07-31T02:42:41+00:00","dateModified":"2023-12-01T11:57:09+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/"},"wordCount":502,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/","url":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/","name":"Python typeerror: can only concatenate str (not \"int\") to str","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-unsplash.jpg","datePublished":"2020-07-31T02:42:41+00:00","dateModified":"2023-12-01T11:57:09+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Python typeerror: can only concatenate str (not \"int\") to str error is raised when you try to concatenate a string and an integer. On Career Karma, learn how to fix this error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-Hv5vQ8AkbAs-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-can-only-concatenate-str-not-int-to-str\/#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: can only concatenate str (not &#8220;int&#8221;) to str 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\/20562","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=20562"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/20562\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/20563"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=20562"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=20562"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=20562"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}