HTTP 303 — See Other

The response to the request can be found under another URI using a GET method

When to use it

Use status 303 when this is the correct HTTP response semantic: The response to the request can be found under another URI using a GET method

Request and response example

GET /old-resource HTTP/1.1
Host: api.example.com

HTTP/1.1 303 See Other
Location: /new-resource

Related status codes

300, 301, 302, 304

References

MDN · RFC 9110