REST API
Applies to: general
A REST API exposes resources at URLs and uses HTTP methods to act on them: GET to read, POST to create, PUT to update, DELETE to remove. It is stateless and conventional, which makes such APIs predictable to consume.
GET /posts list
POST /posts create
DELETE /posts/7 remove