Bruno Pedro


How to choose between REST vs. GraphQL vs. gRPC vs. SOAP

This post was originally published on the Postman blog as “How to choose between REST vs. GraphQL vs. gRPC vs. SOAP”. The original content was professionally edited.

To create the Postman Open Technologies Knowledge Base API, I’ve been following our team’s internal API design playbook, which covers the strategy, definition, validation, and specification of an API. After finishing the strategy phase by interviewing potential API users, I’m now in the definition phase, where the goal is to document what the API will offer.

The first thing to identify during the definition phase is the API architectural style, which encompasses the design principles and constraints that define the structure and behavior of an API.

Here are some of the most popular API architectural styles:

So, how do you know which architectural style to use? In one of the Knowledge Base API project meetings, GraphQL was considered a good candidate because of its versatility. However, I wanted to know more to understand why the API consumers would want to use GraphQL. Ultimately, I wanted to align the choice of API architectural style with users’ needs.

Create a compatibility matrix: align your API with users’ existing tools #

I identified a simple framework to help me identify the best architectural style to use. I went back to the information I had obtained during the interviews and compiled a list of all the tools that potential consumers were using regularly. Whatever the architectural style I choose, it must be easy for users to consume from those tools. The architectural style must also be a good fit for the data and operations I’m designing. With this simple framework in mind, and equipped with information from the interviews I had done before, I was able to create the following compatibility matrix:

REST (GET)REST (POST)GraphQLgRPCSOAP
MS Excel✔︎VBAadd-on✔︎
Google Sheets✔︎add-onadd-on
R✔︎✔︎✔︎✔︎✔︎
Postman✔︎✔︎✔︎✔︎✔︎
JavaScript✔︎✔︎✔︎✔︎✔︎
Jiraadd-onadd-onadd-on
AhaZapierZapier
Web Browser✔︎

Along the x-axis, you can see the different architectural styles. I split REST into a variant for reading data and another for creating data. I did it because many tools make it easy to read external data but not so much to create it. Along the y-axis, you can see all the tools that I compiled from the interviews with potential API users. With this table, I can identify the compatibility between each architectural style and each tool. Some of the compatibility cells are not perfect, meaning that some add-on or third-party tool is needed for the connection to work.

The information from the compatibility matrix above showed me that the architectural style that best adapts to all the popular tools is REST. Almost all the mentioned tools let users read from external REST endpoints. In addition to that, REST is a good fit for the type of data and operations that I’m designing. The Knowledge Base API aims to provide statistical reports by accepting queries that can take multiple parameters. In other words, the shape of the returned data and the nature of the input parameters is consistent with what’s available in the REST architecture style.

To summarize, it’s important to align your decision of which API architectural style to use with what potential users need. To do that, you can find information about the tools they use. You can then create a compatibility matrix where you identify what tools let users access APIs with different architectural styles. From that, combine the best match with the internal data and operations you’re designing. Ultimately, your choice of architectural style should be the one that offers better compatibility with users’ suite of tools and is the best fit for your data and operations.