# Transcript of "Stop Promoting Your Business. Start Telling Bett

**Use case:** 

Returns the transcript of a single video: the text, the caption language, whether YouTube auto-generated it or a person wrote it, the full list of languages the video offers, the line count, the title, the author and the length. Measured on 2026-09-07 this video returned 1,466 caption lines, auto-generated by YouTube, and offered 17 languages in total.

## Input

```json
{
  "videos": [
    "https://www.youtube.com/watch?v=FFPaVFBEIhI"
  ],
  "languages": [
    "en"
  ],
  "includeTimestamps": true,
  "proxyMode": "auto",
  "maxRetries": 3
}
```

## Output

```json
{
  "ok": {
    "label": "OK",
    "format": "boolean"
  },
  "videoId": {
    "label": "Video ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "author": {
    "label": "Channel",
    "format": "string"
  },
  "language": {
    "label": "Lang",
    "format": "string"
  },
  "isAutoGenerated": {
    "label": "Auto-generated",
    "format": "boolean"
  },
  "segmentCount": {
    "label": "Lines",
    "format": "integer"
  },
  "text": {
    "label": "Transcript",
    "format": "string"
  },
  "reason": {
    "label": "Why it failed",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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