What is REST API?
Software EngineeringLast updated:
An 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.