# Find Dead Links on Nonprofit Websites

**Use case:** 

Identify and report 404 errors on nonprofit and charity sites. Export link audits with source pages and their status codes.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.redcross.org"
    }
  ],
  "maxPagesToCrawl": 50,
  "checkExternalLinks": false,
  "onlyBroken": true,
  "maxConcurrency": 10
}
```

## Output

```json
{
  "sourceUrl": {
    "label": "Source page",
    "format": "link"
  },
  "linkUrl": {
    "label": "Link URL",
    "format": "link"
  },
  "anchorText": {
    "label": "Anchor text",
    "format": "text"
  },
  "linkType": {
    "label": "Link type",
    "format": "text"
  },
  "statusCode": {
    "label": "Status code",
    "format": "number"
  },
  "ok": {
    "label": "OK",
    "format": "boolean"
  }
}
```

## About this Actor

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