Nothing yet — inputs you run here are remembered on this device.
Result appears here as you type
Nothing yet — inputs you run here are remembered on this device.
Result appears here as you type
Updated 2026-07-26
HTTP 302 Found signals a temporary redirect — the resource is at a different URL right now, but the original address should stay exactly where it is in search results, bookmarks, and caches. It's the right code whenever the redirect isn't meant to be permanent.
Classic uses are a login-required redirect (send the visitor to sign in, then back to where they were) or a short-lived maintenance page. If the move is actually permanent — a URL restructure or domain change — use 301 instead, so search engines transfer ranking to the new address rather than continuing to index the old one. For every other status code at once, use the full HTTP Status Codes reference.
302
302 Found — Redirection (3xx). The resource temporarily resides at a different URL.
301
HTTP 301 Moved Permanently — a PERMANENT redirect that transfers SEO ranking to the new URL.
curl -X POST https://thesnaptools.com/api/v1/tools/http-302 \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text":"302"}'