# Bulk website health check workflow

**Use case:** 

Audit uptime and response time across multiple client, competitor, or campaign landing pages for reporting.

## Input

```json
{
  "urls": [
    "https://example.com",
    "https://www.wikipedia.org",
    "https://www.mozilla.org",
    "https://nodejs.org",
    "https://github.com"
  ]
}
```

## Output

```json
{
  "url": {
    "label": "URL"
  },
  "isUp": {
    "label": "Up"
  },
  "statusCode": {
    "label": "Status"
  },
  "responseTimeMs": {
    "label": "Response (ms)"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

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