A tiny subset of httpbin.org focused on redirects.
GET /redirect-to?url=<target>&status_code=<3xx> — redirect to target. status_code defaults to 302.GET /redirect/:n — n relative redirects, terminating at /get.GET /relative-redirect/:n — same as above.GET /absolute-redirect/:n — n redirects using absolute URLs.GET /get — terminating JSON response.GET /healthz — liveness probe.curl -i "https://httpbin.verycurious.xyz/redirect-to?url=https://example.com" curl -i "https://httpbin.verycurious.xyz/redirect-to?url=https://example.com&status_code=307" curl -iL "https://httpbin.verycurious.xyz/redirect/3"