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 of 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 is comprised of 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 |
---|---|
python>Make a call python>Hangup a call python>Talk to the operator python>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:
python>1xx
– Metadatapython>2xx
– Everything is finepython>3xx
– Redirectionpython>4xx
– Client did something wrongpython>5xx
– 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 python>protocol
+ python>host
+ python>path
.
E.g: python>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:
If you are building an e-Commerce API, they could be: Product, Category, Order, Client, Purchase, etc.
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 autenthication: https://github.com/public-apis/public-apis
TALLERES Y EVENTOS
MENTORÍAS EN VIVO
APRENDIZAJE SOCIAL Y EN VIVO
¿CÓDIGO DE CONDUCTA?
INTRO AL CÓDIGO
CIENCIA DE DATOS
30DAYSOFGEEKCODING
I.A. Y MACHINE LEARNING
La forma más eficiente de aprender: únase a una cohorte con compañeros de clase como usted, transmisiones en vivo, sesiones improvisadas de codificación, tutorías en vivo con expertos reales y mantenga la motivación.
De cero a que te paguen como desarrollador, aprende las habilidades del presente y del futuro. Impulsa tu carrera profesional y sé contratado por una empresa tecnológica.
Inicie una carrera en ciencia de datos y análisis. Un enfoque práctico con ejercicios interactivos, soporte por chat y acceso a tutorías.
Mantén tu motivación con este desafío de 30 días. Únase a cientos de otros desarrolladores programando un poco todos los días.
Comience con Python y Data Science, Machine Learning, Deep Learning y mantenga un entorno de producción en A.I.
©4Geeks Academy LLC 2019