# Monitor YouTube Channel Statistics in a Batch

**Use case:** 

Collect timestamped statistics for YouTube and Google Developers channels in one run, ready for scheduled comparisons in a spreadsheet or data pipeline.

## Input

```json
{
  "channels": [
    "@YouTube",
    "UC_x5XG1OV2P6uZZ5FSM9Ttw",
    "@YouTube"
  ],
  "maxItems": 2
}
```

## Output

```json
{
  "channelName": {
    "label": "Channel name",
    "format": "string"
  },
  "handle": {
    "label": "Handle",
    "format": "string"
  },
  "subscriberCount": {
    "label": "Subscribers",
    "format": "integer"
  },
  "totalViewCount": {
    "label": "Total views",
    "format": "integer"
  },
  "videoCount": {
    "label": "Videos",
    "format": "integer"
  },
  "joinedDate": {
    "label": "Joined date",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "channelUrl": {
    "label": "Channel URL",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed at",
    "format": "string"
  }
}
```

## About this Actor

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