# Website migration redirect audit

**Use case:** 

Validate migration URL maps with status codes, final URLs, redirect chains, broken links, and response timing.

## Input

```json
{
  "urls": [
    "https://example.com/",
    "https://www.iana.org/domains/example",
    "https://httpstat.us/404"
  ],
  "urlsText": "https://example.com/\nhttps://www.iana.org/domains/example\nhttps://httpstat.us/500",
  "maxUrls": 20,
  "maxConcurrency": 20,
  "timeoutSecs": 15,
  "followRedirects": true,
  "method": "head-get-fallback",
  "includeHtmlSignals": true,
  "includeHeaders": false
}
```

## Output

```json
{
  "inputUrl": {
    "label": "Input URL"
  },
  "normalizedUrl": {
    "label": "Normalized URL"
  },
  "statusCode": {
    "label": "Status"
  },
  "finalUrl": {
    "label": "Final URL"
  },
  "redirectChain": {
    "label": "Redirect chain"
  },
  "redirectCount": {
    "label": "Redirects"
  },
  "isRedirect": {
    "label": "Redirect"
  },
  "checkedAt": {
    "label": "Checked at"
  }
}
```

## About this Actor

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