# YouTube Transcript Scraper — Multi-Language + Translation (`celebrated-quadraphonic/youtube-transcript-scraper`) Actor

Extract transcripts from YouTube videos. Batch URLs, channel mode, 100+ languages, auto-translation, SRT/WebVTT export. $2.00/1K — 60% cheaper than competitors.

- **URL**: https://apify.com/celebrated-quadraphonic/youtube-transcript-scraper.md
- **Developed by:** [XiaoZhi DataTools](https://apify.com/celebrated-quadraphonic) (community)
- **Categories:** Videos, Social media, Developer tools
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.50 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

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).


# README

## YouTube Transcript Scraper — Multi-Language + Translation + Rich Metadata + RAG Chunking

Extract transcripts from YouTube videos with **multi-language support**, **auto-translation**, **4 output formats** (timestamped, text, SRT, WebVTT), **25+ metadata fields**, **playlist support**, **RAG chunking**, and **concurrent processing**.

### Why Choose This Scraper?

| | **This Scraper** | pintostudio (17K) | starvibe (5K) | karamelo (6.4K) |
|--|---|---|---|---|
| **Price** | **$2.00/1K** | $10.00/1K | $5.00/1K | $5.00/1K |
| **Batch URLs** | ✅ | ❌ Single | ❌ Single | ✅ |
| **Channel mode** | ✅ | ❌ | ✅ | ❌ |
| **Playlist mode** | ✅ | ❌ | ❌ | ❌ |
| **Language select** | ✅ 100+ | ✅ 80+ | ✅ | ❌ |
| **Auto-translate** | ✅ | ❌ | ❌ | ❌ |
| **Output formats** | **4** (text/timestamps/SRT/WebVTT) | 1 | 1 | 5 |
| **Metadata** | ✅ **25+ fields** | ❌ | ✅ 20+ fields | ✅ 14 fields |
| **RAG chunking** | ✅ | ❌ | ❌ | ❌ |
| **Concurrency** | ✅ parallel | ❌ | ❌ | ❌ |
| **Available langs** | ✅ List all | ❌ | ✅ | ❌ |
| **Geo-restriction** | ✅ | ❌ | ❌ | ❌ |
| **Channel details** | ✅ subs/desc/joined | ❌ | ✅ | ❌ |
| **Error tracking** | ✅ per-video status | ❌ | ❌ | ❌ |

### 3 Modes

#### 1. 🔗 URL Mode
Extract transcripts from specific video URLs (batch supported, one per line).

#### 2. 📺 Channel Mode
Get transcripts from all recent videos on a channel. Supports date filtering.

#### 3. 📋 Playlist Mode
Extract transcripts from all videos in a YouTube playlist. Provide one or more playlist URLs (one per line). Use `maxVideos` to limit how many videos are processed per playlist.

### 4 Output Formats

- **timestamped** — `[{text, start, duration}]` JSON array
- **text** — Plain text, no timestamps
- **srt** — Standard subtitle format (for video players)
- **webvtt** — Web subtitle format (for HTML5 video)

### RAG / AI Chunking

For RAG (Retrieval-Augmented Generation) and AI pipelines, you can split transcripts into overlapping word chunks:

- **chunkSize** — Number of words per chunk (0 = disabled, 100–5000). Set to e.g. 200 for typical RAG use.
- **chunkOverlap** — Overlapping words between consecutive chunks (default: 50). Provides context continuity.

When enabled, each chunk is output as a **separate dataset item** with:
- `chunk_index` — Position of this chunk (0-based)
- `total_chunks` — Total number of chunks for this video
- `chunk_text` — The chunk content
- `chunk_start_char` — Character offset where chunk starts in full_text
- `chunk_end_char` — Character offset where chunk ends in full_text
- `word_count` — Word count for this chunk

The original full transcript item is always preserved alongside the chunk items.

### Concurrency

Process multiple videos in parallel for faster runs:
- **maxConcurrency** — Number of parallel transcript fetches (1–20, default: 5)
- Each video is processed with a semaphore to respect rate limits
- Failed transcripts are automatically retried up to 3 times with a 2-second delay

### Rich Metadata (25+ fields)

When `includeMetadata=true`, each video includes:

#### Video Info
- `title`, `description`, `duration`, `duration_formatted`
- `view_count`, `like_count`, `comment_count`
- `published_at` (ISO date), `category`, `keywords` (tags array)
- `thumbnail` (high quality), `is_live`
- `has_captions`, `caption_languages`
- `word_count` — Number of words in the full transcript

#### Channel Info
- `channel_name`, `channel_id`, `channel_url`
- `channel_subscribers` (e.g. "1.2M subscribers")
- `channel_description`
- `channel_joined_date`

