{"id":10494,"date":"2022-05-09T07:00:31","date_gmt":"2022-05-09T14:00:31","guid":{"rendered":"https:\/\/www.codingdojo.com\/blog\/?p=10494"},"modified":"2022-12-13T09:28:39","modified_gmt":"2022-12-13T17:28:39","slug":"what-is-an-api","status":"publish","type":"post","link":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api","title":{"rendered":"What is an API?"},"content":{"rendered":"<p>As you embark on your coding journey, there are dozens of phrases you might not be familiar with. So, what is an an API<br \/>\n<span style=\"font-weight: 400;\">API stands for Application Programming Interface. It is a piece of code that lets two programs talk to each other. A way to pass information and data between two programs directly. <\/span><span style=\"font-weight: 400;\">Don\u2019t worry, they\u2019re not as complicated as they sound. An API is quite simple to use and a great way to get comfortable with some advance coding. Ultimately, you\u2019re really only sending a small piece of code to a server to get a response.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\">What\u2019s the point of an API?<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">There are many reasons to use an API, but ultimately it\u2019s to quickly send useful information between two programs. <\/span><br \/>\n<span style=\"font-weight: 400;\">For example, imagine you\u2019re developing a website. You want the website\u2019s background to change based on the current weather. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">How do you do it? <\/span><span style=\"font-weight: 400;\">You could set up a camera to look out the window, add some complicated machine learning to figure out whether it\u2019s raining or not, and then change the background based on the result.<\/span><br \/>\n<span style=\"font-weight: 400;\"> Alternatively, you could create a program that scrapes the local news and grabs the weather from the webpage.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Both of those options are rather inefficient. Instead, you can just go to <a href=\"https:\/\/openweathermap.org\/\">OpenWeather<\/a> and use their API to figure out the current weather in whatever location you please. Even better, you can do this all through one line of code by using an API. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is a rather basic example, but the principle is the same: <\/span><span style=\"font-weight: 400;\">APIs take a complicated task and turn it into just a few lines of code.<\/span><span style=\"font-weight: 400;\">\u00a0In the real world, you\u2019re likely sending data from your application to a third party, who will process it on their end, and then you retrieve the answer.\u00a0 <\/span><\/p>\n<h2><span style=\"font-weight: 400;\">How APIs they work and what is an API Key?<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">An API can only send and retrieve data or functions that have been programmed into them. The creator of the API, will show which commands you\u2019ll need to send to retrieve or send data to them. Often, you\u2019ll also need an authentication code, more commonly known as an API key.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is basically your login information and proves that the command you\u2019re sending is coming from you. <\/span><span style=\"font-weight: 400;\">To interact with an API, it\u2019s very similar to just typing in a web address. You\u2019re just adding a little code to the URL, so it looks like this: <\/span><i><span style=\"font-weight: 400;\">api.acme.com\/?get=bunny_season=a[authcode]<\/span><\/i><\/p>\n<p><span style=\"font-weight: 400;\">Once you send that, you\u2019ll get a response. The format for the data you get back will depend on the API, but is often something like XML or JSON. And exactly how you make this request inside your code will depend on the programming language you\u2019re using.<\/span><\/p>\n<h2>API Glossary<\/h2>\n<p>There are a few terms related to APIs you&#8217;ll likely come across while researching or working with them for the first time. Here&#8217;s what they mean:<\/p>\n<h3>What is an API Key?<\/h3>\n<p>An API key is more commonly known as an authentication code. It&#8217;s a unique string of of numbers that allows an API to identify a user or, more commonly, an application that is making a request. When applied to users, API keys are commonly used as an extra layer of security.<\/p>\n<h3>What is an API Call?<\/h3>\n<p>AN API call is simply the medium in which a request is sent or received. In order for programs to interact with each other, like in the weather example used above, your website homepage would be creating an API call to OpenWeather in order to receive the current temperature.<\/p>\n<h3>What is an API Gateway?<\/h3>\n<p>While an API call is the medium that manages requests, an API gateway is the aspect that organizes each requests so the end user is given the appropriate information. It effectively sits between a client and data, accepts all API calls, then returns them with the correct requested data.<\/p>\n<h3>What is an API Endpoint?<\/h3>\n<p>Perhaps the most self-explanatory term, an API endpoint is the point in which API connects with that actual software or user that is making the request or call.<\/p>\n<h3>What is an API Token?<\/h3>\n<p>Similar to an API key, an API tokens allows APIs to authenticate users. API tokens are less common than keys and are exclusive to users. They are smaller and faster to create than keys, thus making them more useful when authenticating a person as opposed to a program.<\/p>\n<h2><span style=\"font-weight: 400;\">What can an API do?<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">There are typically only four actions you can take:<\/span><\/p>\n<ul>\n<li><b>Get:<\/b><span style=\"font-weight: 400;\">. Ask for data from the server.<\/span><\/li>\n<li><b>Post:<\/b><span style=\"font-weight: 400;\">\u00a0Send data to the server and add it.<\/span><\/li>\n<li><b>Put:<\/b><span style=\"font-weight: 400;\">\u00a0Change data.<\/span><\/li>\n<li><b>Delete:<\/b><span style=\"font-weight: 400;\"> Delete data.<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">As you can see, while APIs might initially sound complicated, they&#8217;re really quite simple and make convoluted process easy. <\/span><span style=\"font-weight: 400;\">Using a combination of these actions, you can do pretty much anything you like with an API. It all depends on what the developer has set the API up to do.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\">How might you use an API?<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">Now that you know what an API is and what they do, You might use an API in three different ways:<\/span><\/p>\n<h3><span style=\"font-weight: 400;\">An internal system<\/span><\/h3>\n<p><span style=\"font-weight: 400;\">Let\u2019s imagine you\u2019re a global cinema company. You have a website with a booking system and a lot of cinemas, each with their own screens and seats. How do you know how many seats are available?<\/span><\/p>\n<p><span style=\"font-weight: 400;\">You might have a giant database that syncs everything, but that\u2019s quite impractical. Instead, you could have an API with each cinema. Your website then pings the cinema, checks how many seats are available (and which ones they are) for the movie and then it sends back the response. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Your website can do all the heavy lifting of showing it to the user in a nice neat way. And because it\u2019s a simple request, it doesn\u2019t clog up the bandwidth for the cinema itself. <\/span><span style=\"font-weight: 400;\">That way, the user gets the same experience for every cinema. But also, you can easily just update the website if you have a design change.<\/span><\/p>\n<h3><span style=\"font-weight: 400;\">Link with a partner<\/span><\/h3>\n<p><span style=\"font-weight: 400;\">This time, let\u2019s imagine we\u2019re a data analytics company. You might have a tool that collects data from a museum. It takes data from the audio-tour device you give to people, records their path and then figures out what people enjoy. <\/span><span style=\"font-weight: 400;\">Great. But what if the museum wants to see that data in a better way? <\/span><\/p>\n<p><span style=\"font-weight: 400;\">You might not have the skills in-house to create the visualization. Instead, you might partner up with another company and use their software. <\/span><span style=\"font-weight: 400;\">An API is great for this. You can plug your two pieces of software into each other and have them work as a single unit. It\u2019s not public data, so they use an authentication code to prove they can use the data.<\/span><\/p>\n<h3><span style=\"font-weight: 400;\">Open up to the public<\/span><\/h3>\n<p><span style=\"font-weight: 400;\">Lastly, you might just want to make your data public. OpenWeather, for example, wants anybody to be able to use its data. An open API lets you give this data to people, without them getting access to the raw database.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\">Learn to use APIs and more<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">If you\u2019re interested in learning to program your own websites and use APIs to give them more functionality, you can check out at <a href=\"https:\/\/www.codingdojo.com\/coding-bootcamp\">one of several Coding Dojo bootcamps<\/a>, whether you want to learn on-site, online, part-time or full-time, there&#8217;s a bootcamp for you. You\u2019ll get hands-on experience and learn to code three full stacks in a few months.\u00a0<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>As you embark on your coding journey, there are dozens of phrases you might not be familiar with. So, what is an an API API stands for Application Programming Interface. It is a piece of code that lets two programs talk to each other. A way to pass information and data between two programs directly. [&hellip;]<\/p>\n","protected":false},"author":1489,"featured_media":10497,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[2],"tags":[],"ppma_author":[2158],"class_list":["post-10494","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-posts"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is an API? - Coding Dojo<\/title>\n<meta name=\"description\" content=\"Wondering what an API is? API stands for Application Programming Interface. It is a piece of code that lets two programs talk to each other.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is an API? - Coding Dojo\" \/>\n<meta property=\"og:description\" content=\"Wondering what an API is? API stands for Application Programming Interface. It is a piece of code that lets two programs talk to each other.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api\" \/>\n<meta property=\"og:site_name\" content=\"Coding Dojo\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/CodingDojodotco\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-09T14:00:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-13T17:28:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.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=\"Jonathan Sandals\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodingDojoDotCo\" \/>\n<meta name=\"twitter:site\" content=\"@CodingDojoDotCo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brad Mitchell\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api\"},\"author\":{\"name\":\"Brad Mitchell\",\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#\/schema\/person\/f0763260736567f77d8107c616816792\"},\"headline\":\"What is an API?\",\"datePublished\":\"2022-05-09T14:00:31+00:00\",\"dateModified\":\"2022-12-13T17:28:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api\"},\"wordCount\":1265,\"publisher\":{\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.jpg\",\"articleSection\":[\"All Posts\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api\",\"url\":\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api\",\"name\":\"What is an API? - Coding Dojo\",\"isPartOf\":{\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.jpg\",\"datePublished\":\"2022-05-09T14:00:31+00:00\",\"dateModified\":\"2022-12-13T17:28:39+00:00\",\"description\":\"Wondering what an API is? API stands for Application Programming Interface. It is a piece of code that lets two programs talk to each other.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#primaryimage\",\"url\":\"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.jpg\",\"contentUrl\":\"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.jpg\",\"width\":1200,\"height\":800,\"caption\":\"Male programmer working on laptop\"},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#website\",\"url\":\"https:\/\/www.codingdojo.com\/blog\/\",\"name\":\"Coding Dojo\",\"description\":\"Coding Bootcamp News, Career Guidance and More\",\"publisher\":{\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.codingdojo.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#organization\",\"name\":\"Coding Dojo\",\"url\":\"https:\/\/www.codingdojo.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/Dojo-logo.png\",\"contentUrl\":\"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/Dojo-logo.png\",\"width\":287,\"height\":51,\"caption\":\"Coding Dojo\"},\"image\":{\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/CodingDojodotco\",\"https:\/\/x.com\/CodingDojoDotCo\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#\/schema\/person\/f0763260736567f77d8107c616816792\",\"name\":\"Brad Mitchell\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.codingdojo.com\/blog\/#\/schema\/person\/image\/ec2fbcd1523bbd2627b9829b755f9a82\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/dcc8629d03d0958c0b46f7b63ec616978cba85abe345283ecd4ae3dee76e5146?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/dcc8629d03d0958c0b46f7b63ec616978cba85abe345283ecd4ae3dee76e5146?s=96&r=g\",\"caption\":\"Brad Mitchell\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is an API? - Coding Dojo","description":"Wondering what an API is? API stands for Application Programming Interface. It is a piece of code that lets two programs talk to each other.","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:\/\/www.codingdojo.com\/blog\/what-is-an-api","og_locale":"en_US","og_type":"article","og_title":"What is an API? - Coding Dojo","og_description":"Wondering what an API is? API stands for Application Programming Interface. It is a piece of code that lets two programs talk to each other.","og_url":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api","og_site_name":"Coding Dojo","article_publisher":"https:\/\/www.facebook.com\/CodingDojodotco","article_published_time":"2022-05-09T14:00:31+00:00","article_modified_time":"2022-12-13T17:28:39+00:00","og_image":[{"width":1200,"height":800,"url":"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.jpg","type":"image\/jpeg"}],"author":"Jonathan Sandals","twitter_card":"summary_large_image","twitter_creator":"@CodingDojoDotCo","twitter_site":"@CodingDojoDotCo","twitter_misc":{"Written by":"Brad Mitchell","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#article","isPartOf":{"@id":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api"},"author":{"name":"Brad Mitchell","@id":"https:\/\/www.codingdojo.com\/blog\/#\/schema\/person\/f0763260736567f77d8107c616816792"},"headline":"What is an API?","datePublished":"2022-05-09T14:00:31+00:00","dateModified":"2022-12-13T17:28:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api"},"wordCount":1265,"publisher":{"@id":"https:\/\/www.codingdojo.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#primaryimage"},"thumbnailUrl":"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.jpg","articleSection":["All Posts"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api","url":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api","name":"What is an API? - Coding Dojo","isPartOf":{"@id":"https:\/\/www.codingdojo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#primaryimage"},"image":{"@id":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#primaryimage"},"thumbnailUrl":"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.jpg","datePublished":"2022-05-09T14:00:31+00:00","dateModified":"2022-12-13T17:28:39+00:00","description":"Wondering what an API is? API stands for Application Programming Interface. It is a piece of code that lets two programs talk to each other.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.codingdojo.com\/blog\/what-is-an-api"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codingdojo.com\/blog\/what-is-an-api#primaryimage","url":"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.jpg","contentUrl":"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/danial-igdery-FCHlYvR5gJI-unsplash-e1625789983975.jpg","width":1200,"height":800,"caption":"Male programmer working on laptop"},{"@type":"WebSite","@id":"https:\/\/www.codingdojo.com\/blog\/#website","url":"https:\/\/www.codingdojo.com\/blog\/","name":"Coding Dojo","description":"Coding Bootcamp News, Career Guidance and More","publisher":{"@id":"https:\/\/www.codingdojo.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.codingdojo.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.codingdojo.com\/blog\/#organization","name":"Coding Dojo","url":"https:\/\/www.codingdojo.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codingdojo.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/Dojo-logo.png","contentUrl":"https:\/\/www.codingdojo.com\/blog\/wp-content\/uploads\/Dojo-logo.png","width":287,"height":51,"caption":"Coding Dojo"},"image":{"@id":"https:\/\/www.codingdojo.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/CodingDojodotco","https:\/\/x.com\/CodingDojoDotCo"]},{"@type":"Person","@id":"https:\/\/www.codingdojo.com\/blog\/#\/schema\/person\/f0763260736567f77d8107c616816792","name":"Brad Mitchell","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codingdojo.com\/blog\/#\/schema\/person\/image\/ec2fbcd1523bbd2627b9829b755f9a82","url":"https:\/\/secure.gravatar.com\/avatar\/dcc8629d03d0958c0b46f7b63ec616978cba85abe345283ecd4ae3dee76e5146?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dcc8629d03d0958c0b46f7b63ec616978cba85abe345283ecd4ae3dee76e5146?s=96&r=g","caption":"Brad Mitchell"}}]}},"authors":[{"term_id":2158,"user_id":0,"is_guest":1,"slug":"jsandals","display_name":"Jonathan Sandals","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/8383b2344c5b16abd5315b4d1d391585860c5d540e16ec83e360a2e38d9df994?s=96&r=g","author_category":"","user_url":"","last_name":"Sandals","first_name":"Jonathan","job_title":"","description":""}],"_links":{"self":[{"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/posts\/10494","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/users\/1489"}],"replies":[{"embeddable":true,"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/comments?post=10494"}],"version-history":[{"count":1,"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/posts\/10494\/revisions"}],"predecessor-version":[{"id":15680,"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/posts\/10494\/revisions\/15680"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/media\/10497"}],"wp:attachment":[{"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/media?parent=10494"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/categories?post=10494"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/tags?post=10494"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.codingdojo.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=10494"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}