# Broken Link Checker Website Audit Scraper

**Use case:** 

Check a list of website URLs for broken links, 404s, redirects, and slow pages. Get status codes, response times, and redirect chains. Export to JSON or CSV.

## Input

```json
{
  "urls": [
    "https://apify.com",
    "https://apify.com/pricing",
    "https://apify.com/store",
    "https://docs.apify.com"
  ],
  "timeout": 10000,
  "followRedirects": true,
  "maxRedirects": 10,
  "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.