{"id":20632,"date":"2020-08-01T01:03:38","date_gmt":"2020-08-01T08:03:38","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=20632"},"modified":"2023-12-01T03:57:15","modified_gmt":"2023-12-01T11:57:15","slug":"python-typeerror-int-object-is-not-subscriptable","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/","title":{"rendered":"Python typeerror: \u2018int\u2019 object is not subscriptable Solution"},"content":{"rendered":"\n<p>Some objects in <a href=\"https:\/\/careerkarma.com\/blog\/what-python-is-used-for\/\">Python<\/a> are subscriptable. This means that they contain, or can contain, other objects. Integers are not a subscriptable object. They are used to store whole numbers. If you treat an integer like a subscriptable object, an error will be raised.<br><\/p>\n\n\n\n<p>In this guide, we\u2019re going to talk about the \u201ctypeerror: \u2018int\u2019 object is not subscriptable\u201d error and why it is raised. We\u2019ll walk through a code snippet with this problem to show how you can solve it in your code. Let\u2019s begin!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Problem: typeerror: \u2018int\u2019 object is not subscriptable<\/h2>\n\n\n\n<p>We\u2019ll start by taking a look at our error message:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>typeerror: 'int' object is not subscriptable<\/pre><\/div>\n\n\n\n<p>The first part of our error message, TypeError, states the type of our error. A TypeError is an error that is raised when you try to perform an operation on a value that does not support that operation. Concatenating a string and an integer, for instance, raises a TypeError.<br><\/p>\n\n\n\n<p>The second part of our message informs us of the cause.<br><\/p>\n\n\n\n<p>This message is telling us that we are treating an <a href=\"https:\/\/careerkarma.com\/blog\/python-string-to-int\/\">integer<\/a>, which is a whole number, like a subscriptable object. Integers are not subscriptable objects. Only objects that contain other objects, like <a href=\"https:\/\/careerkarma.com\/blog\/python-string-methods\/\">strings<\/a>, <a href=\"https:\/\/careerkarma.com\/blog\/python-array\/\">lists<\/a>, <a href=\"https:\/\/careerkarma.com\/blog\/python-tuples\/\">tuples<\/a>, and <a href=\"https:\/\/careerkarma.com\/blog\/python-dictionary-values\/\">dictionaries<\/a>, are subscriptable.<br><\/p>\n\n\n\n<p>Let\u2019s say you try to use indexing to access an item from a list:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>email_providers = [&quot;Gmail&quot;, &quot;Outlook&quot;, &quot;ProtonMail&quot;]\n\nprint(email_providers[2])<\/pre><\/div>\n\n\n\n<p>This code returns: ProtonMail. Lists are subscriptable which means you can use indexing to retrieve a value from a list.<br><\/p>\n\n\n\n<p>You cannot use this same syntax on a non-subscriptable value, like a float or an integer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>We\u2019re going to write a program that asks a user for the date on which their next holiday starts and prints out each value on a separate line. This program will have an error that we can solve.<br><\/p>\n\n\n\n<p>Let\u2019s start by writing our main program:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>holiday = int(input(&quot;When does your holiday begin? (mmddyyyy) &quot;))\n\nmonth = holiday[0:2]\nday = holiday[2:4]\nyear = holiday[4:8]\n\nprint(&quot;Month:&quot;, month)\nprint(&quot;Day:&quot;, day)\nprint(&quot;Year:&quot;, year)<\/pre><\/div>\n\n\n\n<p>This program asks a user to insert the day on which their holiday begins using an <a href=\"https:\/\/careerkarma.com\/blog\/python-input\/\">input() statement<\/a>. Then, we use slicing to retrieve the values of the month, day, and year that the user has specified. These values are stored in variables.<br><\/p>\n\n\n\n<p>Next, we print out the values of these variables to the console. Each value is given a label which states the part of the date to which the value corresponds.<br><\/p>\n\n\n\n<p>Let\u2019s run our code:<\/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 3, in &lt;module&gt;\n\tmonth = holiday[0:1]\nTypeError: 'int' object is not subscriptable<\/pre><\/div>\n\n\n\n<p>Let\u2019s fix this error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>We have converted the value of \u201choliday\u201d into an integer. This means that we cannot access it using slicing or indexing. Integers are not indexed like strings.<br><\/p>\n\n\n\n<p>To solve this problem, we can remove the <code>int()<\/code> statement from our code. The <code>input()<\/code> statement returns a string value. We can slice this string value up using our code.<br><\/p>\n\n\n\n<p>Let\u2019s revise our <code>input()<\/code> statement:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>holiday = input(&quot;When does your holiday begin? (mmddyyyy) &quot;)<\/pre><\/div>\n\n\n\n<p>Now, let\u2019s try to run our code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>When does your holiday begin? (mmddyyyy) 02042021\nMonth: 02\nDay: 04\nYear: 2021<\/pre><\/div>\n\n\n\n<p>Our code runs successfully! We are no longer trying to slice an integer because our code does not contain an <code>int()<\/code> statement. Instead, \u201choliday\u201d is stored as a string. This string is sliced using the slicing syntax.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201ctypeerror: \u2018int\u2019 object is not subscriptable\u201d error is raised when you try to access an integer as if it were a subscriptable object, like a list or a dictionary.<br><\/p>\n\n\n\n<p>To solve this problem, make sure that you do not use slicing or indexing to access values in an integer. If you need to perform an operation only available to subscriptable objects, like slicing or indexing, you should convert your integer to a string or a list first.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to solve this <a href=\"https:\/\/careerkarma.com\/blog\/python-2-vs-python-3\/\">Python<\/a> TypeError like an expert!<\/p>\n","protected":false},"excerpt":{"rendered":"Some objects in Python are subscriptable. This means that they contain, or can contain, other objects. Integers are not a subscriptable object. They are used to store whole numbers. If you treat an integer like a subscriptable object, an error will be raised. In this guide, we\u2019re going to talk about the \u201ctypeerror: \u2018int\u2019 object&hellip;","protected":false},"author":240,"featured_media":5191,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[16578],"tags":[],"class_list":{"0":"post-20632","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: \u2018int\u2019 object is not subscriptable Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about the Python typeerror: \u2018int\u2019 object is not subscriptable error, why it is raised, and how to solve it.\" \/>\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-int-object-is-not-subscriptable\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python typeerror: \u2018int\u2019 object is not subscriptable Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about the Python typeerror: \u2018int\u2019 object is not subscriptable error, why it is raised, and how to solve it.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/\" \/>\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-01T08:03:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:57:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\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-int-object-is-not-subscriptable\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Python typeerror: \u2018int\u2019 object is not subscriptable Solution\",\"datePublished\":\"2020-08-01T08:03:38+00:00\",\"dateModified\":\"2023-12-01T11:57:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/\"},\"wordCount\":595,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-unsplash.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/\",\"name\":\"Python typeerror: \u2018int\u2019 object is not subscriptable Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-unsplash.jpg\",\"datePublished\":\"2020-08-01T08:03:38+00:00\",\"dateModified\":\"2023-12-01T11:57:15+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about the Python typeerror: \u2018int\u2019 object is not subscriptable error, why it is raised, and how to solve it.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-unsplash.jpg\",\"width\":1200,\"height\":800},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#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: \u2018int\u2019 object is not subscriptable 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: \u2018int\u2019 object is not subscriptable Solution | Career Karma","description":"On Career Karma, learn about the Python typeerror: \u2018int\u2019 object is not subscriptable error, why it is raised, and how to solve it.","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-int-object-is-not-subscriptable\/","og_locale":"en_US","og_type":"article","og_title":"Python typeerror: \u2018int\u2019 object is not subscriptable Solution","og_description":"On Career Karma, learn about the Python typeerror: \u2018int\u2019 object is not subscriptable error, why it is raised, and how to solve it.","og_url":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-08-01T08:03:38+00:00","article_modified_time":"2023-12-01T11:57:15+00:00","og_image":[{"width":1200,"height":800,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-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-int-object-is-not-subscriptable\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Python typeerror: \u2018int\u2019 object is not subscriptable Solution","datePublished":"2020-08-01T08:03:38+00:00","dateModified":"2023-12-01T11:57:15+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/"},"wordCount":595,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-unsplash.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/","url":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/","name":"Python typeerror: \u2018int\u2019 object is not subscriptable Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-unsplash.jpg","datePublished":"2020-08-01T08:03:38+00:00","dateModified":"2023-12-01T11:57:15+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about the Python typeerror: \u2018int\u2019 object is not subscriptable error, why it is raised, and how to solve it.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/08\/azharul-islam-9LMGWHqUwnc-unsplash.jpg","width":1200,"height":800},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/python-typeerror-int-object-is-not-subscriptable\/#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: \u2018int\u2019 object is not subscriptable 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\/20632","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=20632"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/20632\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/5191"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=20632"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=20632"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=20632"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}