# Bulk Broken Link Checker - Find 404s Across Your Site

**Use case:** 

Check hundreds of URLs for 404s and server errors in one run. Export to CSV for fixes.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://onescales.com/",
      "method": "GET"
    },
    {
      "url": "https://onescales.com/pages/contact",
      "method": "GET"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": []
  }
}
```

## Output

```json
{
  "url": {
    "label": "Initial URL",
    "format": "link"
  },
  "statusCode": {
    "label": "Status Code",
    "format": "number"
  },
  "isRedirect": {
    "label": "Redirect URL",
    "format": "text"
  },
  "redirectURL": {
    "label": "Redirect url"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [HTTP Status Code Checker](https://apify.com/onescales/simple-http-status-code-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/onescales/simple-http-status-code-checker) to learn more, explore other use cases, and run it yourself.