Photo by Marius Masalar on Unsplash
As software developers, most of us use or build REST APIs in a day to day life. APIs are the default means of communication between the systems. Amazon is the best example how of APIs can be efficiently used for communication. In this article, I am going to talk about how to design your RESTful APIs better to avoid common mistakes.
Some of you might have been already aware of Jeff Bezos’ mandate to the developers in Amazon. If you never got a chance to hear about it, following points are the crux of it —
Eventually this turned to be the key to Amazon’s success. Amazon could build scalable systems and later could also offer those as services as Amazon Web Services.
Now let’s understand the principles we should follow while designing the RESTful APIs —
Souce — Internet
We need to make sure that the base URL of the API is simple. For example, if we want to design APIs for products, it should be designed like —
/products/products/12345
The first API is to get all products and the second one is to get specific product.
A lot of developers make this mistake. They generally forget that we have HTTP methods with us to describe the APIs better and end up using verbs in the API URLs. For instance, API to get all products should be
/products
and NOT as shown below
/getAllProducts
Some common URL patterns, I have seen so far
RESTful APIs have various methods to indicate the type of operation we are going to perform with this API —
We need to make sure we use the right HTTP method for given operation.
This topic is bit debatable. Some of people like to keep the resource URL with plural names while others like to keep it singular. For instance —
/products
/product
I like to keep it plural since it avoids confusion whether we are talking about getting single resource or a collection. It also avoids adding additional things like attaching all to the base URL e.g. /product/all
Some people might not like this but my only suggestion is to keep is uniform across the project.
Sometime we need to have an API which should be telling more story than just by id. Here we should make use of query parameters to design the API.
/products?name=’ABC’
should be preffered over /getProductsByName
/products?type=’xyz’
should be preferred over /getProductsByType
This way you can avoid long URLs with simplicity in design.
We have plenty of HTTP codes. Most of us only end up using two — 200 and 500! This is certainly not a good practice. Following are some commonly used HTTP codes.
Versioning of APIs is very important. Many different companies use versions in different ways, some use versions as dates while some use versions as query parameters. I generally like to keep it prefixed to the resource. For instance —
/v1/products/v2/products
I would also like to avoid using /v1.2/products
as it implies the API would be frequently changing. Also dots (.) might not be easily visible in the URLs. So keep it simple.
It is always good practice to keep backward compatibility so that if you change the API version, consumers get enough time to move to the next version.
Use of pagination is a must when you expose an API which might return huge data and if proper load balancing is not done, the a consumer might end up bringing down the service.
We need to always keep in mind that the API design should be full proof and fool proof.
Use of limit
and offset
is recommended here. For example, /products?limit=25&offset=50
It is also advised to keep a default limit and default offset.
If is also important to choose how your API responds. Most of the modern day applications should return JSON responses unless you have an legacy app which still needs to get XML response.
It is always a good practice to keep set of error messages application sends and respond that with proper id. For example, if you use Facebook graph APIs, in case of errors, it returns message like this —
{"error": {"message": "(#803) Some of the aliases you requested do not exist: products","type": "OAuthException","code": 803,"fbtrace_id": "FOXX2AhLh80"}}
I have also seen some examples in which people return URL with error message which tells you more about the error message and how to handle it as well.
In order to keep all teams in your company abide to certain principles, use of OpenAPI Specification can be useful. Open API allows you to design your APIs first and share that with the consumers in easier manner.
It is quite evident that if you want to communicate better, APIs are the way to go. But if they are designed badly then it might increase confusion. So put best efforts to design well and rest is just the implementation.
If you came across some better ways to design APIs, feel free to share those in comments section. All feedback is welcome! For more such stories, follow STUFF.TECHNOLOGY
stuff.technology_Our community publishes stories worth reading on latest technology trends and learnings. Join in!_stuff.technology
Another great read on design guide used at the National Bank of Belgium: https://opensource.nbb.be/posts/002-restful-api-design-guide/
Thanks to Sébastien D. for the information.