Skip to main content

What is an API? A Simple Explanation for Programming Beginners


API

What is an interface?

Interface is a control system, through which we can use something.

For Example:
The interface of car includes:
  • Steering Wheel
  • Brakes
  • Gear
  • Acceleration pedal
  • Mirrors
Interface is concerned with the fact that how to use something, rather than how it works.

The Easiest Analogy for an API: The Restaurant

  • Imagine you're at a restaurant.
  • You are the user. You want food (data or a service).
  • You can't just walk into the kitchen and start cooking. That would be chaotic and unsafe! Instead, you interact with the waiter.
  • You look at a menu (the API documentation) and give your order to the waiter. The waiter takes your request to the kitchen. The kitchen prepares your food. The waiter then brings the response (your delicious meal) back to you.
The waiter is the contract, the messenger, the interface in our case the API. They provide a secure and simple way for you to get what you need from the kitchen without needing to know how the kitchen works.

What is an API?

API is a collection of functions which are public in our program.

Application programming Interface is a contract or a program containing the functions which are to be used by the user.

Actually, when we write a program, we don't give our code to the user, we keep our code at our device so that it can't be changed or can't be stolen. So, if user doesn't get the code, how would he be able to use our website or online service then? Here comes the API.

How API is used behind the scenes?

We make a frontend website, typically of HTML, CSS and JavaScript containing just buttons and interactive fields. Nothing more. It does not contain actual algorithms or complex logic. So when user clicks on the any of the buttons or perform any action, a corresponding API request is generated behind the scene,  API which is present on server side, receives that request, calls the appropriate function based on the request and returns the response to the browser or application from where API was called.

Benefits:

  • The first and foremost benefit which we get is the security, we don't need to give our complete code to the user. We just get the request and give the response. It keeps the direct contact to the actual code or database. 
  • The API class just has access to those functions which are needed by the user. It does not know the actual implementation, it just calls the function.





Disclaimer: This is an example of java API using basic example. In reality, this we use HTTP request and Spring Boot for creating API. We have taken this example for simplicity.


As we can see that our API is just calling the functions like removeStudent() and addStudent() and getting the response. The function implementation is in another class and that class is not exposed directly to the API, so someone from outside would not be able to access the logic and change that logic.

The actual implementation of the class StudentDatabase is below:




The actual implementation is in this StudentDatabase class and it is not exposed directly.

Conclusion:

As you can see, our StudentAPI  is the perfect waiter. It takes the order, passes it to the kitchen, and returns the result, all without exposing any of the secret logic inside the StudentDatabase class.

That, in a nutshell, is what an API does. It's a secure and powerful contract that allows different pieces of software to talk to each other.

Comments

Popular posts from this blog

Java Servlets

  According to me its just a translator, who manages the HTTP requests and handle them to the appropriate function of the API. So then, API turns out to be a term or set of those functions which are kept public. Now let us see in little bit of detail what servlets are: For that we need to see few terms: Static Web Pages: Static web pages are the pages, which are already built, and whose content and design always remain the same.  For Example: About us page of some website. Contact info page of some website Dynamic Web Pages: Dynamic pages are not already defined. They are dependent on search queries. For Example: If we search top 5 books, and click on search button, result would be different. If we search top 5 countries and enter search, result would be different.  So, the search result for every search is different. Working: Now if we have to search static page let's say the first page of any website (which is same for every use in every country) then the process is sim...

Why do I need to create Java Classes? Why don't just use database for searching?

The Bridge Between Data and Display A Conceptual Guide to Java, Databases, and the "Why" behind the Code. 1. The Core Problem When building a web application, you have data sitting in a Database (SQL Server) and a user waiting at a Browser . The challenge is moving that data efficiently and safely. Beginners often ask: "Why do I need to create Java Classes ( Student.java ) and copy data into Lists? Why can't I just print the database results directly to the screen?" To answer this, we must understand how the database actually talks to Java. 2. The Anatomy of a Connection The ResultSet is NOT Data — It is a "Live Wire" A common misconception is that when you run a query, the data is instantly sent to your Java program. It is not. The ResultSet is a Cursor (Pointer) . It points to a row on the database hard drive. The Connection is a Pipe . The Streaming Analogy: Think of a ResultSet like a Phone Call . When you say rs.next() , you are asking the da...