API Gateway Architecture
High-level API gateway pattern used across enterprise services — authentication, routing, rate-limiting and observability.
Technologies
API GatewayOAuth2KongKubernetesPrometheus
High-level API gateway pattern used across enterprise services — authentication, routing, rate-limiting and observability.
This document explains the API Gateway pattern used for routing, auth, and observability.
flowchart LR Client --> LB[Load Balancer] LB --> APIGW[API Gateway] APIGW --> Auth[Auth Service] APIGW --> ServiceA[Service A] APIGW --> ServiceB[Service B] ServiceA --> DBA[(Postgres)] ServiceB --> DBB[(Postgres)]