Representational State Transfer

REST

noun (acronym) /rest/

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.

"Our REST API follows standard conventions — GET /products lists items, POST /products creates one, PUT /products/:id updates it, DELETE removes it."