#### Geo-Restriction
- `is_restricted` — boolean flag
- `restriction_reason` — reason if restricted
- `available_countries` — list of country codes where video is available
- `blocked_countries` — list of blocked country codes

#### Internal Fields
- `_metadata_level` — "full" (with proxy) or "basic" (no proxy)
- `_status` — "success", "transcript_failed", "chunk", or "skipped"

### Key Features

- 🌐 **100+ languages** — Select any transcript language
- 🔄 **Auto-translate** — Translate transcripts to any language
- 📺 **Channel mode** — Batch extract from channels
- 📋 **Playlist mode** — Extract from YouTube playlists
- 📋 **List languages** — Show all available transcripts per video
- 🎬 **Shorts support** — Works with YouTube Shorts too
- 📊 **Rich metadata** — 25+ fields with proxy, basic info without
- 🔍 **Auto-detect** — Automatically picks the best available language
- 🌍 **Geo-restriction** — Detect region-blocked videos
- 🏷️ **Keywords/tags** — Extract video tags from YouTube
- 🔒 **Proxy support** — Auto Apify residential proxy or custom proxy
- ✅ **Error tracking** — Per-video success/failure status in output
- 📝 **Word count** — Every output item includes word count
- 🧩 **RAG chunking** — Split transcripts into overlapping chunks for AI pipelines
- ⚡ **Concurrency** — Parallel processing with configurable concurrency
- 🔁 **Auto-retry** — Failed transcript fetches retried up to 3 times

### Proxy & Metadata Levels

Metadata richness depends on proxy availability:

| Level | Proxy | Fields Available |
|-------|-------|-----------------|
| **full** | Apify Residential / Custom | All 25+ fields (views, likes, comments, geo-restriction, channel details) |
| **basic** | None | Title, channel name, thumbnail only |

**Recommendation:** Use Apify residential proxy (automatic, no config needed) for full metadata. Without proxy, YouTube may return limited data from cloud IPs.

### Input Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `mode` | select | URL, Channel, or Playlist |
| `urls` | textarea | Video URLs (one per line) |
| `channels` | textarea | Channel handles (one per line) |
| `playlists` | textarea | Playlist URLs (one per line) |
| `maxVideos` | number | Max videos per channel/playlist (default: 20) |
| `maxConcurrency` | number | Parallel processing count (default: 5, max: 20) |
| `language` | text | Transcript language code (empty = auto-detect) |
| `translateTo` | text | Translate to this language (empty = no translation) |
| `outputFormat` | select | timestamped/text/srt/webvtt |
| `chunkSize` | number | RAG chunk size in words (0 = disabled, default: 0) |
| `chunkOverlap` | number | RAG chunk overlap in words (default: 50) |
| `includeMetadata` | checkbox | Enable rich metadata (25+ fields) |
| `listAvailableLanguages` | checkbox | Show all available languages |
| `since` | date | Only videos after this date |
| `until` | date | Only videos before this date |
| `proxyUrl` | text | Custom proxy URL (empty = auto Apify proxy) |

### Examples

````

## Get English transcript with full metadata

urls: https://youtube.com/watch?v=dQw4w9WgXcQ
language: en

## Get Japanese transcript and translate to English

urls: https://youtube.com/watch?v=dQw4w9WgXcQ
language: ja
translateTo: en

## Get SRT subtitles for all videos from a channel

mode: channel
channels: MrBeast
outputFormat: srt
maxVideos: 10

## Extract transcripts from a YouTube playlist

mode: playlist
playlists: https://www.youtube.com/playlist?list=PLrAXtmErZgOeiKm4sgNOknGvNjby9efdf
maxVideos: 50

## List all available languages

urls: https://youtube.com/watch?v=dQw4w9WgXcQ
listAvailableLanguages: true

## Batch extract with metadata (views, likes, geo-restriction)

urls: https://youtube.com/watch?v=abc123
https://youtube.com/watch?v=def456
includeMetadata: true

## RAG chunking — split transcript into 200-word chunks with 50-word overlap

urls: https://youtube.com/watch?v=dQw4w9WgXcQ
chunkSize: 200
chunkOverlap: 50

## High-concurrency batch run

mode: channel
channels: MrBeast
maxVideos: 100
maxConcurrency: 10

````

### Pricing

- **$2.00 per 1,000 transcripts** — 60% cheaper than pintostudio ($10/1K)
- Default run (20 videos) costs **$0.04**

### Technical Details

