DEV Community

Cover image for Taking a Look at REST API Design Patterns
Embold Technologies
Embold Technologies

Posted on

Taking a Look at REST API Design Patterns

We know what webservices are, and that there exist multiple types of webservices. But the main type is REST—although it is most often used in the context of HTTP, REST is an architectural design pattern, not a communication protocol.

In this article, we talk a bit about useful and intuitive design patterns in RestFul webservice API architecture. In general, design patterns are formalised best practices that a programmer can use to solve common problems when designing an application or system. Below are different elements of design patterns for REST architecture.

REST architecture style constraints: There are design rules that are applied to establish the different characteristics of the REST architectural style, which are referred to as REST constraints:

Client-server
Statelessness
Cacheable
Uniform interface
Layered systems

Goals of RESTful API design: Restful APIs should be straightforward, unambiguous, easy to consume, well-structured, and most importantly, accessible with well-known and standardized HTTP methods.

API design goals:

  1. Affordance:

Affordance is the possibility of an action on an object or environment. An API with clear perceived affordance allows the developer to understand its purpose and to use it seamlessly inside the Cybernetic Environment it was designed for.

  1. Loosely coupled:

In Restful APIs, multiple clients are connected to the same backend server. So when internal representation of a server is changed, it should not affect API consumption at the client side. In a loosely coupled design, APIs are independent, and modifications in one won't impact the operation of consumers. Within an API, the components get added, modified, or replaced. However, the loose coupling approach offers clients better flexibility and reusability of APIs while its elements are added, replaced, or changed. Well-designed APIs exhibit loose coupling and well-composed functionalities across service boundaries to maximize scalability factors.

  1. Leverage existing web architecture:

RESTful APIs should use HTTP as a transport layer since the infrastructure, server and client libraries for HTTP are widely available already. RESTful APIs should take advantage of HTTP methods, or verbs, such as GET, PUT and POST.

RESTful API Design Patterns: API design patterns provide a description or templates to solve specific, recurring API design problems that any software architects and API designers would like to adopt in their API designs.

  1. Statelessness:

Communication between client and server should be stateless, means that every client request contains all the information necessary for the server to process the request. So there is no global state thereby reducing the complexity of the server.

The good news is that some Restful web frameworks provide out-of-the-box implementation for Statelessness. For example: Spring Boot's REST API framework.

  1. Content negotiation:

Content-negotiation is a mechanism or process that services and clients can select as their resources representation format for their communication and handshakes during their usual course of communication.

HTTP specification comes up with a set of standard headers, through which the client can get information about a requested resource and carry the messages that indicate its representations.

So, for content negotiation, REST services need to use HTTP headers; that is, when the client makes requests, it includes the accepts header, the list of file types that the client and server can handle with no additional steps to the client requests, the server processes, and replies.

E.g. In Java we can use produces property in @GetMapping annotation

@GetMapping(path="/investors/{investorId}/stocks/{symbol}", produces={MediaType.APPLICATION_JSON_VALUE, MediaType.APPLICATION_XML_VALUE})

  1. URI Templates

It is always the case that the client may need to include some additional information in their request, and how the server lets the client include that information about resources in the URIs. Server-side developers require the ability to describe the layout of the URIs that their services will respond to. So we can use URI template. URI templates provide a way to describe a set of resources as variables.

E.g. If there are multiple resources,

People: https://swapi.co/api/people/

Planets: https://swapi.co/api/planets/

Films: https://swapi.co/api/films/

Species: https://swapi.co/api/species/

We can use simply https://swapi.co/api/{resource_id}/ as a URI template

The @PathVariable annotation provided by Spring Boot helps us implement the URI template pattern in our code seamlessly.

  1. Design for Intent

Design for intent is a method that expresses the different relationships between objects so that changes to one object automatically propagates changes to others.

In a RESTful API world, the API should be developed to ensure they meet the requirements of the desired use cases provided and faced by users, but without exposing the internal business objects. Design for intent is a strategic design pattern that's intended to influence or result in specific and additional user behaviours.

  1. Pagination

When there are multiple rows of data available then APIs should give the requested data in batch wise (Pagination).

Pagination is a concept that helps in serving only part of the data as a response, however, with information about how to access all the data from the server, page by page, without much load and high computation for the server to serve the whole data.

E.g. xxx.api.com/students?page=2.

There are three variants of resource representation ways of pagination:

Offset-based
Time-based
Cursor-based

  1. Discoverability:

Discoverability is very important factor in API designing, helping developers figure out programmatically whether the site that's being accessed has an API enabled or not will be the most critical responsibility of the API.

Using following two ways we can ensure discoverability of API for developers,

  1. By valid HTTP methods:

When clients call REST services with invalid HTTP methods, the response of that request should end up in the 405 HTTP error code; that is, 405 Method Not Allowed. In addition to the error code, the response header should provide flexibility to the client to find the supported methods that allow headers in its response.

  1. By providing the URI of the newly created resource:

Including the URI as part of the location header as the response to the newly created resource is another method of discoverability. The returned URI as a location will be available through GET.

In Sprint boot it gives out-of-the box solution for discoverability E.g. Using @GetMapping annotation

  1. Unicode:

A simple yet powerful way to make API support multiple languages is to enable the API to support Unicode.

Unicode is an encoding standard that support an international character set. It has a unique number for every character across multiple languages including Chinese, Korean, and Arabic and their scripts. The unique number makes almost all characters identifiable and accessible across platforms, programs, and devices.

API design principles:

In general, the following standard guidelines should be followed while designing high-quality Restful APIs.

Ubiquitous web standards
Flexibility
Standardization
Optimization
Granularity
Sandbox or playground

This should be an excellent starting point for anyone who wants to get their hands into RESTful services, with not just the basics, but essential patterns as well. The enemy of design patterns are anti-patterns, which seem sounds but are counter-productive when executed. Unfortunately, anti-patterns are hard to detect. Read more about how a free static analyser like Embold detects up to 30 structural design issues in Java programming. You can check out my other article on anti-patterns as well.

Did you find this useful? Please comment.

Oldest comments (0)