Priority
Deterministic multi-provider failover in priority order.
The Priority strategy tries providers in the order you define. If the first provider fails (timeout, rate limit, 5xx error), the request automatically goes to the next provider in line.
In the API, this strategy uses "type": "fallback" inside default_strategy. The dashboard refers to it as Priority.
Best for: High availability setups and automatic recovery from provider outages.
Requests go to the highest-priority provider (lowest priority number). On failure, Gateway automatically retries with the next provider in the list, continuing until a provider succeeds or all providers are exhausted.
Gateway tracks provider health automatically — if a provider accumulates failures, it is temporarily skipped so requests aren’t wasted on a provider that’s down.