# YouTube Incident Response Data Export API

**Use case:** 

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

## Input

```json
{
  "keyword": "incident response",
  "sort_by": "relevance",
  "max_results": 25
}
```

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

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

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

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
