303
See Other
Redirection
Description
The response to the request can be found under another URI using a GET method
Common Usage
Used after POST to redirect to a GET endpoint (Post/Redirect/Get pattern)
Example Response
How this status code appears in HTTP responses
HTTP Response Header
HTTP/1.1 303 See OthercURL Example
curl -I https://example.com
# Returns: HTTP/1.1 303 See OtherRedirection Response
This is a redirection response indicating further action needs to be taken to complete the request.
Related Redirection Codes
Other codes in the same category