REST, an acronym for Representational State Transfer, is an architectural style for designing networked applications. A RESTful system, often used in web services development, utilizes HTTP requests to access and manipulate data.

REST uses standard HTTP methods, such as GET, POST, PUT, and DELETE, and is stateless, meaning that each HTTP request contains all the necessary information to execute the request, improving performance by allowing servers to be state-free.