{"id":23036,"date":"2020-09-21T11:29:22","date_gmt":"2020-09-21T18:29:22","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23036"},"modified":"2023-12-01T04:00:17","modified_gmt":"2023-12-01T12:00:17","slug":"git-fatal-could-not-read-from-remote-repository","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/","title":{"rendered":"Git fatal: Could not read from remote repository Solution"},"content":{"rendered":"\n<p>Before you can read from a private repository or write to a <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git repository<\/a>, you must be authenticated. If you use the wrong Uniform Resource Locator (URL) to connect to a repository, or have incorrectly set up your Secure Shell (SSH) authentication, you\u2019ll encounter the \u201cfatal: Could not read from remote repository\u201d error.<br><\/p>\n\n\n\n<p>This guide discusses what this error means and why you may see it. It walks you through two potential solutions so you can overcome this problem when using Git.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">fatal: Could not read from remote repository<\/h2>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/ssh-command\/\">SSH is a protocol for authenticating with remote devices<\/a>. SSH is commonly used to authenticate with Git because you don\u2019t need to type in your password every time you authenticate.<br><\/p>\n\n\n\n<p>Every platform has its own way of authenticating users over SSH. Using GitHub, for instance, you must provide your SSH key on their dashboard. Then, you can use the SSH URL associated with your repository to authenticate with GitHub.<br><\/p>\n\n\n\n<p>By default, the private SSH key for your device will be in a file called ~\/.ssh\/id_rsa. This file is in the hidden .ssh directory in your root folder. This key will only exist if you have generated it. Otherwise, you\u2019ll need to use the ssh-keygen command to generate a new key.<br><\/p>\n\n\n\n<p>If you have not correctly set up SSH authentication, Git will be unable to verify your identity.&nbsp;<br><\/p>\n\n\n\n<p>The two common causes to the \u201cfatal: Could not read from remote repository\u201d error are:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Not adding your SSH key to the SSH agent<\/li><li>Using a HTTP URL to connect to a repository<\/li><\/ul>\n\n\n\n<p>Let\u2019s discuss each of these causes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cause #1: SSH Agent Issue<\/h2>\n\n\n\n<p>The SSH agent stores your SSH key. When you try to authenticate with a Git repository over SSH, Git will check the SSH agent for your key.<br><\/p>\n\n\n\n<p>Your SSH key can be removed from the SSH agent for various reasons. This will make it impossible to authenticate with a Git repository.<br><\/p>\n\n\n\n<p>Let\u2019s try to <a href=\"https:\/\/careerkarma.com\/blog\/git-clone\/\">clone a Git repository<\/a> that is private to our local machine:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git clone git@github.com:career-karma-tutorials\/ck-git<\/pre><\/div>\n\n\n\n<p>When we try to sign in, the Git command line returns an error:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>fatal: Could not read from remote repository.<\/pre><\/div>\n\n\n\n<p>This error informs us we have an authentication issue. If you encounter an SSH authentication issue, your first port of call is to add your key to the SSH keychain:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ssh-add ~\/.ssh\/id_rsa<\/pre><\/div>\n\n\n\n<p>This will add our id_rsa key to the keychain.<br><\/p>\n\n\n\n<p>Another common mistake is to add the wrong key to your keychain. If you use a key with a different name than id_rsa to authenticate with Git, make sure you add that key to your keychain and not the id_rsa key.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cause #2: Using a HTTP URL<\/h2>\n\n\n\n<p>There are two ways you can authenticate with Git: over <a href=\"https:\/\/careerkarma.com\/blog\/what-is-http\/\">HTTP<\/a> and SSH. The Hypertext Transfer Protocol (HTTP) method requires specifying your username and password to a Git server to access a repository.&nbsp;<br><\/p>\n\n\n\n<p>To authenticate with HTTP, you\u2019ll use a URL that looks like this:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>https:\/\/github.com\/career-karma-tutorials\/ck-git<\/pre><\/div>\n\n\n\n<p>You cannot use this URL to connect to a Git server over SSH. This is because SSH and HTTP are different protocols. If you try to sign in to the above URL using SSH, you\u2019ll be prompted to enter your username and password.<br><\/p>\n\n\n\n<p>We\u2019ve got to use an SSH URL to connect to a repository over SSH. You can verify the URLs that you use to connect to a remote repository using the git remote -v command:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>origin    https:\/\/github.com\/career-karma-tutorials\/ck-git (fetch)\norigin    https:\/\/github.com\/career-karma-tutorials\/ck-git (push)<\/pre><\/div>\n\n\n\n<p>We can see that our \u201corigin\u201d remote uses HTTP instead of SSH. For an existing repository, we can change our URL to use SSH using the <a href=\"https:\/\/careerkarma.com\/blog\/git-change-remote\/\">git remote set-url command<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git remote set-url origin git@github.com:career-karma-tutorials\/ck-git<\/pre><\/div>\n\n\n\n<p>This command sets the \u201corigin\u201d URL to be equal to our SSH URL. Now that we\u2019ve run this command, our existing Git repository will use the SSH URL to connect to the remote version of the repository.<br><\/p>\n\n\n\n<p>If you are cloning a new repository, you don\u2019t need to change the URL with which you are working. Instead, you just need to make sure you use an SSH URL to clone the repo:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git clone git@github.com:career-karma-tutorials\/ck-git<\/pre><\/div>\n\n\n\n<p>Now, we can run commands like git pull, git commit, and git push on our repository because we have the correct access privileges.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Git \u201cfatal: Could not read from remote repository\u201d error occurs when there is an issue authenticating with a Git repository. This is common if you have incorrectly set up SSH authentication.<br><\/p>\n\n\n\n<p>To solve this error, make sure your SSH key is in your keychain and you connecting to a repository using the correct URL.<\/p>\n","protected":false},"excerpt":{"rendered":"Before you can read from a private repository or write to a Git repository, you must be authenticated. If you use the wrong Uniform Resource Locator (URL) to connect to a repository, or have incorrectly set up your Secure Shell (SSH) authentication, you\u2019ll encounter the \u201cfatal: Could not read from remote repository\u201d error. This guide&hellip;","protected":false},"author":240,"featured_media":21615,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-23036","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-git"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Git","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>Git fatal: Could not read from remote repository Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn the cause of and the solution to the Git fatal: Could not read from remote repository 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\/git-fatal-could-not-read-from-remote-repository\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git fatal: Could not read from remote repository Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn the cause of and the solution to the Git fatal: Could not read from remote repository error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/\" \/>\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-21T18:29:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:00:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git fatal: Could not read from remote repository Solution\",\"datePublished\":\"2020-09-21T18:29:22+00:00\",\"dateModified\":\"2023-12-01T12:00:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/\"},\"wordCount\":761,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/\",\"name\":\"Git fatal: Could not read from remote repository Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-unsplash.jpg\",\"datePublished\":\"2020-09-21T18:29:22+00:00\",\"dateModified\":\"2023-12-01T12:00:17+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn the cause of and the solution to the Git fatal: Could not read from remote repository error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"A black and silver laptop with code running on a table next to a plant and a yellow mug.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git\",\"item\":\"https:\/\/careerkarma.com\/blog\/git\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Git fatal: Could not read from remote repository 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":"Git fatal: Could not read from remote repository Solution | Career Karma","description":"On Career Karma, learn the cause of and the solution to the Git fatal: Could not read from remote repository 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\/git-fatal-could-not-read-from-remote-repository\/","og_locale":"en_US","og_type":"article","og_title":"Git fatal: Could not read from remote repository Solution","og_description":"On Career Karma, learn the cause of and the solution to the Git fatal: Could not read from remote repository error.","og_url":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-21T18:29:22+00:00","article_modified_time":"2023-12-01T12:00:17+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git fatal: Could not read from remote repository Solution","datePublished":"2020-09-21T18:29:22+00:00","dateModified":"2023-12-01T12:00:17+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/"},"wordCount":761,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/","url":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/","name":"Git fatal: Could not read from remote repository Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-unsplash.jpg","datePublished":"2020-09-21T18:29:22+00:00","dateModified":"2023-12-01T12:00:17+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn the cause of and the solution to the Git fatal: Could not read from remote repository error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/clement-h-95YRwf6CNw8-unsplash.jpg","width":1020,"height":680,"caption":"A black and silver laptop with code running on a table next to a plant and a yellow mug."},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-fatal-could-not-read-from-remote-repository\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Git","item":"https:\/\/careerkarma.com\/blog\/git\/"},{"@type":"ListItem","position":3,"name":"Git fatal: Could not read from remote repository 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\/23036","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=23036"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23036\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/21615"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23036"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23036"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23036"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}