src/data/question-groups/full-stack/content/rest-api.md
A REST API (Representational State Transfer Application Programming Interface) is a standardized way for applications to communicate over HTTP by following a set of principles. It allows clients (like web browsers or mobile apps) to interact with servers to perform operations like fetching or modifying data.
Key Features of a REST API:
/users to get a list of users, /users/1 to access a specific user.Why is it Used?