# YouTube Channel Scraper

**Use case:** 

Scrape any YouTube channel: subscribers, recent uploads and momentum signals. Paste a handle or channel URL. JSON or CSV, no API key.

## Input

```json
{
  "mode": "channels",
  "channels": [
    "@JeffSu"
  ],
  "maxRecentVideosPerChannel": 50,
  "includeShortsInVideoList": true,
  "includeTranscripts": false,
  "videos": [],
  "enrichChannel": true,
  "includeTranscript": false,
  "includeCommentsSample": false,
  "commentsSamplePerVideo": 0,
  "playlists": [],
  "maxVideosPerPlaylist": 100,
  "searchQuery": "AI coding tutorials",
  "videoType": "any",
  "country": "US",
  "language": "en",
  "dateRange": "any",
  "uploadOrder": "relevance",
  "rankBy": "breakoutPotential",
  "maxResults": 50,
  "maxShortsPerChannel": 50,
  "oldestPostDate": "",
  "outputProfile": "signals",
  "watchlistName": "",
  "enableCommentThemes": true,
  "rateLimitPerSecond": 2,
  "circuitBreakerThreshold": 3,
  "runtimeBudgetSeconds": 3000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "channelHandle": {
    "label": "Channel handle"
  },
  "channelName": {
    "label": "Channel name"
  },
  "subscribers": {
    "label": "Subscribers"
  },
  "signalProfile": {
    "label": "Signal profile"
  },
  "signalProfileStrength": {
    "label": "Signal profile strength"
  },
  "momentumScore": {
    "label": "Momentum score"
  },
  "momentumBand": {
    "label": "Momentum band"
  },
  "momentumDrivers": {
    "label": "Momentum drivers"
  },
  "channelUrl": {
    "label": "Channel url"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Scraper: Attention Queue, Breakout Detection](https://apify.com/ryanclinton/youtube-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/youtube-scraper) to learn more, explore other use cases, and run it yourself.