REST APIs
REST is an architectural style that uses simple HTTP calls for inter-machine communication instead of more complex options like CORBA, RPC, or even SOAP. Using REST means your calls will be message-based and reliant on the HTTP standard to describe these messages. Using the HTTP protocol means REST is a simple request/response mechanism. Each request …