# Bulk HTTP Status Checker

**Use case:** 

Check HTTP status codes, redirects, response times, and errors for a list of URLs in one quick website availability audit.

## Input

```json
{
  "urls": [
    "https://www.google.com",
    "https://en.wikipedia.org/wiki/Web_scraping",
    "https://example.com"
  ]
}
```

## 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.