एक API gateway एक एकल प्रवेश बिंदु है जो backend सेवाओं के सामने बैठता है — routing, authentication, rate limiting और अधिक जैसी cross-cutting चिंताओं को संभालता है। सामान्य कार्यक्षमता को केंद्रीकृत करने के लिए यह microservices आर्किटेक्चर में विशेष रूप से उपयोगी है।
API gateway क्या करता है
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
