What is REST API?
Software EngineeringAn architectural style for APIs using HTTP methods to perform CRUD operations on resources.
REST APIs use standard HTTP methods (GET, POST, PUT, DELETE) to manipulate resources identified by URLs. They're stateless, cacheable, and the most common API style for web services.