# YouTube channel stats from a list of video links

**Use case:** 

For outreach lists built from videos: paste video links and get the uploading channel's subscriber count, total views, video count, join date and country, with the video id each channel was found from. Export as JSON, CSV or Excel.

## Input

```json
{
  "channels": [
    "https://www.youtube.com/watch?v=aircAruvnKk",
    "https://youtu.be/jNQXAC9IVRw",
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  ],
  "maxChannels": 100,
  "monitoringMode": false,
  "monitorMode": "any-change",
  "resetMonitoringState": false,
  "minSubscribers": 0,
  "maxSubscribers": 0,
  "onlyVerified": false,
  "keywordMatch": "any",
  "useProxy": true
}
```

## Output

```json
{
  "channelTitle": {
    "label": "Channel Title",
    "format": "string"
  },
  "handle": {
    "label": "Handle",
    "format": "string"
  },
  "subscriberCount": {
    "label": "Subscriber Count",
    "format": "string"
  },
  "subscriberCountText": {
    "label": "Subscriber Count Text",
    "format": "string"
  },
  "subscriberCountIsRounded": {
    "label": "Subscriber Count Is Rounded",
    "format": "string"
  },
  "totalViews": {
    "label": "Total Views",
    "format": "string"
  },
  "videoCount": {
    "label": "Video Count",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "joinedDate": {
    "label": "Joined Date",
    "format": "string"
  },
  "subscriberDelta": {
    "label": "Subscriber Delta",
    "format": "string"
  },
  "totalViewsDelta": {
    "label": "Total Views Delta",
    "format": "string"
  },
  "videoCountDelta": {
    "label": "Video Count Delta",
    "format": "string"
  },
  "channelId": {
    "label": "Channel Id",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  },
  "input": {
    "label": "Input",
    "format": "string"
  },
  "inputType": {
    "label": "Input Type",
    "format": "string"
  },
  "resolvedFromVideoId": {
    "label": "Resolved From Video Id",
    "format": "string"
  },
  "channelUrl": {
    "label": "Channel Url",
    "format": "string"
  },
  "channelMatchesInput": {
    "label": "Channel Matches Input",
    "format": "string"
  },
  "subscriberCountPrecision": {
    "label": "Subscriber Count Precision",
    "format": "string"
  },
  "totalViewsText": {
    "label": "Total Views Text",
    "format": "string"
  },
  "videoCountText": {
    "label": "Video Count Text",
    "format": "string"
  },
  "joinedDateText": {
    "label": "Joined Date Text",
    "format": "string"
  },
  "isVerified": {
    "label": "Is Verified",
    "format": "string"
  },
  "channelBadge": {
    "label": "Channel Badge",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "keywords": {
    "label": "Keywords",
    "format": "string"
  },
  "links": {
    "label": "Links",
    "format": "string"
  },
  "isFamilySafe": {
    "label": "Is Family Safe",
    "format": "string"
  },
  "avatarUrl": {
    "label": "Avatar Url",
    "format": "string"
  },
  "isFirstCheck": {
    "label": "Is First Check",
    "format": "string"
  },
  "previousCheckedAt": {
    "label": "Previous Checked At",
    "format": "string"
  },
  "previousSubscriberCount": {
    "label": "Previous Subscriber Count",
    "format": "string"
  },
  "subscriberDeltaIsApproximate": {
    "label": "Subscriber Delta Is Approximate",
    "format": "string"
  },
  "previousTotalViews": {
    "label": "Previous Total Views",
    "format": "string"
  },
  "previousVideoCount": {
    "label": "Previous Video Count",
    "format": "string"
  },
  "changedFields": {
    "label": "Changed Fields",
    "format": "string"
  },
  "searchUrl": {
    "label": "Search Url",
    "format": "string"
  },
  "note": {
    "label": "Note",
    "format": "string"
  },
  "channelsRead": {
    "label": "Channels Read",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Subscriber Count Scraper - Channel Statistics Monitor](https://apify.com/neverempty/youtube-subscriber-count-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/youtube-subscriber-count-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/youtube-subscriber-count-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
