# Affiliate Redirect Chain Monitor

**Use case:** 

Monitor affiliate, campaign, and partner short links to capture full redirect chains and verify that every URL reaches the expected landing page.

## Input

```json
{
  "urls": [
    "https://bit.ly/apify-demo",
    "https://tinyurl.com/apify-cloud",
    "https://shorturl.at/apify"
  ]
}
```

## Output

```json
{
  "originalUrl": {
    "label": "Original URL"
  },
  "finalUrl": {
    "label": "Final URL"
  },
  "finalDomain": {
    "label": "Final Domain"
  },
  "redirectCount": {
    "label": "Redirects"
  },
  "finalStatusCode": {
    "label": "Status"
  },
  "expandTimeMs": {
    "label": "Time (ms)"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [URL Shortener Expander](https://apify.com/automation-lab/url-shortener-expander) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/url-shortener-expander) to learn more, explore other use cases, and run it yourself.