REpresentational State Transfer (REST) is an architectural style. It is not a strict standard but provides certain guidelines and constraints. American computer scientist Roy Fielding originally described these constraints in his doctoral dissertation.
REST relies on stateless, cacheable, and client-server communication protocols like HTTP. By following the principles of REST and applying them to stateless protocols such as HTTP, developers can build API interfaces that can be used from any device or operating system. ...