Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Understanding RESTful APIs: A Guide to Implementation and System Design
Nov 24, 2024
142 views
Written by Array Alchemist
LeetCode wizard with 75 conquered challenges under my belt.
Turning algorithm nightmares into "Aha!" moments, one explanation at a time.
Join me to level up your coding skills – from interviews to real-world application!
REST is the most common communication standard between computers over internet.
What is it? Why is this so popular?
Api stands for application programming interface. It's a way for two computers to talk to each other. The common api standard used by most mobile and web applications to talk to the servers is called REST
Rest is not specification. It is a loose set of rules which has been the common standard for building web API since the early 2000s. An API that follows the REST standard is called RESTful API.
Basics of REST:
A RESTful api organizes resources into a set of unique URIs (Uniform resource identifiers). The uri differentiate different types of resources on a server.
Noun-Based Design:
The resources should be grouped by NOUN & not verb.
RESTful APIs should organize resources by nouns, not verbs. This aligns with the idea that APIs represent entities or objects (resources) rather than actions. Each resource corresponds to a real-world entity.
Some of the correct and incorrect apis designs
Example:
Why Use Nouns?:
A client interacts with a resource by making a request to the endpoint for the resource over HTTP. The request has a very specific format:
The server receive the request then processes it, then format the result into a response.
The first line of the response contains the HTTP status code to tell the client what happened to the request.
A well implemented restful api returns a proper HTTP status codes.
Idempotent vs. Non-Idempotent Requests
A well behaved client could choose to retry a failed request with a 500 level status code. In RESTful APIs, the behavior of retrying failed requests (e.g., those with a 500 level status code) depends on whether the HTTP method is idempotent or non-idempotent.
The response body is optional and could contain the data payload that are usually formatted in JSON.
Critical Attributes of REST
RESTful APIs are widely used because they are simple, standardized, and effective, making them a good fit for many use cases. However, they may not always be the best choice depending on the needs of different companies.
Limitations of RESTful APIs:
In contrast, GraphQL uses a single entry point, like /graphql, to handle all queries and mutations. This not only reduces the complexity of managing multiple endpoints but also provides flexibility for clients to request exactly the data they need, nothing more or less.
At Unisala, this was the main reason we transitioned from RESTful APIs to GraphQL. It allowed us to reduce the complexity of managing multiple endpoints while giving clients the flexibility to request exactly the data they need.
These notes were taken from the ByteByteGo. All credit goes to ByteByteGo.