REST is an acronym for Representational State Transfer. This is a set of constraints that an API should follow. If you're API follows these constrains then it is considered to be RESTful. These constraints are:
- A client-server model,
- Stateless interaction,
- Uniform interface.
This does not make REST much clearer to understand.