# YouTube Home Automation Data Extraction API

**Use case:** 

A ready-to-run example that reads a YouTube creator profile's uploads for home automation, with normalized fields on each returned row.

## Input

```json
{
  "keyword": "home automation",
  "sort_by": "rating",
  "max_results": 50
}
```

## Output

```json
{
  "video_thumbnail_url": {
    "label": "Video Thumbnail URL",
    "format": "string"
  },
  "video_title": {
    "label": "Video Title",
    "format": "string"
  },
  "video_url": {
    "label": "Video URL",
    "format": "string"
  },
  "video_id": {
    "label": "Video ID",
    "format": "string"
  },
  "video_description": {
    "label": "Video Description",
    "format": "string"
  },
  "video_duration_seconds": {
    "label": "Video Duration Seconds",
    "format": "integer"
  },
  "video_published_at": {
    "label": "Video Published At",
    "format": "string"
  },
  "video_categories": {
    "label": "Video Categories",
    "format": "array"
  },
  "video_tags": {
    "label": "Video Tags",
    "format": "array"
  },
  "video_view_count": {
    "label": "Video View Count",
    "format": "integer"
  },
  "video_like_count": {
    "label": "Video Like Count",
    "format": "integer"
  },
  "video_comment_count": {
    "label": "Video Comment Count",
    "format": "integer"
  },
  "video_width": {
    "label": "Video Width",
    "format": "integer"
  },
  "video_height": {
    "label": "Video Height",
    "format": "integer"
  },
  "video_fps": {
    "label": "Video FPS",
    "format": "number"
  },
  "channel_avatar_url": {
    "label": "Channel Avatar URL",
    "format": "string"
  },
  "channel_name": {
    "label": "Channel Name",
    "format": "string"
  },
  "channel_handle": {
    "label": "Channel Handle",
    "format": "string"
  },
  "channel_url": {
    "label": "Channel URL",
    "format": "string"
  },
  "channel_id": {
    "label": "Channel ID",
    "format": "string"
  },
  "channel_joined_date": {
    "label": "Channel Joined Date",
    "format": "string"
  },
  "channel_country": {
    "label": "Channel Country",
    "format": "string"
  },
  "channel_description": {
    "label": "Channel Description",
    "format": "string"
  },
  "channel_tags": {
    "label": "Channel Tags",
    "format": "array"
  },
  "channel_links": {
    "label": "Channel Links",
    "format": "array"
  },
  "contact_emails": {
    "label": "Contact Emails",
    "format": "array"
  },
  "channel_banner_url": {
    "label": "Channel Banner URL",
    "format": "string"
  },
  "channel_is_verified": {
    "label": "Channel Is Verified",
    "format": "boolean"
  },
  "channel_rss_url": {
    "label": "Channel RSS URL",
    "format": "string"
  },
  "subscriber_count": {
    "label": "Subscriber Count",
    "format": "integer"
  },
  "channel_view_count": {
    "label": "Channel View Count",
    "format": "integer"
  },
  "channel_video_count": {
    "label": "Channel Video Count",
    "format": "integer"
  },
  "processor": {
    "label": "Processor",
    "format": "string"
  },
  "processed_at": {
    "label": "Processed At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Creator Email Scraper](https://apify.com/agentx/youtube-creator-email-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/agentx/youtube-creator-email-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/agentx/youtube-creator-email-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).
