# Link Map for GitHub API Documentation

**Use case:** 

Extract and map all internal links from the GitHub API documentation. Get comprehensive details on link types and anchor text.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://docs.github.com"
    }
  ],
  "linkScope": "internal",
  "crawlScope": "same-domain",
  "maxPagesToCrawl": 150,
  "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.