Headerbased
Headerbased, often written as header-based, refers to a design approach in which processing, routing, or decision-making is driven primarily by values found in HTTP headers. In this approach, header fields convey metadata such as authentication tokens, routing hints, content types, or user context, enabling components to act without relying on the request path or query parameters.
Common use cases include header-based routing and load balancing, where reverse proxies or load balancers direct
Implementation is typically found in API gateways, reverse proxies, and load balancers. Popular platforms support header-based
Advantages of headerbased include statelessness, flexible routing without changing URLs, and easier experimentation (for example, A/B
See also: HTTP headers, header-based routing, API gateway, reverse proxy, load balancer.