# Crawl Full Link Graph of Best Buy E-commerce Store

**Use case:** 

Extract all internal and outbound links from Best Buy, including anchor text and rel flags. Get a detailed link graph in CSV/JSON format.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.bestbuy.com"
    }
  ],
  "linkScope": "all",
  "crawlScope": "same-domain",
  "maxPagesToCrawl": 200,
  "maxConcurrency": 10,
  "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.