Team Quickex
August 29, 2025
~1 min read
2xx Success
4xx Client Error
5xx Server Error
Quickex uses standard HTTP status codes to indicate the result of a request:
2xx — success,
4xx — error in request data/permissions,
5xx — server-side error (rare).
Some 4xx responses include a short
error.code and message for programmatic handling.
error.code and message for programmatic handling.
Handling recommendations
- Log the HTTP status and the response body.
- For 429 and temporary 5xx, use retries with exponential backoff (backoff + jitter).
- Validate required parameters before sending the request.
Information summary
Quickex uses standard HTTP codes. 2xx — success; 4xx — validation/permission/client errors; 5xx — server errors (rare). Handled 4xx responses include an error code and message. For 429 and temporary 5xx, use exponential backoff with jitter. Always log the status and response body.