In microservices, clients would need to know about every service. API Gateway provides a single entry point that routes requests to the right service.
Gateways handle cross-cutting concerns: authentication, rate limiting, request routing, protocol translation, response aggregation. The client talks to one endpoint. The gateway handles the complexity.
Examples: AWS API Gateway, Kong, NGINX. In interviews, mention the gateway when you have multiple backend services.