# Check Website Links & Assets Before Release

**Use case:** 

Run release QA on a public page: detect broken links, images, scripts, and stylesheets with clear repair actions.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.iana.org/domains/reserved"
    }
  ],
  "includeExternalLinks": false,
  "maxTargetsPerPage": 10,
  "requestTimeoutSecs": 15
}
```

## Output

```json
{
  "sourceUrl": {
    "label": "Source page",
    "format": "string"
  },
  "sourceStatus": {
    "label": "Source HTTP status",
    "format": "integer"
  },
  "verdict": {
    "label": "Release QA verdict",
    "format": "string"
  },
  "checkedTargetCount": {
    "label": "Checked links and assets",
    "format": "integer"
  },
  "brokenTargetCount": {
    "label": "Broken targets",
    "format": "integer"
  },
  "brokenTargets": {
    "label": "Broken target evidence",
    "format": "array"
  },
  "recommendations": {
    "label": "Recommended next actions",
    "format": "array"
  },
  "chargeable": {
    "label": "Completed audit",
    "format": "boolean"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

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