- Built on `youtube-transcript-api` v1.2.4
- Rich metadata via `ytInitialPlayerResponse` + `ytInitialData` extraction
- Supports auto-generated and manual captions
- Translation uses YouTube's built-in translation API
- Channel videos discovered via `scrapetube`
- Playlist videos discovered via `scrapetube.get_playlist()`
- Automatic Apify residential proxy for full metadata
- Concurrent processing with `asyncio.Semaphore` (configurable parallelism)
- Automatic retry (3 attempts, 2-second delay) for transcript fetch failures
- Per-video error tracking and partial result recovery

### Limitations

- Some videos may not have transcripts available
- Auto-translation quality varies by language
- Full metadata (views, likes, geo-restriction) requires proxy on cloud IPs
- Channel mode gets recent videos only (not full archive)
- Geo-restriction detection may not cover all cases

# Actor input Schema

## `mode` (type: `string`):

URL = specific videos, Channel = all videos from a channel, Playlist = all videos from a playlist.
## `urls` (type: `string`):

YouTube video or Shorts URLs. Supports watch, shorts, youtu.be formats.
## `channels` (type: `string`):

Channel handles (without @) or URLs. Gets recent videos and extracts transcripts.
## `playlists` (type: `string`):

YouTube playlist URLs. Extracts video IDs from each playlist and fetches their transcripts.
## `maxVideos` (type: `integer`):

Max videos to process from each channel or playlist.
## `maxConcurrency` (type: `integer`):

Number of videos to process in parallel (1-20). Higher values are faster but may hit rate limits.
## `language` (type: `string`):

ISO 639-1 code: en, ja, es, fr, de, zh, ko, pt, ru, ar, etc. Leave empty for auto-detect (picks first available).
## `translateTo` (type: `string`):

Translate transcript to this language (ISO 639-1). Leave empty for no translation. Example: en, ja, zh.
## `outputFormat` (type: `string`):

timestamped = [{text, start, duration}], text = plain text, srt = SRT subtitle format, webvtt = WebVTT format.
## `chunkSize` (type: `integer`):

Split transcript into overlapping word chunks for RAG/AI pipelines. Set to 0 to disable. Each chunk is output as a separate dataset item with character offsets.
## `chunkOverlap` (type: `integer`):

Number of overlapping words between consecutive chunks. Only used when chunkSize > 0.
## `includeMetadata` (type: `boolean`):

Fetch view count, likes, comments, duration, published date, description, keywords, thumbnail, channel info, and geo-restriction status.
## `listAvailableLanguages` (type: `boolean`):

Show all available transcript languages for each video (adds one extra API call per video).
## `since` (type: `string`):

Only videos published after this date (Channel mode).
## `until` (type: `string`):

Only videos published before this date (Channel mode).
## `proxyUrl` (type: `string`):

HTTP proxy URL for fetching rich metadata. Leave empty to auto-use Apify residential proxy (recommended). Format: http://user:pass@host:port

## Actor input object example

