# Website Launch Status QA Workflow

**Use case:** 

Run a launch checklist across homepages, docs, pricing, login, and legacy URLs to catch downtime, 404s, and bad redirects.

## Input

```json
{
  "urls": [
    "https://example.com",
    "https://example.com/docs",
    "https://example.com/pricing",
    "https://example.com/login",
    "https://example.com/old-page"
  ]
}
```

## Output

```json
{
  "url": {
    "label": "URL"
  },
  "statusCode": {
    "label": "Status"
  },
  "statusText": {
    "label": "Status Text"
  },
  "isOk": {
    "label": "OK"
  },
  "responseTimeMs": {
    "label": "Response (ms)"
  },
  "redirectUrl": {
    "label": "Redirect"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

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