302 Found

Look up a status, pick the right one for an API, or hit a live endpoint that actually returns it. Add ?code=418 to this URL and the response is that status — useful for curl, interceptors, and “what does my client do on 503?” Nothing here phones home except the Try it fetch to this same page.

Which class?

302

Found

Redirection · RFC 9110

Temporary redirect. In practice browsers often switch the method to GET, like old 302/303 behavior.

When to use

Login bounce, short-lived URL moves when changing to GET is acceptable.

Don’t

To keep the original method, use 307. For a permanent move, 301 or 308.

Live URL

curl -i https://corecoding.com/utilities/http-status.php?code=302


    

Code use cases