```json
{
  "mode": "url",
  "urls": "",
  "channels": "",
  "playlists": "",
  "maxVideos": 20,
  "maxConcurrency": 5,
  "language": "",
  "translateTo": "",
  "outputFormat": "timestamped",
  "chunkSize": 0,
  "chunkOverlap": 50,
  "includeMetadata": true,
  "listAvailableLanguages": false,
  "since": "",
  "until": "",
  "proxyUrl": ""
}
````

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "mode": "url",
    "urls": "",
    "channels": "",
    "playlists": "",
    "maxVideos": 20,
    "maxConcurrency": 5,
    "language": "",
    "translateTo": "",
    "outputFormat": "timestamped",
    "chunkSize": 0,
    "chunkOverlap": 50,
    "includeMetadata": true,
    "listAvailableLanguages": false,
    "since": "",
    "until": "",
    "proxyUrl": ""
};

// Run the Actor and wait for it to finish
const run = await client.actor("celebrated-quadraphonic/youtube-transcript-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "mode": "url",
    "urls": "",
    "channels": "",
    "playlists": "",
    "maxVideos": 20,
    "maxConcurrency": 5,
    "language": "",
    "translateTo": "",
    "outputFormat": "timestamped",
    "chunkSize": 0,
    "chunkOverlap": 50,
    "includeMetadata": True,
    "listAvailableLanguages": False,
    "since": "",
    "until": "",
    "proxyUrl": "",
}

# Run the Actor and wait for it to finish
run = client.actor("celebrated-quadraphonic/youtube-transcript-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "url",
  "urls": "",
  "channels": "",
  "playlists": "",
  "maxVideos": 20,
  "maxConcurrency": 5,
  "language": "",
  "translateTo": "",
  "outputFormat": "timestamped",
  "chunkSize": 0,
  "chunkOverlap": 50,
  "includeMetadata": true,
  "listAvailableLanguages": false,
  "since": "",
  "until": "",
  "proxyUrl": ""
}' |
apify call celebrated-quadraphonic/youtube-transcript-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=celebrated-quadraphonic/youtube-transcript-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "YouTube Transcript Scraper — Multi-Language + Translation",
        "description": "Extract transcripts from YouTube videos. Batch URLs, channel mode, 100+ languages, auto-translation, SRT/WebVTT export. $2.00/1K — 60% cheaper than competitors.",
        "version": "3.0",
        "x-build-id": "XBNAdssIUkEkbWpXs"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/celebrated-quadraphonic~youtube-transcript-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-celebrated-quadraphonic-youtube-transcript-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/celebrated-quadraphonic~youtube-transcript-scraper/runs": {
            "post": {
                "operationId": "runs-sync-celebrated-quadraphonic-youtube-transcript-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/celebrated-quadraphonic~youtube-transcript-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-celebrated-quadraphonic-youtube-transcript-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "url",
                            "channel",
                            "playlist"
                        ],
                        "type": "string",
                        "description": "URL = specific videos, Channel = all videos from a channel, Playlist = all videos from a playlist.",
                        "default": "url"
                    },
                    "urls": {
                        "title": "Video URLs (one per line)",
                        "type": "string",
                        "description": "YouTube video or Shorts URLs. Supports watch, shorts, youtu.be formats.",
                        "default": ""
                    },
                    "channels": {
                        "title": "Channels (one per line)",
                        "type": "string",
                        "description": "Channel handles (without @) or URLs. Gets recent videos and extracts transcripts.",
                        "default": ""
                    },
                    "playlists": {
                        "title": "Playlist URLs (one per line)",
                        "type": "string",
                        "description": "YouTube playlist URLs. Extracts video IDs from each playlist and fetches their transcripts.",
                        "default": ""
                    },
                    "maxVideos": {
                        "title": "Max Videos (Channel / Playlist mode)",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Max videos to process from each channel or playlist.",
                        "default": 20
                    },
                    "maxConcurrency": {
                        "title": "Max Concurrency",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "Number of videos to process in parallel (1-20). Higher values are faster but may hit rate limits.",
                        "default": 5
                    },
                    "language": {
                        "title": "Transcript Language",
                        "type": "string",
                        "description": "ISO 639-1 code: en, ja, es, fr, de, zh, ko, pt, ru, ar, etc. Leave empty for auto-detect (picks first available).",
                        "default": ""
                    },
                    "translateTo": {
                        "title": "Translate To",
                        "type": "string",
                        "description": "Translate transcript to this language (ISO 639-1). Leave empty for no translation. Example: en, ja, zh.",
                        "default": ""
                    },
                    "outputFormat": {
                        "title": "Output Format",
                        "enum": [
                            "timestamped",
                            "text",
                            "srt",
                            "webvtt"
                        ],
                        "type": "string",
                        "description": "timestamped = [{text, start, duration}], text = plain text, srt = SRT subtitle format, webvtt = WebVTT format.",
                        "default": "timestamped"
                    },
                    "chunkSize": {
                        "title": "RAG Chunk Size (words)",
                        "minimum": 0,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Split transcript into overlapping word chunks for RAG/AI pipelines. Set to 0 to disable. Each chunk is output as a separate dataset item with character offsets.",
                        "default": 0
                    },
                    "chunkOverlap": {
                        "title": "RAG Chunk Overlap (words)",
                        "minimum": 0,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Number of overlapping words between consecutive chunks. Only used when chunkSize > 0.",
                        "default": 50
                    },
                    "includeMetadata": {
                        "title": "Include Rich Video Metadata",
                        "type": "boolean",
                        "description": "Fetch view count, likes, comments, duration, published date, description, keywords, thumbnail, channel info, and geo-restriction status.",
                        "default": true
                    },
                    "listAvailableLanguages": {
                        "title": "List Available Languages",
                        "type": "boolean",
                        "description": "Show all available transcript languages for each video (adds one extra API call per video).",
                        "default": false
                    },
                    "since": {
                        "title": "Since (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Only videos published after this date (Channel mode).",
                        "default": ""
                    },
                    "until": {
                        "title": "Until (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Only videos published before this date (Channel mode).",
                        "default": ""
                    },
                    "proxyUrl": {
                        "title": "Custom Proxy URL",
                        "type": "string",
                        "description": "HTTP proxy URL for fetching rich metadata. Leave empty to auto-use Apify residential proxy (recommended). Format: http://user:pass@host:port",
                        "default": ""
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
