Skip to Content
Research with Our Labs
ReconnaissanceRedirect NavigationRedirect & Navigation – Endpoint

Redirect & Navigation – Endpoint

Base URL

https://api.rsch.io

Path

/api/v1/recon/redirect

Method

GET

Query Parameters

  • domainRequired. URL to trace, including scheme,
    for example https://bit.ly/penjaringanwirausaha2022.

Although the parameter is named domain, you should pass a full URL for redirect analysis.

Example Request

GET "https://api.rsch.io/api/v1/recon/redirects?domain=https://bit.ly/penjaringanwirausaha2022"

Example Response

{ "status": "success", "request_id": "a9fdde79-1e67-491b-bf6b-371cdeede81a", "date": "2025-11-26 07:02:30", "duration": 0.585033956000004, "data": { "input": "https://bit.ly/penjaringanwirausaha2022", "url": "https://bit.ly/penjaringanwirausaha2022", "final_url": "https://docs.google.com/forms/d/e/1FAIpQLSdPwtJhYU50r-MA98iVebvFfh3TUPfnDoMc3PERnAdILpL5IQ/viewform?usp=send_form", "status_code": 200, "host": "docs.google.com", "analysis": { "http_redirects": [ { "from": "https://bit.ly/penjaringanwirausaha2022", "to": "https://forms.gle/FzEps8qrcw6xNUpX8", "status_code": 301 }, { "from": "https://forms.gle/FzEps8qrcw6xNUpX8", "to": "https://docs.google.com/forms/d/e/1FAIpQLSdPwtJhYU50r-MA98iVebvFfh3TUPfnDoMc3PERnAdILpL5IQ/viewform?usp=send_form", "status_code": 302 } ], "candidate_redirects": [ { "url": "https://accounts.google.com/AccountChooser?continue=https://docs.google.com/forms/d/e/1FAIpQLSdPwtJhYU50r-MA98iVebvFfh3TUPfnDoMc3PERnAdILpL5IQ/viewform?usp%3Dsend_form&service=wise", "path": "/AccountChooser", "params": ["continue"], "internal": false, "has_user_controlled_target": true } ], "summary": { "total_links": 5, "redirect_chain_length": 2, "candidate_redirect_endpoints": 1 } } } }
  • analysis.http_redirects shows the actual HTTP redirect chain.
  • analysis.candidate_redirects highlights endpoints where query parameters may control navigation.
Last updated on