Status codes
Arbitrary HTTP statuses on demand.
Returns the requested HTTP status code. Body is JSON describing the response, except for 204 and 304 which return no body per RFC 9110.
code
HTTP status code. Range: 100–599. Some protocol-switching codes (e.g. 101) are rejected with a 400.
Useful for testing how clients handle status codes they rarely see in production:
gateway timeouts, conflict responses, redirect codes without Location headers,
and the occasional 418.
Codes outside 100–599 are clamped. Codes that the platform cannot legally return as a response status (currently just 101) are rejected with a 400 and an explanation.