RESTful
RESTful describes web services that conform to the Representational State Transfer architectural style for distributed systems. A RESTful service exposes resources identified by universal resource identifiers (URIs) and uses a uniform interface to manipulate resource representations transferred over a stateless protocol, typically HTTP. Clients interact with resources by transferring representations such as JSON or XML.
Core constraints include client-server separation, statelessness, cacheability to improve scalability, a uniform interface that uses standard
In practice, RESTful APIs usually map HTTP methods to actions: GET retrieves, POST creates, PUT replaces, PATCH
Hypermedia as the engine of application state (HATEOAS) is a debated constraint; some RESTful services implement
RESTful design is widely used for web services and microservices due to its scalability and simplicity, but