Definition
An architectural style for APIs that uses standard HTTP methods (GET, POST, PUT, DELETE) and stateless communication. RESTful APIs are the most common web API type.
Example Usage
"Our REST API follows standard conventions — GET /products lists items, POST /products creates one, PUT /products/:id updates it, DELETE removes it."