Een API gateway is een enkel ingangspoint dat voor backend services staat — en zich bezighoudt met cross-cutting concerns zoals routing, authenticatie, rate limiting en meer. Het is vooral nuttig in microservices architecturen om gemeenschappelijke functionaliteit te centraliseren.
Wat een API gateway doet
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
