{"id":18502,"date":"2020-06-25T11:35:18","date_gmt":"2020-06-25T18:35:18","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=18502"},"modified":"2023-12-01T03:27:24","modified_gmt":"2023-12-01T11:27:24","slug":"what-is-curl","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/what-is-curl\/","title":{"rendered":"What is cURL?"},"content":{"rendered":"\n<p>Application Programming Interfaces (APIs) are an essential part of the web. These tools allow you to interact with other platforms.<br><\/p>\n\n\n\n<p>For example, you can use the Twitter API to post Tweets or display a list of Tweets on your timeline. You can use the Airtable API to access your spreadsheets on Airtable and add new records. But, how do you actually interact with APIs?<br><\/p>\n\n\n\n<p>One of the most common ways to interact with an API is through cURL, a command line tool that allows you to make web requests. It\u2019s likely most APIs you\u2019ve seen in your history as a developer will have included at least some documentation on how to use cURL with their API.<br><\/p>\n\n\n\n<p>In this guide, we\u2019re going to discuss what cURL is and how you can use it to make a web request. We\u2019ll also walk through a few basic curl commands to help you get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is cURL?<\/h2>\n\n\n\n<p>cURL stands for \u201cclient URL\u201d and is a command line tool that allows you to interact with websites. You can use it to make any type of web request. This means you can use cURL to get information from APIs, download webpages or submit data to an API.<br><\/p>\n\n\n\n<p>cURL comes installed on most UNIX-based operating systems, so unless you are running an Apple II, then you probably already have the package installed. When you use cURL as a command, you don\u2019t need to capitalize the term: just use the command <code>curl<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Make a Request Using cURL<\/h2>\n\n\n\n<p>In this tutorial, we\u2019re going to discuss how to use cURL to retrieve information from the Airtable API. This API allows you to view, create and amend records in an Airtable database, which is similar to a spreadsheet. Our Airtable document contains a list of teas with some tasting notes.<br><\/p>\n\n\n\n<p>The Airtable API provides two options you can use to interact with their API: cURL or JavaScript. Of course, we\u2019re going to focus on the cURL option in this tutorial.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Make a GET Request Using cURL<\/h3>\n\n\n\n<p>To make a cURL web request, we only need to specify \u201ccurl\u201d, followed by the URL that we want to retrieve. If we want to make a GET web request to the Airtable API, we could use this command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>curl \"https:\/\/api.airtable.com\/v0\/appiTz7oLBs9hDIFg\/Tracker?maxRecords=3&amp;view=Grid%20view\"<\/pre><\/div>\n\n\n\n<p>When this command is executed, the following is returned:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>{\"error\":{\"type\":\"AUTHENTICATION_REQUIRED\",\"message\":\"Authentication required\"}}<\/pre><\/div>\n\n\n\n<p>Our cURL command has successfully made a web request! The problem is that we haven\u2019t yet specified an API key, which we must use to authenticate ourselves. To do so, we are going to follow the instructions on the Airtable API and specify an \u201cauthorization\u201d header:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>curl \"https:\/\/api.airtable.com\/v0\/appiTz7oLBs9hDIFg\/Tracker?maxRecords=3&amp;view=Grid%20view\" -H \"Authorization: Bearer YOUR_API_KEY\"<\/pre><\/div>\n\n\n\n<p>When we run this command with an API key, the following is returned:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>{\n   \"records\":[\n      {\n         \"id\":\"recyPfUXJUP1HH03a\",\n         \"fields\":{\n            \"Drink\":\"Black Decaf Tea\",\n            \"Date\":\"2020-05-24T10:03:38.000Z\"\n         \n},\n         \"createdTime\":\"2020-05-24T10:03:38.000Z\"\n      ]\n}<\/pre><\/div>\n\n\n\n<p>As you can see, cURL has returned a list of the records in our database. Right now, we only have tasting notes for one tea, but that\u2019s all we need to show that our cURL command has worked.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Make a POST Request Using cURL<\/h3>\n\n\n\n<p>cURL also supports making HTTP POST requests. This allows you to submit data to a web server which will be processed by that server. In the case of the Airtable API, a POST request allows you to add a record to a database. Airtable gives us the following command as an example:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>curl -v -X POST https:\/\/api.airtable.com\/v0\/appiTz7oLBs9hDIFg\/Tracker \\\n  -H \"Authorization: Bearer YOUR_API_KEY\" \\\n  -H \"Content-Type: application\/json\" \\\n  --data '{\n  \"records\": [\n    {\n      \"fields\": {\n        \"Drink\": \"Darjeeling\"\n      }\n    },\n  ]\n}'<\/pre><\/div>\n\n\n\n<p>There\u2019s a lot going on in this command, so let\u2019s break it down:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>-v tells cURL to show us all the details of the output.<\/li>\n\n\n\n<li>-X POST tells cURL to make a POST request.<\/li>\n\n\n\n<li><a href=\"https:\/\/api.airtable.com\/v0\/appiTz7oLBs9hDIFg\/Tracker\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">https:\/\/api.airtable.com\/v0\/appiTz7oLBs9hDIFg\/Tracker<\/a> is the URL to which we are sending our post request.<\/li>\n\n\n\n<li>-H allows us to specify headers for our web request, which store additional data such as our API key and the type of content we are sending.<\/li>\n\n\n\n<li>&#8211;data is where we specify the data we want to send to the web server.<\/li>\n<\/ul>\n\n\n\n<p>Executing this command returns the following:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>{\n    \"records\": [\n        {\n            \"id\": \"recyPfUXJUP1HH03a\",\n            \"fields\": {\n                \"Drink\": \"Darjeeling\",\n                \"Date\": \"2020-05-24T10:03:38.000Z\"\n            },\n            \"createdTime\": \"2020-05-24T10:03:38.000Z\"\n        },\n}<\/pre><\/div>\n\n\n\n<p>Our command worked! We successfully used cURL to make a POST request to the Airtable API.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping Up<\/h2>\n\n\n\n<p>cURL may not be the most intuitive tool in the world, but it does make an excellent candidate for interacting with APIs.<br><\/p>\n\n\n\n<p>There are a number of tools out there you can use instead of cURL, such as Postman or Insomnia. These tools provide a graphic user interface that makes it easy to customize your web requests. In addition, if you\u2019re building a web app, you\u2019ll probably want to make a web request using code in a language like Python.<br><\/p>\n\n\n\n<p>However, the main advantage of using cURL is that it helps you figure out how to structure your web requests before you add them to your application. You can try out different methods and make sure a request is valid before actually coding it into your application.<br><\/p>\n\n\n\n<p>If you want to learn more about how the curl command works, check out the man page on curl by running <code>man curl<\/code> in your Linux command line.<\/p>\n","protected":false},"excerpt":{"rendered":"Application Programming Interfaces (APIs) are an essential part of the web. These tools allow you to interact with other platforms. For example, you can use the Twitter API to post Tweets or display a list of Tweets on your timeline. You can use the Airtable API to access your spreadsheets on Airtable and add new&hellip;","protected":false},"author":240,"featured_media":18503,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[18070],"tags":[],"class_list":{"0":"post-18502","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-software-engineering-skills"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"What is a {technical term}","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":"","is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>What is cURL?: A Complete Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"cURL is a command line tool you can use to make HTTP web requests. On Career Karma, learn how to use cURL to make GET and POST requests.\" \/>\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\/what-is-curl\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is cURL?\" \/>\n<meta property=\"og:description\" content=\"cURL is a command line tool you can use to make HTTP web requests. On Career Karma, learn how to use cURL to make GET and POST requests.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/what-is-curl\/\" \/>\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-06-25T18:35:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:27:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kari-shea-1SAnrIxw5OY-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\\\/what-is-curl\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"What is cURL?\",\"datePublished\":\"2020-06-25T18:35:18+00:00\",\"dateModified\":\"2023-12-01T11:27:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/\"},\"wordCount\":830,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/kari-shea-1SAnrIxw5OY-unsplash.jpg\",\"articleSection\":[\"Software Engineering\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/\",\"name\":\"What is cURL?: A Complete Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/kari-shea-1SAnrIxw5OY-unsplash.jpg\",\"datePublished\":\"2020-06-25T18:35:18+00:00\",\"dateModified\":\"2023-12-01T11:27:24+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"cURL is a command line tool you can use to make HTTP web requests. On Career Karma, learn how to use cURL to make GET and POST requests.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/kari-shea-1SAnrIxw5OY-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/kari-shea-1SAnrIxw5OY-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-curl\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Software Engineering\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/software-engineering-skills\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What is cURL?\"}]},{\"@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\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"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":"What is cURL?: A Complete Guide | Career Karma","description":"cURL is a command line tool you can use to make HTTP web requests. On Career Karma, learn how to use cURL to make GET and POST requests.","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\/what-is-curl\/","og_locale":"en_US","og_type":"article","og_title":"What is cURL?","og_description":"cURL is a command line tool you can use to make HTTP web requests. On Career Karma, learn how to use cURL to make GET and POST requests.","og_url":"https:\/\/careerkarma.com\/blog\/what-is-curl\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-06-25T18:35:18+00:00","article_modified_time":"2023-12-01T11:27:24+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kari-shea-1SAnrIxw5OY-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\/what-is-curl\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-curl\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"What is cURL?","datePublished":"2020-06-25T18:35:18+00:00","dateModified":"2023-12-01T11:27:24+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-curl\/"},"wordCount":830,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-curl\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kari-shea-1SAnrIxw5OY-unsplash.jpg","articleSection":["Software Engineering"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/what-is-curl\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/what-is-curl\/","url":"https:\/\/careerkarma.com\/blog\/what-is-curl\/","name":"What is cURL?: A Complete Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-curl\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-curl\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kari-shea-1SAnrIxw5OY-unsplash.jpg","datePublished":"2020-06-25T18:35:18+00:00","dateModified":"2023-12-01T11:27:24+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"cURL is a command line tool you can use to make HTTP web requests. On Career Karma, learn how to use cURL to make GET and POST requests.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-curl\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/what-is-curl\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/what-is-curl\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kari-shea-1SAnrIxw5OY-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/kari-shea-1SAnrIxw5OY-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/what-is-curl\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Software Engineering","item":"https:\/\/careerkarma.com\/blog\/software-engineering-skills\/"},{"@type":"ListItem","position":3,"name":"What is cURL?"}]},{"@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\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","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\/18502","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=18502"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/18502\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18503"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=18502"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=18502"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=18502"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}