3xx Redirection
Go somewhere else for now, but don’t assume this new address is the permanent one.
Use 302 for temporary redirects when you are comfortable with traditional redirect behavior and the original URI should remain the one clients keep using.
GET https://api.example.test/pricing302 Found
# Headers
Location: https://api.example.test/spring-saleThe redirect is temporary, so the original URL remains the canonical entry point.
GET https://api.example.test/dashboard302 Found
# Headers
Location: https://api.example.test/status/maintenanceUsers are redirected for now, but the application plans to restore the original route.