v1

latestOpenAPI 3.1.0MIT2026-07-132176113.0 KB
redirectcheck

Check the redirection chain of a given URL

post/redirectcheck

Request body

urlstring required

Target URL

proxyCountrystring

Proxy country code to route the request

Example request

{
  "url": "https://example.com",
  "proxyCountry": "us"
}

Response

Successfully retrieved redirect chain

timestampnumber required

Timestamp of the request in milliseconds

apiStatus'success' | 'failure' required

API status message

apiCodenumber required

API status code

Example response

{
  "timestamp": 1763372588297,
  "apiStatus": "success",
  "apiCode": 200,
  "meta": {
    "url": "example.com",
    "test": {
      "id": "mxqx9v9y0742lap6altwdteqd28t23nq"
    }
  },
  "data": [
    {
      "url": "http://example.com/",
      "status": 301,
      "headers": [
        {
          "name": "location",
          "value": "https://example.com/"
        },
        {
          "name": "date",
          "value": "Mon, 29 Aug 2022 07:17:31 GMT"
        }
      ]
    }
  ]
}