# Open Source Competitor Watchlist

**Use case:** 

Track selected GitHub repositories to compare stars, forks, languages, licenses, and recent updates across an open-source competitor list.

## Input

```json
{
  "mode": "repos",
  "urls": [
    "https://github.com/facebook/react",
    "https://github.com/vercel/next.js",
    "https://github.com/microsoft/playwright"
  ],
  "searchQuery": "machine learning",
  "trendingSince": "daily",
  "trendingLanguage": "",
  "maxResults": 25
}
```

## Output

```json
{
  "fullName": {
    "label": "Repository",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "stars": {
    "label": "⭐ Stars",
    "format": "number"
  },
  "forks": {
    "label": "🍴 Forks",
    "format": "number"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "license": {
    "label": "License",
    "format": "text"
  },
  "updatedAt": {
    "label": "Updated",
    "format": "text"
  }
}
```

## About this Actor

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