HTTP 302 — Found
3xx Redirection
What it means
A temporary redirect. The original URL should still be used for future requests.
What to do about it
If the move is permanent, use 301 instead — a 302 tells search engines to keep indexing the old URL. For a temporary move where the method must not change, prefer 307.
Where it sits
302 belongs to the 3xx family: Further action is needed to complete the request — usually following a redirect.
HTTP/1.1 302 Found
Checking it yourself
# see the status code and headers only
curl -sI https://example.com/path
# follow redirects and print each hop
curl -sIL -o /dev/null -w "%{http_code} %{url_effective}\n" https://example.com/path
# JavaScript
const r = await fetch(url);
console.log(r.status, r.statusText);