# Get Contributor Leads from a GitHub Repo

**Use case:** 

Pull a repository’s contributors as developer leads: name, company, location, followers, recovered commit email and a 0-100 lead score.

## Input

```json
{
  "mode": "repositoryContributors",
  "searchQueries": [
    "llm agent framework"
  ],
  "repositories": [
    "langchain-ai/langchain"
  ],
  "includeForks": false,
  "onlyActive": false,
  "userType": "user",
  "sortBy": "best-match",
  "sortOrder": "desc",
  "maxResults": 100,
  "maxResultsPerQuery": 0,
  "peopleSource": "contributors",
  "extractCommitEmails": true,
  "enrichContactEmails": false,
  "includeUserRepos": false,
  "maxReposPerUser": 10,
  "includeReadme": false,
  "includeLanguages": false,
  "includeLatestRelease": false,
  "includeContributorsCount": false,
  "includeOwnerProfile": false,
  "withEmailOnly": false,
  "hireableOnly": false,
  "monitorMode": false,
  "monitorStoreName": "github-monitor",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "fullName": {
    "label": "Repo"
  },
  "login": {
    "label": "Login"
  },
  "name": {
    "label": "Name"
  },
  "language": {
    "label": "Language"
  },
  "stars": {
    "label": "Stars"
  },
  "forks": {
    "label": "Forks"
  },
  "followers": {
    "label": "Followers"
  },
  "company": {
    "label": "Company"
  },
  "location": {
    "label": "Location"
  },
  "primaryEmail": {
    "label": "Email"
  },
  "hireable": {
    "label": "Hireable"
  },
  "leadScore": {
    "label": "Lead"
  },
  "popularityScore": {
    "label": "Popularity"
  },
  "repoUrl": {
    "label": "Repo URL",
    "format": "link"
  },
  "userUrl": {
    "label": "Profile URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [GitHub Scraper - Repos, Developers & Contact Leads](https://apify.com/scrapesage/github-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/github-scraper) to learn more, explore other use cases, and run it yourself.