# URL Health Check for B2B Blog Posts

**Use case:** 

Check the HTTP status of B2B blog posts. Identify broken links and redirects, and get the results in an exportable format.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://blog.hubspot.com/marketing/content-marketing-guide"
    },
    {
      "url": "https://blog.salesforce.com/"
    },
    {
      "url": "https://www.marketo.com/articles/"
    }
  ],
  "maxConcurrency": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "Original URL",
    "format": "string"
  },
  "statusCode": {
    "label": "Status Code",
    "format": "integer"
  },
  "statusMessage": {
    "label": "Status Message",
    "format": "string"
  },
  "isRedirect": {
    "label": "Is Redirect",
    "format": "boolean"
  },
  "redirectCount": {
    "label": "Redirect Count",
    "format": "integer"
  },
  "finalUrl": {
    "label": "Final URL",
    "format": "string"
  },
  "responseTime": {
    "label": "Response Time (ms)",
    "format": "integer"
  },
  "contentType": {
    "label": "Content Type",
    "format": "string"
  },
  "contentLength": {
    "label": "Content Length",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk URL Status Checker – Broken Link & Redirect Audit](https://apify.com/logiover/bulk-url-status-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/bulk-url-status-checker) to learn more, explore other use cases, and run it yourself.