# Affiliate & Outbound Links from Wirecutter

**Use case:** 

Extract external links and affiliate references from Wirecutter. Get a detailed list of URLs, anchor text, and link types.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.wirecutter.com"
    }
  ],
  "linkScope": "external",
  "crawlScope": "same-domain",
  "maxPagesToCrawl": 60,
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "targetUrl": {
    "label": "Target URL",
    "format": "string"
  },
  "anchorText": {
    "label": "Anchor text",
    "format": "string"
  },
  "linkType": {
    "label": "Link type",
    "format": "string"
  },
  "isNofollow": {
    "label": "Nofollow",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Link Graph & Outbound Links Crawler](https://apify.com/logiover/website-link-graph-crawler) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/website-link-graph-crawler) to learn more, explore other use cases, and run it yourself.