API-Gateway (EN)
TechnologyCentral entry point for all client requests with routing and authentication
Architecture
flowchart TD Client[Client application] --> APIGW[API-Gateway] APIGW --> Auth[Authentication] APIGW --> RateLimiter[Rate Limiting] APIGW --> LoadBalancer[Load Balancer] APIGW --> MS1[Microservice 1] APIGW --> MS2[Microservice 2] APIGW --> MS3[Microservice 3] MS1 --> DB1[Database 1] MS2 --> DB2[Database 2] MS3 --> DB3[Database 3] subgraph API-Gateway-Functions direction LR Auth RateLimiter LoadBalancer end