# Find every repo a GitHub organisation owns

**Use case:** 

List an org's full public repo portfolio: stars, language, licence, last push and open issues, ranked by stars. No GitHub token required.

## Input

```json
{
  "searchQueries": [
    "topic:web-scraping stars:>500"
  ],
  "owners": [
    "vercel"
  ],
  "sortBy": "stars",
  "maxResultsPerQuery": 100,
  "includeContributors": false,
  "includeIssues": false,
  "issueState": "open",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "fullName": {
    "label": "Repository",
    "format": "text"
  },
  "login": {
    "label": "Login",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "owner": {
    "label": "Owner",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "forks": {
    "label": "Forks",
    "format": "number"
  },
  "openIssues": {
    "label": "Open issues",
    "format": "number"
  },
  "license": {
    "label": "License",
    "format": "text"
  },
  "pushedAt": {
    "label": "Last push",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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