API Full-Form

Learn via video courses
Topics Covered

What is API?

The full form of API is Application Programming Interface. APIs make a big part of the web. According to a public report published by Postman (an API testing software), the number of API collections on their platform grew from 17.3 million in 2019 to 46 million in 2021.

To understand APIs properly, think of a function in a language, say JavaScript –

Consider the following example –

fetch is a method in JavaScript to call an API. It usually returns a JSON (JavaScript Object Notation) value. then is used to pair the results i.e. process the result further. data.json() is used to decode the value received as a JSON Object into a JavaScript object.

In the above example, note that we are making an API call using an URL ‘https://example.com/parameter1+parameter2’.

What is API

Thus, APIs are similar to a function, but there are some differences between the two. Normal functions can be called directly within a program, but APIs are hosted on the server and can be accessed only via an URL.

How api works

Use of APIs

API is a set of rules and definitions that allow different computers, software, or services to communicate with each other over the internet. When two systems communicate, the server is the one that provides the API, and the client is the one who consumes it.

APIs take a request from the client or user and send it to the server, which then sends back a response based on the request.

What is an API

APIs are like a cog between two machines that help in transferring the motion.

Works of API

Imagine that you are sitting in a restaurant with a menu to choose from. You want to send your order to the kitchen, but how do you do that?

Yes! You would ask the waiter to send your order to the kitchen and bring back the food for you. In this case note, the waiter is your API, the order is your request, the kitchen is the server, and the food is the response.

Use of APIs

That is what an API does: they help the client to talk with the server. It is a mediator that takes your request to the server and delivers the response back to you.

Recall the example of the swiggy app. They can use Google Maps in their app because they are using Google Maps API. Google allows developers to make use of various services including Google Authentication, Google Translate etc. In this case, Google has allowed swiggy to use their maps without even sharing the code behind it.

To better understand the flow behind the screen, consider the following image:

API example

In the above example, The data is stored in a database hosted on a physical server. The Google Maps API acts as a mediator between the application (swiggy in this case) and the Database.

Whenever an application/client makes a request, the following flow is carried out behind the scenes:

  • API takes the request to the Database or server.
  • The request made by the user is processed.
  • The server prepares a response and sends it back to the API.
  • API then turns the response into a standard format (XML or JSON) and transfers it to the client application.
  • The application decodes the data and leverages it.

Note that the application is the client, and both the api and database together make a server.

Elements of an API

There are three important elements of an API 1. Procedures: They are functions that perform any specific task. E.g. Adding, Deleting data from a resource. 2. Protocols: They are a set of rules that determine how the API would communicate with the client application. E.g. REST (Representational State Transfer), SOAP (Service Object Access Protocol) 3. Tools: They are the blocks required to build a program.

Types of APIs

Based on the type of release, there are three main types of APIs:

1. Private APIs

They are also known as Internal APIs. They are usually meant to be used within the organizations. They are designed to improve upon solutions and services of an organization’s backend. Many companies use private APIs to make their applications work without revealing their code. E.g. Home-Cost API, which is a home-cost calculator. This API can be used throughout a supply store and its warehouses without any external interference.

2. Public APIs

They are also known as developer-facing APIs. They are publically available for everyone without any restrictions. There are two kinds of public APIs – open-source and commercial. Companies may use such APIs to generate additional revenue. E.g. OpenWeatherMap API.

3. Partner APIs

Partner APIs are meant to share the data between two business parties. One company grants the permissions to access the API and the other company makes use of it. E.g. AWS, Twitter, etc.

Three types of APIs based on Release Policies

Based on use cases, there are three main types of APIs:

1. Database APIs

These APIs enable the applications to communicate with Database Management Systems. Such APIs support queries and help developers in accessing the specific data by using them. E.g MongoDB, Google Firebase’s API, etc.

2. Remote APIs

Remote APIs allow the modification of data from outside the computers by making a request. Applications access resources located outside the device that requests them. These APIs are cross-platform and support bi-directional streaming of the data. E.g. Jenkins API, Java Database API, etc.

3. Web APIs

Web APIs generally use HTTP for request messages. This is the most common class of APIs. Web APIs can be used by developers to extend the functionalities in their applications. E.g Google Maps API, Twitter API, etc.

Three types of APIs based on use cases

Based on protocols, there are two main types of API

1. SOAP (Simple Object Access Protocol)

SOAP was developed by Microsoft. It is a lightweight protocol that uses Extensible Markup Language (XML) as a format to transfer data. SOAP is generally used within organizations to ensure the high security of the data. The use of SOAP has fairly declined after the introduction of REST (Representational State Transfer) and JSON (Javascript Object Notation). E.g. Stop-light API.

2. REST (Representational State Transfer)

Unlike SOAP, REST uses JSON (a lightweight text format to transfer the data in key-value pairs) as a format to transfer data. REST APIs are stateless. It means that they can transfer data uniformly. REST APIs are built on multi-layered systems with defined server-client architecture. REST APIs are the most popular APIs due to their lightweight and fast nature. E.g. Spotify API, Twitter API, etc.

Soap vs Rest

Advantages of APIs

  • Since APIs can access app components, the transfer of data becomes flexible.
  • With APIs, data migration becomes easier.
  • APIs help companies and developers in automating their processes to enhance their productivity and efficiency.
  • APIs are highly customizable and adaptable and thus, allows the user right to implement and update them in the way they desire.

Disadvantages of APIs

  • Since APIs are a single point of entry, they are vulnerable to attacks from hackers.
  • Once the API is compromised, it can lead to the loss of all other related or attached systems.
  • Since APIs are on the internet, they are vulnerable to every kind of web attack including XSS attacks (adding external malicious scripts) and SQL injection (code injection technique to access the database).
  • There are chances of a system crash during the API testing.

Examples of APIs

  • OpenWeatherMap API – This API allows users to access the weather details of any city throughout the world.
  • Twitter API – Using this API, users can perform a lot of actions on the Twitter platform including posting a tweet, deleting a tweet, etc.

Conclusion

We have discussed various fundamentals of an API. We discussed what APIs are, how they work, the advantages and disadvantages of API, etc.

Now that you have understood what APIs are, here is a question for you to ponder upon – “How would you explain APIs to your grandparents?”