Sozu Cluster Configuration
Configuration for a backend cluster in the Sōzu HTTP reverse proxy. A cluster groups multiple backend server instances that receive forwarded traffic from Sozu frontends.
ProxyReverse ProxyLoad BalancingRustOpen-Source
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/sozu/json-schema/sozu-cluster-schema.json",
"title": "Sozu Cluster Configuration",
"description": "Configuration for a backend cluster in the Sōzu HTTP reverse proxy. A cluster groups multiple backend server instances that receive forwarded traffic from Sozu frontends.",
"type": "object",
"properties": {
"cluster_id": {
"type": "string",
"description": "Unique identifier for the cluster.",
"example": "my-app-cluster"
},
"sticky_session": {
"type": "boolean",
"description": "Whether to enable sticky session (session affinity) for this cluster.",
"default": false
},
"https_redirect": {
"type": "boolean",
"description": "Whether to redirect HTTP requests to HTTPS for this cluster.",
"default": false
},
"load_balancing": {
"type": "string",
"enum": ["RoundRobin", "Random", "LeastConnections", "PowerOfTwo"],
"description": "Load balancing algorithm for distributing requests across backends.",
"default": "RoundRobin"
},
"proxy_protocol": {
"type": "string",
"enum": ["None", "V1", "V2"],
"description": "PROXY protocol version to send to backends.",
"default": "None"
},
"backends": {
"type": "array",
"description": "List of backend server instances in this cluster.",
"items": {
"type": "object",
"properties": {
"backend_id": {
"type": "string",
"description": "Unique identifier for this backend instance."
},
"address": {
"type": "string",
"description": "IP address or hostname of the backend server."
},
"port": {
"type": "integer",
"description": "TCP port of the backend server.",
"minimum": 1,
"maximum": 65535
},
"weight": {
"type": "integer",
"description": "Relative weight for load balancing (higher = more traffic).",
"minimum": 0,
"default": 100
},
"connection_timeout": {
"type": "integer",
"description": "Connection timeout to backend in milliseconds.",
"minimum": 0
}
},
"required": ["backend_id", "address", "port"]
}
}
},
"required": ["cluster_id"]
}
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/sozu-cluster"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no email required.
A second provider on the same verified email joins the account you already have.