# Youtube Transcript Scraper (`veeronica/youtube-transcript-scraper`) Actor

Extract transcripts and subtitles from any YouTube video. Returns clean full text plus timestamped segments, optional SRT/WebVTT subtitles, translation to any language, and video details. No API key, no rate limits.

- **URL**: https://apify.com/veeronica/youtube-transcript-scraper.md
- **Developed by:** [Veronica](https://apify.com/veeronica) (community)
- **Categories:** Automation, Videos, Social media
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 transcripts

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

**YouTube Transcript Scraper** extracts the **full transcript, captions, and subtitles** of any YouTube video — including **Shorts and live replays** — and returns them as **clean, readable text**, **timestamped segments**, and ready-to-use **SRT/WebVTT subtitle files**. Get the transcript in the video's **original language** automatically, or request a specific one from the video's **available caption languages**, together with **video details** (title, channel, thumbnail, views, duration). It runs in the cloud, needs **no API key** and **no proxy setup**, and exports to **JSON, CSV, Excel, or XML**.

Paste a YouTube link, click **Start**, and get structured transcript data back in seconds — or call the built-in **[real-time transcript API (Standby mode)](#real-time-api-standby-mode)** to fetch captions on demand for your app, **AI agent**, or **RAG / LLM** pipeline.

### What data does it extract?

| Data | Details |
|---|---|
| 📝 **Full text** | the whole transcript as one clean, continuous block of text — ready for summarizing, search, or NLP |
| ⏱️ **Timestamped segments** | every caption line with its `start` time and `duration` in seconds |
| 🎬 **Subtitle files** | the transcript as ready-to-use **SRT** and/or **WebVTT** subtitles |
| 🈳 **Languages** | the transcript's language, whether it's auto-generated, and every other caption language available for the video |
| 📺 **Video details** | title, channel name, channel URL, thumbnail, view count, duration, description, tags, and live-stream status |
| 📊 **Stats** | word count, character count, snippet count, and total duration |

### How to scrape YouTube transcripts

1. **Add a video URL** — paste a full YouTube link (`watch`, `youtu.be`, `shorts`, `embed`, or `live`) or a bare 11-character video ID. One transcript is produced per run.
2. **Pick a language** *(optional)* — leave it on **Auto-detect** to get the video's original language, or choose a specific language the video has captions in. If the video has no captions in the language you pick, the run reports an error listing the languages it does offer.
3. **Choose the output** *(optional)* — include timestamped segments, add SRT/WebVTT subtitle files, and fetch video details.
4. **Click Start** — then download the results from the **Storage** tab in any format, or push them anywhere with integrations.

### Input example

```json
{
    "videoUrl": "https://www.youtube.com/watch?v=IELMSD2kdmk",
    "transcriptLanguage": "auto",
    "includeTimestamps": true,
    "additionalFormats": ["srt"],
    "includeVideoDetails": true
}
````

### Output example (abridged)

```json
{
    "url": "https://www.youtube.com/watch?v=IELMSD2kdmk",
    "videoId": "IELMSD2kdmk",
    "title": "Apache Spark in 100 Seconds",
    "channelName": "Fireship",
    "channelUrl": "https://www.youtube.com/channel/UCsBjURrPoezykLs9EqgamOA",
    "channelId": "UCsBjURrPoezykLs9EqgamOA",
    "thumbnailUrl": "https://i.ytimg.com/vi_webp/IELMSD2kdmk/maxresdefault.webp",
    "viewCount": 569973,
    "language": "English (auto-generated)",
    "languageCode": "en",
    "isGenerated": true,
    "durationSeconds": 199,
    "snippetCount": 101,
    "wordCount": 673,
    "characterCount": 3826,
    "text": "Apache spark an open- Source data analytics engine that can process massive streams of data from multiple sources…",
    "segments": [
        { "text": "Apache spark an open- Source data", "start": 0.32, "duration": 4.08 },
        { "text": "analytics engine that can process", "start": 2.48, "duration": 3.839 }
    ],
    "srt": "1\n00:00:00,320 --> 00:00:04,400\nApache spark an open- Source data\n\n2\n…",
    "availableLanguages": [
        { "language": "English (auto-generated)", "languageCode": "en", "isGenerated": true }
    ],
    "retrievedAt": "2026-06-16T12:00:00.000Z"
}
```

> The transcript is always a real caption track from the video — `language`/`languageCode` show what you got and `availableLanguages` lists every option. If you request a language the video doesn't have, you get a `NoTranscriptInLanguage` error listing the languages it does offer.

If a transcript can't be retrieved, the result contains an `error` and a human-readable `errorMessage` instead (e.g. `TranscriptsDisabled`, `VideoUnavailable`, `NoTranscriptFound`, `NoTranscriptInLanguage`).

### Real-time API (Standby mode)

Don't want to start a run and wait for it to finish? This Actor also runs in **[Standby mode](https://docs.apify.com/platform/actors/development/programming-interface/standby)** — an always-on HTTP server that returns a transcript in a single request, like a normal REST API. It's ideal for apps and integrations that need transcripts on demand.

Send a `GET` request with the video and options as query parameters; the response body is the transcript as JSON (the same shape as a dataset item). Find your Standby base URL in the Actor's **Standby** tab and authenticate with your Apify API token (pass it as a `token` query parameter or an `Authorization: Bearer <token>` header).

```bash
curl "https://<your-standby-url>/?token=<APIFY_TOKEN>&videoUrl=https://www.youtube.com/watch?v=IELMSD2kdmk&transcriptLanguage=en&additionalFormats=srt"
```

**Query parameters**

| Parameter | Required | Default | Description |
|---|---|---|---|
| `videoUrl` | yes | — | A YouTube video URL or a bare 11-character video ID. |
| `transcriptLanguage` | no | `auto` | Caption language to return, or `auto` for the video's original language. Returns `404` `NoTranscriptInLanguage` if the video has no track in the chosen language. |
| `includeTimestamps` | no | `true` | Include the timestamped `segments` array. |
| `additionalFormats` | no | — | Comma-separated subtitle formats to also include: `srt`, `vtt`. |
| `includeVideoDetails` | no | `true` | Include video metadata (title, channel, thumbnail, views, duration). |

You can also send the same parameters as a JSON body with `POST`. On success the response is `200` with the transcript; on failure it's a `4xx`/`5xx` with an `{ "error", "errorMessage" }` body (e.g. `404` `NoTranscriptFound`, `404` `NoTranscriptInLanguage`, `429` `RateLimited`).

### Why scrape YouTube transcripts?

- **AI, RAG & LLMs** — feed clean transcripts to an LLM to summarize, answer questions, generate show notes, or build **retrieval-augmented generation (RAG)** pipelines, embeddings, and semantic search over video content.
- **Content repurposing** — turn videos into blog posts, newsletters, or social media threads.
- **SEO** — publish transcripts to make video content indexable and searchable.
- **Research & analysis** — collect and text-mine spoken content at scale.
- **Accessibility & localization** — generate subtitles in any caption language the video provides.
- **Search archives** — build a searchable database of everything said across a channel.

### FAQ

#### Do I need an API key or login?

No. The Actor reads publicly available transcripts — just provide the video URLs.

#### Do I need to configure a proxy?

No. Reliable access to YouTube is handled for you automatically — there's nothing to set up or configure. Just provide a video and get the transcript back. It works out of the box.

#### Which languages can I get?

Leave `transcriptLanguage` on **Auto-detect** (`"auto"`) to get the video's original language — the most reliable option, since it always returns a track the video actually has. To request a specific language, set `transcriptLanguage` to its code (e.g. `"de"`); a base language like `en` also matches regional tracks such as `en-US`, and human-made captions are preferred over auto-generated ones. The transcript is always a genuine YouTube caption track — the Actor doesn't machine-translate. If the video has no captions in the language you ask for, you get a `NoTranscriptInLanguage` error that lists the languages it does offer (also available as `availableLanguages` on every successful result).

#### Can I get subtitle files?

Yes. Add `srt` and/or `vtt` to `additionalFormats` and the item will include ready-to-use subtitle strings you can save as `.srt`/`.vtt` files.

#### What kinds of links can I paste?

Standard watch URLs, `youtu.be` short links, Shorts, `embed` and `live` URLs, mobile/music URLs, and bare 11-character video IDs.

#### Can I run it on a schedule?

Yes — use the **Schedule** option to run it on any cron expression, and pair it with webhooks or integrations to push fresh transcripts wherever you need them.

#### Can I call it like an API?

Yes. The Actor supports **Standby mode**, an always-on HTTP endpoint that returns a transcript per request with no run to wait for — see [Real-time API (Standby mode)](#real-time-api-standby-mode) above.

### Integrations

Connect YouTube Transcript Scraper to **Google Sheets, Make, Zapier, n8n, Slack, Airbyte**, or any tool via webhooks. Developers can start runs and fetch results programmatically with the [Apify API](https://docs.apify.com/api/v2) using the JavaScript or Python clients — see the **API** tab for ready-made code.

### Feedback and feature requests

Found a bug or missing a field you need? Open an issue in the **Issues** tab — feedback directly shapes what gets added next.

# Actor input Schema

## `videoUrl` (type: `string`):

The YouTube video to transcribe. Accepts a full URL (<code>watch</code>, <code>youtu.be</code>, <code>shorts</code>, <code>embed</code>, <code>live</code>) or a bare 11-character video ID. One transcript is produced per run.

## `transcriptLanguage` (type: `string`):

The caption language you want the transcript in. Leave it on <b>Auto-detect</b> to get the video's own original language. If you pick a specific language, the video must already have captions in it — a base language like <code>English</code> also matches regional tracks such as <code>en-US</code>, and human-made captions are preferred over auto-generated ones. If the video has no captions in the chosen language, the run reports an error listing the languages it does offer (also see <code>availableLanguages</code> in the output).

## `additionalFormats` (type: `array`):

Also include the transcript as ready-to-use subtitle files in the chosen formats.

## `includeTimestamps` (type: `boolean`):

Include the <code>segments</code> array — every caption line with its <code>start</code> time and <code>duration</code> in seconds. Turn off for plain text only.

## `includeVideoDetails` (type: `boolean`):

Add the video's title, channel name, channel URL, thumbnail, view count, duration, description, tags, and live-stream status. This comes from the same request as the transcript, so it adds no extra fetches.

## Actor input object example

```json
{
  "videoUrl": "https://www.youtube.com/watch?v=IELMSD2kdmk",
  "transcriptLanguage": "auto",
  "additionalFormats": [],
  "includeTimestamps": true,
  "includeVideoDetails": true
}
```

# Actor output Schema

## `transcripts` (type: `string`):

One item per video: full transcript text, timestamped segments, optional subtitle files, and video details.

# 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 = {
    "videoUrl": "https://www.youtube.com/watch?v=IELMSD2kdmk",
    "transcriptLanguage": "auto"
};

// Run the Actor and wait for it to finish
const run = await client.actor("veeronica/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 = {
    "videoUrl": "https://www.youtube.com/watch?v=IELMSD2kdmk",
    "transcriptLanguage": "auto",
}

# Run the Actor and wait for it to finish
run = client.actor("veeronica/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 '{
  "videoUrl": "https://www.youtube.com/watch?v=IELMSD2kdmk",
  "transcriptLanguage": "auto"
}' |
apify call veeronica/youtube-transcript-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Youtube Transcript Scraper",
        "description": "Extract transcripts and subtitles from any YouTube video. Returns clean full text plus timestamped segments, optional SRT/WebVTT subtitles, translation to any language, and video details. No API key, no rate limits.",
        "version": "1.0",
        "x-build-id": "mwiNwIcp1nMwS5BFO"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/veeronica~youtube-transcript-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-veeronica-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/veeronica~youtube-transcript-scraper/runs": {
            "post": {
                "operationId": "runs-sync-veeronica-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/veeronica~youtube-transcript-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-veeronica-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",
                "required": [
                    "videoUrl"
                ],
                "properties": {
                    "videoUrl": {
                        "title": "YouTube video URL",
                        "type": "string",
                        "description": "The YouTube video to transcribe. Accepts a full URL (<code>watch</code>, <code>youtu.be</code>, <code>shorts</code>, <code>embed</code>, <code>live</code>) or a bare 11-character video ID. One transcript is produced per run."
                    },
                    "transcriptLanguage": {
                        "title": "Transcript language",
                        "enum": [
                            "auto",
                            "af",
                            "sq",
                            "am",
                            "ar",
                            "hy",
                            "as",
                            "az",
                            "eu",
                            "be",
                            "bn",
                            "bs",
                            "bg",
                            "my",
                            "ca",
                            "ceb",
                            "zh",
                            "hr",
                            "cs",
                            "da",
                            "nl",
                            "en",
                            "eo",
                            "et",
                            "tl",
                            "fi",
                            "fr",
                            "gl",
                            "ka",
                            "de",
                            "el",
                            "gu",
                            "ht",
                            "ha",
                            "haw",
                            "he",
                            "hi",
                            "hmn",
                            "hu",
                            "is",
                            "ig",
                            "id",
                            "ga",
                            "it",
                            "ja",
                            "jv",
                            "kn",
                            "kk",
                            "km",
                            "rw",
                            "ko",
                            "ku",
                            "ky",
                            "lo",
                            "la",
                            "lv",
                            "lt",
                            "lb",
                            "mk",
                            "mg",
                            "ms",
                            "ml",
                            "mt",
                            "mi",
                            "mr",
                            "mn",
                            "ne",
                            "no",
                            "ny",
                            "or",
                            "ps",
                            "fa",
                            "pl",
                            "pt",
                            "pa",
                            "ro",
                            "ru",
                            "sr",
                            "st",
                            "sn",
                            "sd",
                            "si",
                            "sk",
                            "sl",
                            "so",
                            "es",
                            "su",
                            "sw",
                            "sv",
                            "tg",
                            "ta",
                            "te",
                            "th",
                            "tr",
                            "uk",
                            "ur",
                            "uz",
                            "vi",
                            "cy",
                            "xh",
                            "yi",
                            "yo",
                            "zu"
                        ],
                        "type": "string",
                        "description": "The caption language you want the transcript in. Leave it on <b>Auto-detect</b> to get the video's own original language. If you pick a specific language, the video must already have captions in it — a base language like <code>English</code> also matches regional tracks such as <code>en-US</code>, and human-made captions are preferred over auto-generated ones. If the video has no captions in the chosen language, the run reports an error listing the languages it does offer (also see <code>availableLanguages</code> in the output).",
                        "default": "auto"
                    },
                    "additionalFormats": {
                        "title": "Additional subtitle formats",
                        "type": "array",
                        "description": "Also include the transcript as ready-to-use subtitle files in the chosen formats.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "srt",
                                "vtt"
                            ],
                            "enumTitles": [
                                "SubRip (.srt)",
                                "WebVTT (.vtt)"
                            ]
                        },
                        "default": []
                    },
                    "includeTimestamps": {
                        "title": "Include timestamped segments",
                        "type": "boolean",
                        "description": "Include the <code>segments</code> array — every caption line with its <code>start</code> time and <code>duration</code> in seconds. Turn off for plain text only.",
                        "default": true
                    },
                    "includeVideoDetails": {
                        "title": "Include video details",
                        "type": "boolean",
                        "description": "Add the video's title, channel name, channel URL, thumbnail, view count, duration, description, tags, and live-stream status. This comes from the same request as the transcript, so it adds no extra fetches.",
                        "default": true
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
