# Find broken links from a URL list

**Use case:** 

Check sitemap or crawler URL lists for 404s, 5xx errors, redirect chains, and slow responses for SEO QA.

## Input

```json
{
  "urls": [
    "https://apify.com",
    "https://docs.apify.com",
    "https://example.com/not-found",
    "https://example.com/missing-page"
  ],
  "maxUrls": 100,
  "followRedirects": true,
  "maxRedirects": 10,
  "timeoutMs": 15000,
  "concurrency": 10,
  "userAgent": "Mozilla/5.0 (compatible; BulkUrlStatusChecker/0.1; +https://apify.com)"
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type"
  },
  "inputUrl": {
    "label": "Input URL"
  },
  "finalUrl": {
    "label": "Final URL"
  },
  "status": {
    "label": "Status"
  },
  "statusCode": {
    "label": "Code"
  },
  "statusText": {
    "label": "Status text"
  },
  "ok": {
    "label": "OK"
  },
  "broken": {
    "label": "Broken"
  },
  "redirected": {
    "label": "Redirected"
  },
  "redirectCount": {
    "label": "Redirects"
  },
  "hasSeoIssue": {
    "label": "SEO issue"
  },
  "seoIssues": {
    "label": "Issue flags"
  },
  "responseTimeMs": {
    "label": "Time (ms)"
  },
  "contentType": {
    "label": "Content type"
  },
  "errorType": {
    "label": "Error"
  }
}
```

## About this Actor

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