# YouTube Armenian Data Extraction API Example

**Use case:** 

A ready-to-run example that transcribes YouTube media to timestamped text, configured for armenian, with normalized fields on each returned row.

## Input

```json
{
  "video_url": "https://www.youtube.com/shorts/noWlKvEPOWk",
  "translate": "armenian"
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "title": {
    "label": "Video Title",
    "format": "string"
  },
  "transcript": {
    "label": "Transcript",
    "format": "object"
  },
  "translation": {
    "label": "Translation",
    "format": "object"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "number"
  },
  "view_count": {
    "label": "View Count",
    "format": "integer"
  },
  "like_count": {
    "label": "Like Count",
    "format": "integer"
  },
  "comment_count": {
    "label": "Comment Count",
    "format": "integer"
  },
  "shares_count": {
    "label": "Shares Count",
    "format": "integer"
  },
  "dislike_count": {
    "label": "Dislike Count",
    "format": "integer"
  },
  "published_at": {
    "label": "Published At",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "audio_title": {
    "label": "Audio Title",
    "format": "string"
  },
  "audio_artist": {
    "label": "Audio Artist",
    "format": "string"
  },
  "author_id": {
    "label": "Author ID",
    "format": "string"
  },
  "author_url": {
    "label": "Author URL",
    "format": "string"
  },
  "processed_at": {
    "label": "Processed At",
    "format": "string"
  },
  "processor": {
    "label": "Processor",
    "format": "string"
  }
}
```

## About this Actor

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