# Bulk Short URL Expander

**Use case:** 

Expand bit.ly, t.co, TinyURL, and other shortened links in bulk to reveal final URLs, domains, status codes, and redirect counts.

## Input

```json
{
  "urls": [
    "https://bit.ly/3gP3QZk",
    "https://tinyurl.com/4-digits",
    "https://t.co/example"
  ]
}
```

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