An API is the middleman of most modern applications. API stands for: Application Programming Interface. Let’s break it down by looking at each of its parts:
Application | Programming | Interface |
---|---|---|
If you have a smartphone, you are well acquainted with what applications are (the tools, games, social networks and other software that we use everyday). | Programming is how engineers create all the software that make our lives so much easier. | An interface is a common boundary shared by two applications or programs that allow both to communicate with one another. |
☝️ Essentially, an API is a way for programmers to communicate with a particular application.
Every API comprises 3 main components: (1) The functions/methods that you have available to use, (2) The format for the communication, and (3) The data (and types of data) that it will manipulate. For example, any phone in the world will have the following API:
Functions/Methods: | Communication format |
---|---|
Make a call Hangup a call Talk to the operator Dial something on the keypad | Noise (sounds)! There is a sound for everything (even on modern phones). You hear a tone when you are about to make a call, when pressing any key, etc. The phone system listens to the changes of the tone of the noise. |
The API methods of a web application depend entirely on the purpose/business of the website:
There are dozens of ways of creating an API, but the REST standard has come to rule them all. If you are serious about being a web developer, you have to be very comfortable with REST.
REST works over HTTP, that means that everything is text based. It uses the famous GET, POST, PUT and DELETE commands to classify the API methods.
Method | Method |
---|---|
GET | Used to read state from the server. Being a safe operation, it can be executed multiple times without risk of data modification or corruption, calling it once has the same effect as calling it ten times. |
POST | The REST purists use post only for creation. That means that every-time you POST something into an API, you will be creating a new record in the database for that. Some API’s use POST for all the writing operations (delete, update and create). They do so because PUT and DELETE are not available in HTML/Forms, and that makes those methods harder to use. |
PUT | This is most used to update state on the server; although it can also be used to create state. |
DELETE | Used to delete data on the server |
The HTTP status codes provide metadata in the response to the state of the requested resources. They are part of what makes the Web a platform for building distributed systems. They are divided into the following categories:
1xx
– Metadata2xx
– Everything is fine3xx
– Redirection4xx
– Client did something wrong5xx
– Server did something wrongURIs differentiate one resource from another. To access and manipulate a resource, it needs to have at least one address.
They are composed of a protocol
+ host
+ path
.
E.g: https://api.uber.com/v1.2/products
Clients should not be coupled to particular resource URIs as they can be changed at the server’s discretion. This is where hypermedia has the greatest advantages, as it offers a way to decouple clients from specific URIs, and add semantics to the application protocol.
Here are some Twitter API URI’s:
A resource is an abstract representation of an object that can be invoked using Create, Read, Update or Delete with your API, for example:
Resources represent the documents being transferred across the network to get work done. Resources should be named as nouns, as they represent concepts in the domain of a particular system and are identified using URIs.
Further reading:
List of public API's that require no authentication: https://github.com/public-apis/public-apis