For those of you new to this also understand that the word "interface" just means where two things meet. Some people think interface just means user interface. It can also be used in terms of database interface, network interface, software interface, urban wilderness interface, land sea interface etc. I've been looked at strangely by people who thought it only meant graphical user interface (GUI).
As a gamer and one who has used addons for games, I’ve heard of APIs for almost 20 years. I be honest to say as much as I’ve heard of the thing, I knew they did a query to the server of the MMO games I played, I’ve never had any idea how they worked. Not clearly. This was a very good example with the video in clear explanation. This has also given me an idea for my job in industrial automation.
The video is explaining the concept of Web APIs, specifically, not APIs themselves. An API is just the collection of classes, methods and functions exposed by a programming library or framework. Web APIs is the same concept, but brought to the Internet. It's important to know the difference.
@@hastyscorpion All the more important to learn things right from the get go. They are learning a definition of API that's not 100% accurate, they will probably encounter the concept of an API (a real software API) at some point in their careers and get it wrong. Hopefully this won't cost anyone an opportunity in job interviews.
That's not true. There are different levels to learning. Starting from teaching a person 1 + 1 without necessarily teaching them immediately 6578 +-* 7655 doesn't mean 1 + 1 is wrong. This is just an 11 minutes video. You don't expect them to touch all aspects of API. No person that wants to get serious knowledge about a topic would just watch an 11 minutes video and that's all. There's hours and hours of lectures they know they have to learn but they'll have to START from somewhere.
@@amaechiwilliams1345 I agree that anyone seeking to learn more about this will watch a lot more videos on it. And I do agree that this video is a good introduction to the topic of Web APIS, a good starting point. That being said, I don't think it was too difficult to explain that there is something called APIs and another thing called Web APIS. This is still a simple enough concept that can be explained in layman's terms without getting to deep into the details.
Very true....when I started my backend development learning journey, I found everywhere the same definition, "an API is the set of rules and protocols which enables the communication among different systems". While this definition is theoretically correct but it doesn't tell the whole picture like what an entity it is and due to this I was just stuck, frustrated, and confused about a month. It was later when I got to know that the APIs are just the classes and methods exposed by a service or system to the users in a specific pre-defined rules and protocols. So basically they standardised the communications between the systems by providing a set of functions and classes to call the actual function classes or methods of the system/services.....As an extra layer of methods above the actual functions/methods.
Great explanation. I would add: if you’re thinking about doing this as a business, we forewarned that big companies do ‘change the rules’ for their API access whenever they wish, including starting to charge large fees.
Good educational video, this helped me understand exactly what API's do and how we can use them and your examples you use are spot on :) this will help when learning the basics for the CCNA! thanks for the video!
Channelling my inner John Tuld (Margin Call): "Please, speak as you might to a young child or a Golden Retriever. It wasn't brains that got me here, I can assure you that." You did, and now it's finally sunken in! Thank you 👍
Nice. Finally a high level detailed overview of API's explained in a way that someone who's not that familiar with API concepts will be able to grasp. Much appreciated.
Thank You for explaining in detail, slow and steady manner. It really helped me to understand the concept of API with actual practical example rather than reading definitions here and there.
Wow this, I like how you broke down everything with examples. I was wondering what JSON format is and how I would have gone to look for another video to understand that but you broke everything down with examples. Lovely
I almost feel bad to say this in s room full of "this is amazing!" or "the best API explanation on RUclips", but I do take issue with the fact that you make it sound like API is a web thing. WebAPIs are one kind of API that is exposed over web protocols such as HTTP. Long before the web, developers were using all kinds of APIs, at different abstraction levels. Don't get me wrong; this is a good video; I just felt like a remark had to be made.
I've heard the term "API" tossed around for years by people who love to use jargon. Your video finally explained what they are and why they are so common. Thank you, and well done!
@@bruvhellnah To me and most people if you just say “API” it means a “Web API”. It’s a way by which you can send messages over the internet to an application and interact with it. “API” in general means an interface to interact with applications using code (this interaction is not necessarily over the internet) But either way, usually when most people say “API” it means “Web API”.
Looks like a great API tutorial, not that I would know, but I merely want to know how to make a front end to query data in Google Sheets, which I am trying to use as the data table for a "database" of my work materials. Never mind, this was interesting.
Very well explained to a noob like me up until the point where I asked myself: So how is the response received and do you need to run it through a service like postman or was that just for the display?
An API is just any interface provided by the developers of a piece of software that allows other parties to use it without having access to the source of that software itself. REST and other Web API's often use a common standard for what this interface is supposed to look like, which is outlined in this video. In their case, using the API means sending a web request to the server that's running the software you want to use that has the API. However, many APIs are not web-based. The Windows API provides functionality to allow programmers to create programs that run within windows, without having access to the source code of windows. For example, it provides the capability of creating buttons, windows, send files to the printer, start up a new process thread, etc. These are usually just methods within a library within a programming language, and don't have anything to do with web requests like a web api. Basically, an API is just the concept of giving a specific set of access points to your application that can be used by another program instead of by the user itself. It's basically the user interface for the programs themselves. So where a human might want to do something with an app by pressing a button, a program will do that thing by calling into the API. Whatever that API looks like is completely determined by the people making it. REST is just a common standard of how to create an API that's generally easy to work with in online applications.
You are F**ing Good man...I always stay tuned to your channel awaiting your contents like a young man waiting for his favourite music to get played on his favourite FM station...I wish to meet you some day..you make my IT journey feel like biscuits.😂
I ❤ APIs. Every new API like is a box of goodies waiting to be unpacked. Learn to build with APIs and a glorious career in front of your computer awaits ...
This is the best video explaining this concept. I am a designer and know some front end, and although I had a notion of these concepts, with this video everything is crystal clear.
@@NathanHedglin Yes, but would you also consider a "server API" to constitute a particular kind of server? E.g. REST as you mentioned. How about RPC calls, a server for (Open)MPI, an SMTP or POP server, or even an HTTP server itself? It seems many people now unfortunately live with the misconception that an API only has something to do with how web applications interact with each other, but as you say not everything is REST :-) The term API predated the web's existence by many years, and we had APIs for a library, the POSIX and the Win32 APIs for example. Back in those days much of what is called an API today would more likely have been referred to as a [communication] protocol instead, while one would rather use the API of some library to make use of (or implement) said protocol. There's a reason many of those old Internet acronyms end with a P...
For those of you new to this also understand that the word "interface" just means where two things meet. Some people think interface just means user interface. It can also be used in terms of database interface, network interface, software interface, urban wilderness interface, land sea interface etc. I've been looked at strangely by people who thought it only meant graphical user interface (GUI).
Thanks
ong thanks a lot, you clear my mind, so much thanks
It is actually a systems theory concept. Something that connects two different systems
@@carlosargelioarevalomercado It's much broader than that. That is one example of an interface.
@@pedrolopez8057 much broader than systems theory?
As a gamer and one who has used addons for games, I’ve heard of APIs for almost 20 years. I be honest to say as much as I’ve heard of the thing, I knew they did a query to the server of the MMO games I played, I’ve never had any idea how they worked. Not clearly. This was a very good example with the video in clear explanation. This has also given me an idea for my job in industrial automation.
This is the best introduction to APIs I have ever seen that makes life easy for beginners.
The video is explaining the concept of Web APIs, specifically, not APIs themselves. An API is just the collection of classes, methods and functions exposed by a programming library or framework. Web APIs is the same concept, but brought to the Internet. It's important to know the difference.
People using this video to learn are not at the level where that distinction makes a difference.
@@hastyscorpion All the more important to learn things right from the get go. They are learning a definition of API that's not 100% accurate, they will probably encounter the concept of an API (a real software API) at some point in their careers and get it wrong. Hopefully this won't cost anyone an opportunity in job interviews.
That's not true. There are different levels to learning. Starting from teaching a person 1 + 1 without necessarily teaching them immediately 6578 +-* 7655 doesn't mean 1 + 1 is wrong.
This is just an 11 minutes video. You don't expect them to touch all aspects of API. No person that wants to get serious knowledge about a topic would just watch an 11 minutes video and that's all. There's hours and hours of lectures they know they have to learn but they'll have to START from somewhere.
@@amaechiwilliams1345 I agree that anyone seeking to learn more about this will watch a lot more videos on it. And I do agree that this video is a good introduction to the topic of Web APIS, a good starting point. That being said, I don't think it was too difficult to explain that there is something called APIs and another thing called Web APIS. This is still a simple enough concept that can be explained in layman's terms without getting to deep into the details.
Very true....when I started my backend development learning journey, I found everywhere the same definition, "an API is the set of rules and protocols which enables the communication among different systems".
While this definition is theoretically correct but it doesn't tell the whole picture like what an entity it is and due to this I was just stuck, frustrated, and confused about a month. It was later when I got to know that the APIs are just the classes and methods exposed by a service or system to the users in a specific pre-defined rules and protocols. So basically they standardised the communications between the systems by providing a set of functions and classes to call the actual function classes or methods of the system/services.....As an extra layer of methods above the actual functions/methods.
I now have a solid understanding of what APIs are, how they work and the benefits of using them
This video is about REST APIs. It is misleading to beginners as it will make them think that all APIs are REST/HTTP. The title should say "REST APIs."
THIS. Web devs especially influencers aren't very smart
what’s the difference?
Amazing explanation! Truly valuable, I can say I learnt so much from this channel about technology than what lecturers in schools have taught.
Great explanation. I would add: if you’re thinking about doing this as a business, we forewarned that big companies do ‘change the rules’ for their API access whenever they wish, including starting to charge large fees.
Thanks for the quick short introduction
It was really so helpful
"Babe wake up, new CertBros dropped"
This cracked me up 😂😂😂
This was damn funny reading the comments.
😆😆
Important to note that this is just HTTP/Web APIs
APIs exist way out of the scope of web apps or Http
A voice made for radio! Thanks for the video.
This is BY FAR the best API explanation on RUclips. Thank you!
The best tutorial I have come across on API...thanks a lot for your great work !
Good educational video, this helped me understand exactly what API's do and how we can use them and your examples you use are spot on :) this will help when learning the basics for the CCNA! thanks for the video!
Glad this video helped. And good luck with the CCNA!
I love api and ur videos they just make the internet better
Your explanations are amazing. Nice pace, great animations & examples.
Channelling my inner John Tuld (Margin Call): "Please, speak as you might to a young child or a Golden Retriever. It wasn't brains that got me here, I can assure you that." You did, and now it's finally sunken in! Thank you 👍
Love this!! Really happy you liked it 😁
I hav watched like 10 vids.. this is the BEST!! Tysm :) for uploading such a banger!
Thank you for creating this video. I've been hearing this "API" long ago but never understood it until today thanks for this video.
Nice. Finally a high level detailed overview of API's explained in a way that someone who's not that familiar with API concepts will be able to grasp. Much appreciated.
Thank You for explaining in detail, slow and steady manner. It really helped me to understand the concept of API with actual practical example rather than reading definitions here and there.
Wow this, I like how you broke down everything with examples. I was wondering what JSON format is and how I would have gone to look for another video to understand that but you broke everything down with examples. Lovely
I almost feel bad to say this in s room full of "this is amazing!" or "the best API explanation on RUclips", but I do take issue with the fact that you make it sound like API is a web thing. WebAPIs are one kind of API that is exposed over web protocols such as HTTP. Long before the web, developers were using all kinds of APIs, at different abstraction levels. Don't get me wrong; this is a good video; I just felt like a remark had to be made.
thank you so much! i didnt understand APIs when told about them but your explanation was amazing
Thank you, your explanation is awesome.
So an API call is a query and the parameters are like the filters right?
thank you very much when i saw the title of the video i was saying the exact same API's was giving me a hedace to understand thank you
I've heard the term "API" tossed around for years by people who love to use jargon. Your video finally explained what they are and why they are so common. Thank you, and well done!
The best video on API ever, I found.😄
@certbros O passed CCNA today and i want to thank you for all the awesome videos you have.They sure helped me ...
Congratulations on getting your CCNA Jennifer!!! Happy to have helped. Keep up the great work.
Great video. Well explained and direct to the point. Thanks.
Spectacular as always
Thank you Tonio! Appreciate the kind words 🙏
This was the best explanation of API's I've seen so far. Thanks a lot!
*Server API. This isn't what an API is.
@@NathanHedglin how do they differ?
@@bruvhellnah To me and most people if you just say “API” it means a “Web API”. It’s a way by which you can send messages over the internet to an application and interact with it.
“API” in general means an interface to interact with applications using code (this interaction is not necessarily over the internet)
But either way, usually when most people say “API” it means “Web API”.
The first 3 seconds proved this fella understands my pain
We've all thought it! 😂
Greatest API video I've ever seen!!!
Awesome! The CRUD analogy, I've one other place earlier
Great and very clear explanation! Thank you so much!!! 😊👍
Well presented in simple and digestible format
If only I could give this video many likes :) Well explained, especially for a beginner
it is one of the best explanations ever.
The thumbnail was exactly the question i had in my head.
I had no idea how much I needed this hahaha thanks new sun here
Nice video, i understand APIs better now. Thank you
Looks like a great API tutorial, not that I would know, but I merely want to know how to make a front end to query data in Google Sheets, which I am trying to use as the data table for a "database" of my work materials.
Never mind, this was interesting.
Perfect explanation!!! Thank you.
Allah razı olsun ♥ Çok bilgilendirici bir video ♥
explanations are in a very clear way thank you for the tutorial:)
liked and subscribed. for a whole week, I've been searching for an explanation that could make me understand APIs. This was it!
Thank you for making videos, learned soooo much from this channel!
Really happy to hear that Justin! You're welcome and thank you for comment 👌
Hey, it is nice not to be scared of APIs anymore 😂. Great job 🎉
Very well explained to a noob like me up until the point where I asked myself: So how is the response received and do you need to run it through a service like postman or was that just for the display?
Very nice description. Thank you :)
Really great channel, I learned a lot of things, thank you so much.
You're very welcome! Happy to help.
Such explanations should replace those complicated ones of Coursera!
This is really entertaining 😍😍😍😍😍😍
Thank you Attouchi!
Love it. Very explanatory.
One question, these are REST or Web API's. What is for Example with the Win32 API? This is an API to. What is the difference?
An API is just any interface provided by the developers of a piece of software that allows other parties to use it without having access to the source of that software itself.
REST and other Web API's often use a common standard for what this interface is supposed to look like, which is outlined in this video. In their case, using the API means sending a web request to the server that's running the software you want to use that has the API.
However, many APIs are not web-based. The Windows API provides functionality to allow programmers to create programs that run within windows, without having access to the source code of windows. For example, it provides the capability of creating buttons, windows, send files to the printer, start up a new process thread, etc. These are usually just methods within a library within a programming language, and don't have anything to do with web requests like a web api.
Basically, an API is just the concept of giving a specific set of access points to your application that can be used by another program instead of by the user itself.
It's basically the user interface for the programs themselves.
So where a human might want to do something with an app by pressing a button, a program will do that thing by calling into the API. Whatever that API looks like is completely determined by the people making it. REST is just a common standard of how to create an API that's generally easy to work with in online applications.
@@TijmenZwaan waw bro thanks
I already knew what is API still i watched complete video because you are #$÷*@ing awesome
Thanks man! Really appreciate it. That's why you're awesome too ☝
Brilliant, keep up the great work
Best explanation!
Thank you Mohammad!
Really Amazing Explanation..
Bitch, where were you all this time. I am so glad that I stumbled upon your video. Thank you so much.
FINALLY. I get it. Thank you!
I like how the intro music is the hottest rap beat since 2007
Thanks! Very well explained imho.
very digestible. well done
Great information and nicely done👍
Thanks Orley! Really appreciate it 👍
API == operation. It's that simple. Too many so-called programming experts are more like marketer; inventing jargons. Sick.
Thank you Much.... very useful
Was looking for a video to watch while eating my supper. Why now eat and learn
You are F**ing Good man...I always stay tuned to your channel awaiting your contents like a young man waiting for his favourite music to get played on his favourite FM station...I wish to meet you some day..you make my IT journey feel like biscuits.😂
Thank you so much Emmanuel 🙏 Really appreciate the kind words. Comments like these are why I keep making these videos. Good luck with your IT journey.
*WEB SERVER API
There are native APIs, library APIs, etc. Not EVERYTHING is REST.
Could speak about node.js and relation with Back-end and Database using API technologies
Excellent video!
Great explanation, thanks a lot...
So cool! Best explanation I have seen and THANK YOU for speaking at a slow pace so that I can actually process and remember everything as you say it
Good stuff my man!
thanks so much for this video...been wondering what an API is for a while now.
This is a SERVER API. API is any code talking to other code like a library, native API etc. Not everything is REST
ty best explanation i have found
I ❤ APIs. Every new API like is a box of goodies waiting to be unpacked. Learn to build with APIs and a glorious career in front of your computer awaits ...
Thank you 👍
very helpful!! thanks
Great video. Thanks!!!!!!!!!
This is the best video explaining this concept. I am a designer and know some front end, and although I had a notion of these concepts, with this video everything is crystal clear.
Exactly what I needed. Thank you !
Thank you Iulian! Good to hear it helped 👍
Amazing explanation
Loved this simplicity and clarity of the explanation. Subscribed!
Wonderful! You've helped me understand something I've had to work with only notion-wise for many years!
You earned the subscribe on this one
Thank you. Next API Security | Hacking training video👨💻
Thank you so much for this
You are talking about REST APIs. API is a much broader term.
Finally API makes sense to me. Thank you!
This is a SERVER API. API is any code talking to other code like a library, native API etc. Not everything is REST
@@NathanHedglin Yes, but would you also consider a "server API" to constitute a particular kind of server? E.g. REST as you mentioned. How about RPC calls, a server for (Open)MPI, an SMTP or POP server, or even an HTTP server itself? It seems many people now unfortunately live with the misconception that an API only has something to do with how web applications interact with each other, but as you say not everything is REST :-) The term API predated the web's existence by many years, and we had APIs for a library, the POSIX and the Win32 APIs for example. Back in those days much of what is called an API today would more likely have been referred to as a [communication] protocol instead, while one would rather use the API of some library to make use of (or implement) said protocol. There's a reason many of those old Internet acronyms end with a P...
Nice video again
thank you, great video
CertBros, If you don't mind, Can you please share your mic model number and setup detail?
The simplest and the best explanation, thank You very much!
Fantastic tutorial
Awesome video.
Thank you so much
You're welcome Usama! Glad you liked it.