{"id":6459,"date":"2020-11-08T18:11:00","date_gmt":"2020-11-09T02:11:00","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=6459"},"modified":"2020-11-09T00:29:48","modified_gmt":"2020-11-09T08:29:48","slug":"what-is-an-api","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/","title":{"rendered":"API: Courses, Training, and Other Resources"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">How to Learn About APIs<\/h2>\n\n\n\n<p>If you\u2019ve ever worked on a coding project that grew to any size, you know it doesn\u2019t take that long for it to become impossible for any single person to know all its inner workings.<\/p>\n\n\n\n<p>In order to deal with the cognitive limitations of human beings, it becomes necessary to divide the project up into individual components which are developed semi-independently of each other.<\/p>\n\n\n\n<p>As this process continues the teams working on each component begin to develop their own workflows, code bases, and dynamics. At the extreme, it can become difficult for the various components to work together smoothly.&nbsp;<\/p>\n\n\n\n<p>And yet, if the overall project is to be a success this is precisely what has to happen. Having great <a href=\"https:\/\/careerkarma.com\/blog\/backend-vs-front-end-development\/\">backend and front end<\/a> code written doesn\u2019t do any good if none of it fits together. So how do we get everything to coordinate?&nbsp;<\/p>\n\n\n\n<p>This is a deep question with a deep answer, but today we\u2019re going to focus on just one piece of technology that helps make the modern world of technology possible: Application Programming Interfaces (APIs).<\/p>\n\n\n\n<p>If you\u2019re looking to get into a <a href=\"https:\/\/careerkarma.com\/blog\/best-tech-jobs\/\">technology career<\/a> of any kind, knowing how APIs work is going to be an advantage. They are used all over the place for solving problems of almost every kind.&nbsp;\n\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is an API?<\/strong><\/h2>\n\n\n\n<p>An Application Programming Interface (API) is a protocol that lets two or more web services connect with each other. APIs define what data a service owns can be retrieved and manipulated by another service. Companies rely on APIs to let developers build on top of their services.<\/p>\n\n\n\n<p>As it turns out, communication isn\u2019t just essential in establishing healthy relationships between human beings. It\u2019s no less important in making sure chunks of code get along. In the introduction I tried to set up my discussion of APIs by noting that within single projects complexity can cross a threshold beyond which there must be established rules for how one component talks to another. Well, the exact same thing is true at a much higher level <em>between<\/em> projects.&nbsp;<\/p>\n\n\n\n<p>So what we have is a situation in which there needs to be layers both inside and outside a given project whose entire purpose is to make it so that someone can talk to the project\u2019s software in a clear, rule-based way.&nbsp;<\/p>\n\n\n\n<p>And that\u2019s what an API is. One popular example of an API is code which enables you to grab the contents of a web page (I describe just such an API below), but they come in many more shapes.<\/p>\n\n\n\n<p>Twitter has multiple APIs for accessing its database of tweets, which let you do things like search for specific hashtags. SERPapi is a 3rd-party resource that lets you grab Google search results in a JSON object; it returns date time information, text snippets, titles, links, and pretty much everything else Google would. I could write an entire article just expanding this list.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Use an API?<strong>&nbsp;<\/strong><\/h2>\n\n\n\n<p>I want to start answering this question by first drilling down into an example which is similar to my first experience with an API.&nbsp;\n\n<\/p>\n\n\n\n<p>Imagine you\u2019d like to grab the headlines, contents, and metadata for all the articles published by the New York Times in the past 5 years for natural language processing. If you couldn\u2019t do any clever programming, how would you do this?&nbsp;\n\n<\/p>\n\n\n\n<p>You\u2019d probably have to set aside a week to spend all your time going backwards through the New York Times\u2019 website, painstakingly copying out the data you need by hand into some kind of database.&nbsp;\n\n<\/p>\n\n\n\n<p>Can you conceive of a more ridiculous waste of time?&nbsp;\n\n<\/p>\n\n\n\n<p>Luckily, like almost all major websites, media outlets, applications, and software, the New York Times has an API which lets you accomplish this very thing in much less time. If I recall correctly, it took me a few hours of fiddling to get years worth of text data.&nbsp;\n\n<\/p>\n\n\n\n<p>With this story having been relayed I doubt much else needs to be said. You use an API for the same reason you use a keyboard or a wheelbarrow or an atlatl: it makes your life easier.&nbsp;\n\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Build an API?<\/h2>\n\n\n\n<p>And we\u2019ve also gone most of the way towards answering the question from the other side. While I doubt the New York Times cares all that much about whether a fledgling data scientist saves time gathering their articles together. But most other application developers don\u2019t have much choice. If they want their product to be used and integrated with other applications, they have to make an API to facilitate that process. <\/p>\n\n\n\n<p>But there are subtler reasons. It sometimes winds up being possible to utilize applications through APIs in surprising ways that even the developers didn\u2019t foresee. The famous automation platform If This Then That (IFTTT) is basically nothing but a way of lashing together hundreds of APIs to make it possible to do things like automatically email your spouse when you\u2019re still logged into your work machine after a certain time or send out a tweet every time you bookmark an article.&nbsp;<\/p>\n\n\n\n<p>Famously, Amazon began slicing their code up into smaller pieces that became exposed through APIs, which paved the way for what would later become Amazon Web Services, the most powerful cloud-computing service in the word.&nbsp;<\/p>\n\n\n\n<p>Learning APIs<\/p>\n\n\n\n<p>Before you can go on to use complicated web APIs, you first need to know the principles upon which APIs are based. These principles will aid your understanding of what information you can retrieve and manipulate with an API. It is also these principles that guide <em>how<\/em> you get information.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How Long Does it Take to Learn APIs?<\/h3>\n\n\n\n<p>It takes a few hours to learn the fundamental concepts behind APIs. This is because the architecture behind APIs is relatively simple if you have a good understanding of the web. You may end up spending days or weeks learning an individual API and what you can do with it.<\/p>\n\n\n\n<p>Let&#8217;s take the Twitter API. You could spend days looking through documentation to find all the API endpoints you need for a project. Every API has their own endpoints, authentication mechanisms, and schemas which you&#8217;ll need to learn to use that API.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Learn APIs: Step-by-Step<\/h3>\n\n\n\n<p>How do I learn to use APIs? That&#8217;s a great question. The first step is to ask yourself why you want to learn about APIs. This will help keep you motivated even as you encounter challenges which all web developers do when they first start to use APIs.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Learn the basics of web servers. APIs are run on web servers. Before you set out to learn how to use an API, you should learn how the front-end and back-end work together.<\/li><li>Learn the principles behind APIs. Spend some time learning about how APIs work and what different architectures are used. Learn about the basics of REST and why it is so popular.<\/li><li>Practice your skills. Choose a web API that you find interesting and try to make a few API calls. Authenticate yourself as a user and try some GET and POST requests. This will familiarize you with how APIs work on a practical level.<\/li><li>Build a project. Once you&#8217;ve played around with an API, you&#8217;ll have the knowledge you need to build a project with that API. You could build an application that analyzes Tweets from Twitter. Or you could use the Stripe API to add payments to a project you have been working on.<\/li><\/ul>\n\n\n\n<p>The best rule to remember when you are learning APIs is to practice. Nobody develops complete mastery within an hour. It takes time to learn principles and to understand the specifics of an API.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Best Online API Courses and Trainings<\/h2>\n\n\n\n<p>There are plenty of API courses and training programs on the web. Yoy may be asking yourself which ones are worth your time. That&#8217;s a good question to ask. Below we have covered some of the best API courses and trainings you can use to accelerate your knowledge of APIs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Online API Courses<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\"><a href=\"https:\/\/www.udacity.com\/course\/designing-restful-apis--ud388\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Designing Restful APIs<\/a><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li>Provider: Udacity<\/li><li>Cost: Free<\/li><li>Audience: Intermediate<\/li><\/ul>\n\n\n\n<p>This free course by Udacity teaches the basics of Application Programming Interfaces. You&#8217;ll learn how to write secure APIs for a back-end web application. At the end of this course, you&#8217;ll create an API for a social application.<\/p>\n\n\n\n<p>This course is expected to take around three weeks to complete for someone who is interested in learning about APIs.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><a href=\"https:\/\/www.udemy.com\/course\/rest-api-design-the-complete-guide\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Software Architecture: REST API Design<\/a><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li>Provider: Udemy<\/li><li>Cost: $50.00<\/li><li>Audience: Intermediate<\/li><\/ul>\n\n\n\n<p>You&#8217;ll learn how to design a professional REST API and discover how best to document an API in this course.<\/p>\n\n\n\n<p>What&#8217;s more, you&#8217;ll learn how to correctly describe an API and use the jargon that comes with modern APIs.<\/p>\n\n\n\n<p>This course is best if you already have some basic knowledge of how APIs work and want to expand your understanding of APIs.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><a href=\"https:\/\/www.udemy.com\/course\/rest-api-flask-and-python\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><\/a><a href=\"https:\/\/www.udemy.com\/course\/rest-api-flask-and-python\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">REST APIs with Flask and Python<\/a><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li>Provider: Udemy<\/li><li>Cost: $60.00<\/li><li>Audience: Intermediate<\/li><\/ul>\n\n\n\n<p>In this online course, you&#8217;ll learn how to work with REST APIs using Python. You&#8217;ll work your way through building your own API using Python and Flask, a popular web development framework. This course covers designing and building an API with security in mind.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Online API Books<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.amazon.co.uk\/RESTful-Web-APIs-Leonard-Richardson\/dp\/1449358063\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">RESTful Web APIs by Leonard Richardson<\/a><\/h3>\n\n\n\n<p>This book was written in response to the massive growth of REST APIs. In this book, you&#8217;ll learn about what REST is and how it works. This book comes with a step-by-step guide on how to create your own API using REST principles. You&#8217;ll also learn about best practices in designing an API.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.amazon.co.uk\/REST-Design-Rulebook-Mark-Masse\/dp\/1449310508\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">REST API Design Rulebook by Mark Masse<\/a><a href=\"https:\/\/www.amazon.co.uk\/REST-Design-Rulebook-Mark-Masse\/dp\/1449310508\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><\/a><a href=\"https:\/\/www.amazon.co.uk\/REST-Design-Rulebook-Mark-Masse\/dp\/1449310508\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><\/a><\/h3>\n\n\n\n<p>There are a number of guidelines you should keep in mind when you are designing a REST API. In this book, you&#8217;ll learn the basic design rules you should follow in designing a REST API. You&#8217;ll learn why REST APIs should be designed and acquire an understanding of modern API best practices.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.amazon.co.uk\/RESTful-API-Design-3-API-University\/dp\/1514735164\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">RESTful API Design by Matthias Biehl<\/a><\/h3>\n\n\n\n<p>RESTful API design is a complete guide to designing an API using REST principles. In this book, you&#8217;ll learn the fundamentals of designing a good API. You&#8217;ll also learn how APIs are applied in a commercial development environment.<\/p>\n\n\n\n<p>This book, unlike many, is packed with knowledge on how to manage APIs as a product within a business.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Online API Resources<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.restapitutorial.com\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><\/a><a href=\"https:\/\/www.restapitutorial.com\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Learn REST: A RESTful Tutorial<\/a><\/h3>\n\n\n\n<p>REST, or Representational State Transfer, is a method of designing APIs. In this online tutorial, you&#8217;ll learn what REST is, how it works, and why REST Is so important.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.youtube.com\/watch?v=GZvSYJDk-us\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><\/a><a href=\"https:\/\/www.youtube.com\/watch?v=GZvSYJDk-us\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">APIs for Beginners &#8211; How to Use an API<\/a><\/h3>\n\n\n\n<p>This video by freeCodeCamp introduces you to the basics of APIs. You&#8217;ll learn about the fundamental principles behind APIs and why APIs are important. You&#8217;ll get opportunities to work with popular web APIs in this course so you can practice your skills.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/insomnia.rest\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\"><\/a><a href=\"https:\/\/insomnia.rest\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Insomnia Client<\/a><\/h3>\n\n\n\n<p>Insomnia is an open-source API client. It lets you easily design APIs that use the OpenAPI specification. You can use the Insomnia Core product to easily make requests to web interfaces that use either REST or GraphQL. GraphQL is a popular type of API.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Should You Study APIs?<\/h2>\n\n\n\n<p>APIs are a crucial part of the web. All websites which connect to other services rely on APIs to some extent. For instance, external applications that let you analyze Tweets rely on the Twitter API.<\/p>\n\n\n\n<p>If you plan to become a web developer, studying APIs is essential. As a back-end web developer, you&#8217;ll spend a lot of your time crafting APIs for back-end web services.<\/p>\n\n\n\n<p>If you are a front-end web developer, you may still be expected to work with APIs so you can display information on a web page from another service.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Some Common API Questions.<\/strong><\/h2>\n\n\n\n<p>This could become an entire series of articles by itself. But, there is a small<strong> <\/strong>set of typical confusions about APIs which it\u2019s worth addressing.&nbsp;\n\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Is an API a Web Service? <\/h2>\n\n\n\n<p>We\u2019ve covered APIs in some detail. A web service is subtly different, facilitating machine-to-machine interaction over a network through the use of a Web Services Description Language (WSDL).&nbsp;\n\n<\/p>\n\n\n\n<p>These do look quite similar, and the biggest distinction to be made is that web services are a subset of APIs. While every web service is an API, there are APIs which are not web services. Web services require a network and must adhere to a specific design protocol, but there are APIs which can work offline, and they can be built in accordance with any protocol.&nbsp;\n\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What Is a RESTful API? <\/h3>\n\n\n\n<p>Building an API according to Representational State Transfer (REST) principles has been compared to using Graphical User Interfaces; so common that most people don\u2019t even realize there are alternatives. REST APIs were introduced by Roy Fielding, and they essentially separate client-side concerns from server-side concerns.&nbsp;\n\n<\/p>\n\n\n\n<p>This has a few implications. First, client and server applications can evolve independently of each other. Second, the flow of information becomes a matter of requesting and responding. Instead of there being a continuous exchange between them, they don\u2019t communicate unless one of them requests something from the other. Finally, REST APIs can cache information so that they can more quickly produce it if and when it\u2019s required.&nbsp;\n\n<\/p>\n\n\n\n<p>This barely scratches the surface, read <a href=\"https:\/\/nordicapis.com\/rest-vs-streaming-apis-how-they-differ\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">REST vs Streaming APIs<\/a> for a more thorough breakdown.&nbsp;\n\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Learning More about APIs<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"ink-file:\/\/\/home\/james\/.config\/INK\/temp\/images\/bfc99074-28fe-6065-58c8-f99f5f65165e.gif\" alt=\"\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/744025.smushcdn.com\/1245953\/wp-content\/uploads\/2019\/07\/photo-1518644730709-0835105d9daa.jpeg?lossy=1&amp;strip=1&amp;webp=1\" alt=\"\"\/><\/figure>\n\n\n\n<p>Given how common and powerful APIs are it\u2019s a good idea to at least familiarize yourself with how they\u2019re used and built.&nbsp;\n\n<\/p>\n\n\n\n<p>Here are some resources to get you started doing just that.&nbsp;\n\n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>If you\u2019d like to build a REST API with Flask or Python, check out <a href=\"https:\/\/www.udemy.com\/course\/rest-api-flask-and-python\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">this Udemy course<\/a>.&nbsp;<\/li><li>An <a href=\"https:\/\/blog.ipinfo.io\/why-you-should-build-your-company-on-apis-2b0027459a91\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">outstanding article<\/a> laying out historical examples of companies that have succeeded by incorporating APIs. It does a great job of motivating the need for building good interfaces.&nbsp;<\/li><li>Characteristically, O\u2019Reilly has some books which cover the subject in detail. \u201c<a href=\"https:\/\/www.amazon.com\/APIs-Strategy-Application-Programming-Interfaces\/dp\/1449308929\/ref=sr_1_4?keywords=APIs&amp;qid=1568045913&amp;s=gateway&amp;sr=8-4\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">APIs: A Strategy Guide<\/a>\u201d by Jacobson, Brail, and Woods discusses APIs from a business perspective, as potentially profitable long-term investments. \u201cDesigning Web APIs\u201d by Jin, Sahni, and Shevat takes a more technical approach to building, scaling, and improving your web API.&nbsp;<\/li><\/ul>\n\n\n\n<p>APIs are important, and getting more so all the time. If you\u2019d like to truly stand out as you build your technology career, be sure and learn to work with them, write them, and leverage them to add value.&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"How to Learn About APIs If you\u2019ve ever worked on a coding project that grew to any size, you know it doesn\u2019t take that long for it to become impossible for any single person to know all its inner workings. In order to deal with the cognitive limitations of human beings, it becomes necessary to&hellip;","protected":false},"author":35,"featured_media":6460,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[18070],"tags":[],"class_list":{"0":"post-6459","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":"how to learn {subject}","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.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>What Is An API (and How Does It Work)? | Career Karma<\/title>\n<meta name=\"description\" content=\"APIs are everywhere. Learn more about how they work, what they\u2019re used for, and what makes them effective, right here.\" \/>\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-an-api\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"API: Courses, Training, and Other Resources\" \/>\n<meta property=\"og:description\" content=\"APIs are everywhere. Learn more about how they work, what they\u2019re used for, and what makes them effective, right here.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/what-is-an-api\/\" \/>\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-11-09T02:11:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-09T08:29:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1486704155675-e4c07f8ad160.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Trent Fowler\" \/>\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=\"Trent Fowler\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 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-an-api\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/\"},\"author\":{\"name\":\"Trent Fowler\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/768fb9a38d2c1b146588954736f79aba\"},\"headline\":\"API: Courses, Training, and Other Resources\",\"datePublished\":\"2020-11-09T02:11:00+00:00\",\"dateModified\":\"2020-11-09T08:29:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/\"},\"wordCount\":2463,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/photo-1486704155675-e4c07f8ad160.jpg\",\"articleSection\":[\"Software Engineering\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/\",\"name\":\"What Is An API (and How Does It Work)? | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/photo-1486704155675-e4c07f8ad160.jpg\",\"datePublished\":\"2020-11-09T02:11:00+00:00\",\"dateModified\":\"2020-11-09T08:29:48+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/768fb9a38d2c1b146588954736f79aba\"},\"description\":\"APIs are everywhere. Learn more about how they work, what they\u2019re used for, and what makes them effective, right here.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/photo-1486704155675-e4c07f8ad160.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/photo-1486704155675-e4c07f8ad160.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-an-api\\\/#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\":\"API: Courses, Training, and Other Resources\"}]},{\"@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\\\/768fb9a38d2c1b146588954736f79aba\",\"name\":\"Trent Fowler\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Screen-Shot-2019-11-16-at-3.07.12-PM.png\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Screen-Shot-2019-11-16-at-3.07.12-PM.png\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Screen-Shot-2019-11-16-at-3.07.12-PM.png\",\"caption\":\"Trent Fowler\"},\"description\":\"Trent Fowler is a data scientist and writer with an interest in machine learning, blockchain technologies, and futurism.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/trent-fowler\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"What Is An API (and How Does It Work)? | Career Karma","description":"APIs are everywhere. Learn more about how they work, what they\u2019re used for, and what makes them effective, right here.","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-an-api\/","og_locale":"en_US","og_type":"article","og_title":"API: Courses, Training, and Other Resources","og_description":"APIs are everywhere. Learn more about how they work, what they\u2019re used for, and what makes them effective, right here.","og_url":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-11-09T02:11:00+00:00","article_modified_time":"2020-11-09T08:29:48+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1486704155675-e4c07f8ad160.jpg","type":"image\/jpeg"}],"author":"Trent Fowler","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Trent Fowler","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/"},"author":{"name":"Trent Fowler","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba"},"headline":"API: Courses, Training, and Other Resources","datePublished":"2020-11-09T02:11:00+00:00","dateModified":"2020-11-09T08:29:48+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/"},"wordCount":2463,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1486704155675-e4c07f8ad160.jpg","articleSection":["Software Engineering"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/what-is-an-api\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/","url":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/","name":"What Is An API (and How Does It Work)? | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1486704155675-e4c07f8ad160.jpg","datePublished":"2020-11-09T02:11:00+00:00","dateModified":"2020-11-09T08:29:48+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba"},"description":"APIs are everywhere. Learn more about how they work, what they\u2019re used for, and what makes them effective, right here.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/what-is-an-api\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1486704155675-e4c07f8ad160.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/09\/photo-1486704155675-e4c07f8ad160.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/what-is-an-api\/#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":"API: Courses, Training, and Other Resources"}]},{"@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\/768fb9a38d2c1b146588954736f79aba","name":"Trent Fowler","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png","caption":"Trent Fowler"},"description":"Trent Fowler is a data scientist and writer with an interest in machine learning, blockchain technologies, and futurism.","url":"https:\/\/careerkarma.com\/blog\/author\/trent-fowler\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/6459","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\/35"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=6459"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/6459\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/6460"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=6459"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=6459"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=6459"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}