OPERATIONS
API Status Codes and Error Handling
Use these standard responses to build reliable retry and alert logic.
| Status | Meaning | Action |
|---|---|---|
| 200 | Request successful | Parse output and continue. |
| 401 | Invalid or missing API key | Rotate key and verify auth header format. |
| 429 | Rate limit reached | Apply exponential backoff and token bucket control. |
| 500 | Upstream execution failure | Retry with jitter and trigger incident logging. |
| 503 | Temporary lane congestion | Fail over to alternate route group. |