# Website Migration Broken Link QA

**Use case:** 

Run a controlled crawl after a site migration to catch broken internal links before they hurt SEO or conversions.

## Input

```json
{
  "startUrl": "https://www.apify.com/",
  "maxPages": 50,
  "maxLinksToCheck": 500,
  "checkExternalLinks": true,
  "maxConcurrency": 10,
  "requestTimeoutSecs": 20,
  "retryCount": 2,
  "useProxy": false,
  "proxyGroup": "datacenter",
  "timeoutFallbackToDirect": true
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "statusCode": {
    "label": "Status"
  },
  "statusText": {
    "label": "Error"
  },
  "isBrokenConfirmed": {
    "label": "Confirmed"
  },
  "errorType": {
    "label": "Error Type"
  },
  "sourceUrl": {
    "label": "Found On",
    "format": "link"
  },
  "anchorText": {
    "label": "Link Text"
  },
  "linkType": {
    "label": "Type"
  },
  "severity": {
    "label": "Severity"
  },
  "retryCountUsed": {
    "label": "Retries"
  },
  "usedProxy": {
    "label": "Proxy"
  },
  "finalMethod": {
    "label": "Method"
  }
}
```

## About this Actor

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