# Google Codecov Coverage Stats Scraper

**Use case:** 

Scrape Codecov coverage stats for Google's active GitHub repositories. Get coverage percentages and repo details as structured data.

## Input

```json
{
  "mode": "repos",
  "owner": "google",
  "maxItems": 5,
  "repo": "",
  "provider": "github",
  "activeOnly": true
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "fullName": {
    "label": "Full Name",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "provider": {
    "label": "Provider",
    "format": "text"
  },
  "owner": {
    "label": "Owner",
    "format": "text"
  },
  "ownerUsername": {
    "label": "Owner Username",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "branch": {
    "label": "Branch",
    "format": "text"
  },
  "isPrivate": {
    "label": "Is Private",
    "format": "text"
  },
  "activated": {
    "label": "Activated",
    "format": "text"
  },
  "active": {
    "label": "Active",
    "format": "text"
  },
  "totalCoverage": {
    "label": "Total Coverage",
    "format": "text"
  },
  "lineCoverage": {
    "label": "Line Coverage",
    "format": "text"
  },
  "branchCoverage": {
    "label": "Branch Coverage",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Codecov Code Coverage Stats Scraper](https://apify.com/parseforge/codecov-stats-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/codecov-stats-scraper) to learn more, explore other use cases, and run it yourself.