One entrypoint for cross-cutting concerns.
API Gateways: one entrypoint for cross-cutting concerns
turn boundaries into contracts
Gateway is a SPOF — make it HA and observable.
An API gateway is the single ingress for all clients to a microservice fleet. It handles authentication, rate limiting, request transformation, and routing — keeping these concerns out of every service.
Per-route policies: auth required, rate limit, request size, allowed methods.
Transformation: add/remove headers, normalize errors, mask internal services.
Don't put business logic in the gateway. Keep it dumb and fast.
Multi-team microservices behind one gateway.