
What is Richardson Maturity Model?
Natan Ferreira
- 0
- 156
It is a model (developed by Leonard Richardson) to improve API maturity.
To achieve the glory of REST, the API must have maturity levels. There are 4 levels, and next we will see how each of them works.

Level 0: The Swamp of POX
This level defines that the use of the HTTP protocol is necessary to transport the information.
We have a single endpoint for all requests, using only one HTTP VERB, which in this case is POST.
Examples:
- https:myapi/v1/states?action=list
- https:myapi/v1/states?action=add
Level 1: Resources
Now we no longer have a single endpoint, but we are still using the POST verb for all endpoints. We use resources as in the examples:
- https:myapi/v1/states/getAllStates
- https:myapi/v1/states/getStateById
Level 2: HTTP Verbs
We make proper use of HTTP verbs to indicate each action.
Among the most commonly used are:
- GET: responsible for retrieving one or more resources;
- POST: responsible for creating a new resource;
- PUT: responsible for updating a resource;
- DELETE: responsible for removing a resource;
- PATCH: responsible for partially updating a resource.
Examples:

Level 3: Hypermedia Controls
In this final level of maturity, we apply HATEOAS (Hypermedia as the Engine of Application State). It is responsible for showing the URI of the resource itself and other resources related to it. It’s like website navigation.
Example:
{
"states": [
{
"id": 1,
"name": "São Paulo",
"links": [
{
"rel": "self",
"href": "http://api.example.com/v1/states/1"
}
]
},
{
"id": 2,
"name": "Rio de Janeiro",
"links": [
{
"rel": "self",
"href": "http://api.example.com/v1/states/2"
}
]
}
],
"links": [
{
"rel": "first",
"href": "http://api.example.com/v1/states?page=1"
},
{
"rel": "next",
"href": "http://api.example.com/v1/states?page=3"
},
{
"rel": "prev",
"href": "http://api.example.com/v1/states?page=1"
},
{
"rel": "last",
"href": "http://api.example.com/v1/states?page=10"
}
]
}
Pagination is a good example of its use, but it’s not limited to that, as it returns the possible actions related to the returned resource.

This is how we can achieve the glory of Rest.
References
https://martinfowler.com/articles/richardsonMaturityModel.html: What is Richardson Maturity Model?Author
-
I am a seasoned Full Stack Software Developer with 8+ years of experience, including 6+ years specializing in Java with Spring and Quarkus. My core expertise lies in developing robust RESTful APIs integrated with Cosmos Db, MySQL, and cloud platforms like Azure and AWS. I have extensive experience designing and implementing microservices architectures, ensuring performance and reliability for high-traffic systems. In addition to backend development, I have experience with Angular to build user-friendly interfaces, leveraging my postgraduate degree in frontend web development to deliver seamless and responsive user experiences. My dedication to clean and secure code led me to present best practices to my company and clients, using tools like Sonar to ensure code quality and security. I am a critical thinker, problem solver, and team player, thriving in collaborative environments while tackling complex challenges. Beyond development, I share knowledge through my blog, NatanCode, where I write about Java, Spring, Quarkus, databases, and frontend development. My passion for learning and delivering innovative solutions drives me to excel in every project I undertake.