# Broken Link Checker: find dead links from a sitemap

**Use case:** 

Crawls every sitemap a site publishes and checks each URL, so you get dead links, redirect chains and pages the site's own robots.txt blocks.

## Input

```json
{
  "domains": [
    "apify.com"
  ],
  "checkUrlStatus": true,
  "maxUrlsToCheck": 300,
  "urlConcurrency": 8,
  "robotsAgent": "Googlebot",
  "maxUrlsPerSite": 5000,
  "maxSitemaps": 50,
  "maxDepth": 3,
  "onlyIssues": true,
  "siteConcurrency": 4,
  "requestTimeoutSecs": 20
}
```

## Output

```json
{
  "site": {
    "label": "Site"
  },
  "url": {
    "label": "Url"
  },
  "severity": {
    "label": "Severity"
  },
  "issues": {
    "label": "Issues"
  },
  "issueDetails": {
    "label": "Issue details"
  },
  "httpStatus": {
    "label": "Http status"
  },
  "finalUrl": {
    "label": "Final url"
  },
  "sitemap": {
    "label": "Sitemap"
  }
}
```

## About this Actor

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