What REST Is All About
- Resource-Oriented:
/users,/orders - Stateless: the server doesn't keep state (authorization happens via token)
- Representation: data comes back as JSON
Note Other styles like GraphQL/GRPC exist too, but REST stays simple and is the one you'll see used in practice most often.