# YouTube Channel Statistics Lookup

**Use case:** 

Look up a public YouTube channel by handle and export its profile, subscriber count, total views, video count, links, and observation time.

## Input

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

## 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.