Una puerta de enlace API es un único punto de entrada que se sitúa frente a los servicios backend — manejando preocupaciones transversales como enrutamiento, autenticación, limitación de velocidad, y más. Es especialmente útil en arquitecturas de microservicios para centralizar funcionalidades comunes.
Qué hace una puerta de enlace API
The API GATEWAY is a single entry point in front of backend services:
Client → API GATEWAY → ┬→ Service A
├→ Service B
└→ Service C
→ handles cross-cutting concerns in ONE place (so services don't each implement them)
→ routes requests to the right service; abstracts the backend from clients
