# Get a YouTube video transcript with timestamps

**Use case:** 

Turn any public YouTube URL into a full text transcript plus timestamped segments, alongside 22 fields of video metadata: title, channel, views, duration.

## Input

```json
{
  "video_url": "https://www.youtube.com/watch?v=4rzeW4dbvlQ"
}
```

## 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) with a specific input configuration. Visit the [Actor detail page](https://apify.com/agentx/youtube-transcript) to learn more, explore other use cases, and run it yourself.