massOfai

REST API

Data & Infrastructure

Web API following REST architectural principles

What is REST API?

Uses HTTP methods (GET, POST, PUT, DELETE) and URLs to perform operations. Stateless and widely used.

Real-World Examples

  • GET /users/123 - fetch user
  • POST /orders - create order
  • DELETE /products/456 - delete product

When to Use This

Standard choice for web APIs, simple and widely supported