# Find creator channels in YouTube related video cards

**Use case:** 

Collect related-video listings and their available author details from selected seed videos. Group the exported channel IDs and profile links in your own tools to identify creators appearing in that recommendation sample.

## Input

```json
{
  "inputList": [
    "https://www.youtube.com/watch?v=jNQXAC9IVRw"
  ],
  "pagesPerInput": 1
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "id": {
    "label": "ID",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "thumbnail_url": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "thumbnails.url": {
    "label": "Thumbnails / URL",
    "format": "array"
  },
  "thumbnails.width": {
    "label": "Thumbnails / Width",
    "format": "array"
  },
  "thumbnails.height": {
    "label": "Thumbnails / Height",
    "format": "array"
  },
  "duration_seconds": {
    "label": "Duration Seconds",
    "format": "integer"
  },
  "duration_text": {
    "label": "Duration Text",
    "format": "string"
  },
  "views": {
    "label": "Views",
    "format": "integer"
  },
  "views_text": {
    "label": "Views Text",
    "format": "string"
  },
  "published_text": {
    "label": "Published Text",
    "format": "string"
  },
  "badges": {
    "label": "Badges",
    "format": "array"
  },
  "is_live": {
    "label": "Is Live",
    "format": "boolean"
  },
  "is_upcoming": {
    "label": "Is Upcoming",
    "format": "boolean"
  },
  "is_premiere": {
    "label": "Is Premiere",
    "format": "boolean"
  },
  "is_members_only": {
    "label": "Is Members Only",
    "format": "boolean"
  },
  "stream_status": {
    "label": "Stream Status",
    "format": "string"
  },
  "scheduled_start_time": {
    "label": "Scheduled Start Time",
    "format": "integer"
  },
  "accessibility_text": {
    "label": "Accessibility Text",
    "format": "string"
  },
  "author.id": {
    "label": "Author / ID",
    "format": "text"
  },
  "author.name": {
    "label": "Author / Name",
    "format": "text"
  },
  "author.handle": {
    "label": "Author / Handle",
    "format": "text"
  },
  "author.url": {
    "label": "Author / URL",
    "format": "link"
  },
  "author.avatar_url": {
    "label": "Author / Avatar URL",
    "format": "image"
  },
  "author.avatar_thumbnails.url": {
    "label": "Author / Avatar Thumbnails / URL",
    "format": "array"
  },
  "author.avatar_thumbnails.width": {
    "label": "Author / Avatar Thumbnails / Width",
    "format": "array"
  },
  "author.avatar_thumbnails.height": {
    "label": "Author / Avatar Thumbnails / Height",
    "format": "array"
  },
  "author.is_verified": {
    "label": "Author / Is Verified",
    "format": "boolean"
  },
  "source_video.id": {
    "label": "Source Video / ID",
    "format": "text"
  },
  "source_video.url": {
    "label": "Source Video / URL",
    "format": "link"
  },
  "source_video.title": {
    "label": "Source Video / Title",
    "format": "text"
  },
  "source_video.channel_id": {
    "label": "Source Video / Channel ID",
    "format": "text"
  },
  "source_video.author": {
    "label": "Source Video / Author",
    "format": "text"
  },
  "source_video.views": {
    "label": "Source Video / Views",
    "format": "number"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Related Videos Scraper – Recommendations](https://apify.com/scrapingmonkey/youtube-related-videos-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapingmonkey/youtube-related-videos-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/scrapingmonkey/youtube-related-videos-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).
