HTTP 307 Mock Endpoint

HTTP 307 Temporary Redirect instructs the client to repeat the request at a different URL while preserving the HTTP method and body. Unlike 302 Found, which allows (and historically caused) method changes from POST to GET, 307 guarantees the redirect preserves the exact request. This is critical for API redirects, payment processing flows, and any scenario where a POST must remain a POST through the redirect.

Try it (live endpoint)

Response includes the status code, standard headers (including Content-Type), and a small diagnostic JSON body describing the request and returned status.

Simulator URL (copy in the app after load — not a normal link):

https://httpstatus.com/api/status/307

Example request:

curl -i "https://httpstatus.com/api/status/307"
Try in playground