# Blog Outbound Link Extractor

**Use case:** 

Scrape outbound links from blog posts and landing pages to review references, partners, and broken-link opportunities.

## Input

```json
{
  "urls": [
    "https://blog.cloudflare.com",
    "https://openai.com/news",
    "https://stripe.com/blog"
  ]
}
```

## Output

```json
{
  "url": {
    "label": "Source URL"
  },
  "totalLinks": {
    "label": "Total"
  },
  "internalLinks": {
    "label": "Internal"
  },
  "externalLinks": {
    "label": "External"
  },
  "nofollowLinks": {
    "label": "Nofollow"
  },
  "uniqueExternalDomains": {
    "label": "Ext. Domains"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [Link Extractor](https://apify.com/automation-lab/link-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/link-extractor) to learn more, explore other use cases, and run it yourself.