# Bulk Monitor for Affiliate Link Status

**Use case:** 

Check the status of multiple Amazon affiliate links simultaneously. Get insights on 404 errors and redirect chains with straightforward data returns.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.amazon.com/dp/B08N5WRWNW"
    },
    {
      "url": "https://www.amazon.com/dp/B09G9HD1Q3"
    },
    {
      "url": "https://www.amazon.com/dp/B07HGGSNKQ"
    }
  ],
  "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.