Skip to content

Latest commit

 

History

History

api-gateway

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
layout title folder permalink categories tags
pattern
API Gateway
api-gateway
/patterns/api-gateway/
Architectural
Cloud distributed
Decoupling

Intent

Aggregate calls to microservices in a single location: the API Gateway. The user makes a single call to the API Gateway, and the API Gateway then calls each relevant microservice.

Class diagram

alt text

Applicability

Use the API Gateway pattern when

  • you're also using the Microservices pattern and need a single point of aggregation for your microservice calls

Credits