Altruist (CA) Interview Question

What's REST? Monolith vs Microservices

Interview Answer

Anonymous

Jun 18, 2025

REST stands for Representational State Transfer. It's not a protocol but a software architectural style.The core idea of REST is to treat everything as a resource, which can be identified by a Uniform Resource Identifier (URI) Common HTTP methods used in RESTful APIs: GET: Retrieve a resource or a collection of resources. POST: Create a new resource. PUT: Update an existing resource PATCH: Partially update an existing resource. DELETE: Remove a resource.