REST
Definition
Representational State Transfer — an architectural style for designing networked APIs. RESTful APIs use HTTP methods to perform CRUD operations on resources identified by URLs. Responses are typically JSON.
Code Example
Learn More
Related Terms
Application Programming Interface — a set of rules and endpoints that allow different software systems to communicate. Web APIs typically use HTTP methods (GET, POST, PUT, DELETE) to exchange data in JSON format.
JSONJavaScript Object Notation — a lightweight text format for data exchange. JSON supports strings, numbers, booleans, null, objects, and arrays. It's the standard format for API responses and configuration files.
HTTP MethodsStandard request methods that indicate the desired action on a resource. GET retrieves data, POST creates, PUT/PATCH updates, DELETE removes. Each method has semantics about safety and idempotency.