# Broken Link Checker Redirect Tracer Scraper

**Use case:** 

Trace HTTP redirects and redirect chains for any list of URLs. Reports each hop, final destination URL, status codes, and response times. Export to JSON or CSV.

## Input

```json
{
  "urls": [
    "http://apify.com",
    "https://bit.ly/apify",
    "https://google.com",
    "https://en.wikipedia.org/wiki/HTTP_301"
  ],
  "timeout": 12000,
  "followRedirects": true,
  "maxRedirects": 15,
  "slowThreshold": 2000
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "url"
  },
  "statusCode": {
    "label": "Status Code",
    "format": "number"
  },
  "statusText": {
    "label": "Status Text",
    "format": "string"
  },
  "isBroken": {
    "label": "Is Broken",
    "format": "boolean"
  },
  "isRedirect": {
    "label": "Is Redirect",
    "format": "boolean"
  },
  "redirectUrl": {
    "label": "Redirect URL",
    "format": "url"
  },
  "redirectChain": {
    "label": "Redirect Chain",
    "format": "array"
  },
  "responseTimeMs": {
    "label": "Response Time (ms)",
    "format": "number"
  },
  "requestTimeoutMs": {
    "label": "Request Timeout (ms)",
    "format": "number"
  },
  "isSlow": {
    "label": "Is Slow",
    "format": "boolean"
  },
  "isProtected": {
    "label": "Is Protected",
    "format": "boolean"
  },
  "finalUrl": {
    "label": "Final URL",
    "format": "url"
  },
  "checkedTimestamp": {
    "label": "Checked At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Broken Link Checker](https://apify.com/parseforge/broken-link-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/broken-link-checker) to learn more, explore other use cases, and run it yourself.