Is an API a software ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Is an API a software ?

Hi ducks. I know that API stands for Application Programming Interface and it is used to send a query to database/... and receive answer. But is it a software or piece of code or what ? and any example of an API ?

26th Feb 2021, 5:45 AM
Agt Reda
Agt Reda - avatar
3 Answers
+ 2
API is not necessarily used to send queries to a database. It is not SQL! Let's start from the basics. API is an interface to a program. It ensures guided usage of the program. A little analogy might help. Say you have a water dispenser, the type with buttons. When you need hot water, you don't disassemble the machine and work out hot water yourself. Instead, you simply press a button and hot water is "magically" produced. If that dispenser was a computer program, the buttons are the API. An API ensures that clients of a program only use it in the intended way without breaking things. API can be a few accessor methods in a program. It can also be something as complex as a native app. APIs are necessary when more than one person needs to modify a program e.g a database. Not everybody has good database skills also third-party apps may need to access your database. You don't go about giving direct access to anyone that needs to use your database.
26th Feb 2021, 9:01 AM
Ore
Ore - avatar
0
No, it's a description or blueprint of an interface. A software can implement or use that interface, but API on its own is not a software
26th Feb 2021, 8:33 AM
Benjamin Jürgens
Benjamin Jürgens - avatar
- 2
It's basically a function. A complicated one but still one. The function takes parameters you send it and comes back with a response, whether XML or JSON
26th Feb 2021, 5:48 AM
👑 Prometheus 🇸🇬
👑 Prometheus 🇸🇬 - avatar