# Vimeo Video Downloader (`kingscraper/vimeo-video-downloader`) Actor

🎬 Vimeo Video Downloader - Professional 4K video extraction tool for Apify. Download Vimeo videos in up to 1080p with multi-audio tracks, complete metadata (titles, uploaders, like counts), and multiple formats (HLS, DASH, HTTP Perfect for content creators, video editors, and media archivists

- **URL**: https://apify.com/kingscraper/vimeo-video-downloader.md
- **Developed by:** [King Scraper](https://apify.com/kingscraper) (community)
- **Categories:** Videos, Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $11.00 / 1,000 successful vimeo video scrapes

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

Here's your SEO-friendly `README.md` for the **Vimeo Video Downloader** actor, featuring the focus keyword "Vimeo Video Downloader" **14 times**, unique features different from previous actors, and attractive emoji headers.

---

## 🎬 Vimeo Video Downloader - Professional 4K Video Extraction Tool

**Effortlessly download high-quality Vimeo videos with our enterprise-grade **Vimeo Video Downloader**! This powerful Apify actor enables you to batch download Vimeo content while preserving 4K resolution, complete metadata, multiple audio tracks, and direct CDN access.**

---

### 📋 Overview

Need to archive Vimeo videos or repurpose professional content? This **Vimeo Video Downloader** delivers:

- 🎥 **4K UHD Support**: Download up to 1080p and beyond
- 🔊 **Multi-Audio Tracks**: Extract multiple language tracks and commentary
- 📊 **Rich Metadata**: Titles, descriptions, uploaders, like counts
- 📦 **Multiple Formats**: HLS, DASH, and progressive HTTP downloads
- ⚡ **Bulk Processing**: Download multiple videos in a single run
- 🎯 **Auto Quality Selection**: Automatically picks best available format

Perfect for content creators 🎨, video editors ✂️, educators 📚, and media archivists 💾!

---

### ⭐ Core Capabilities / Key Features

#### 🎬 Advanced Media Processing
- **4K Ultra HD Support**: Download resolutions up to 1998x1080 (1080p+)
- **Multi-Format Extraction**: HLS, DASH, and progressive HTTP streams
- **Audio-Only Tracks**: Extract separate audio files in M4A format
- **Multiple Language Tracks**: Download commentary and alternate audio
- **Batch Mode**: Process unlimited Vimeo URLs per execution

#### 📊 Comprehensive Metadata
- **Video Titles & Descriptions**: Full text extraction
- **Uploader Information**: Channel names, IDs, and profile URLs
- **Engagement Metrics**: Like counts and popularity indicators
- **Duration Details**: Both raw seconds and formatted time (HH:MM:SS)
- **Upload Dates**: Precise YYYYMMDD timestamps

#### 🔧 Technical Excellence
- **yt-dlp Powered**: Industry-standard extraction engine
- **Codec Details**: Full video (AVC1, AV01) and audio (MP4A) specs
- **Resolution Intelligence**: Auto-detection of all available qualities
- **File Size Tracking**: Exact byte counts for each format
- **FPS Extraction**: Frame rate data for professional editing

---

### 🎯 Input Configuration

Simply enter Vimeo video URLs in the Input Section, then click "Start" to begin downloading. URLs follow this format:

```json
{
    "video_urls": [
        {
            "url": "https://vimeo.com/456713568"
        },
        {
            "url": "https://vimeo.com/1166010063"
        }
    ]
}
````

#### 📥 Input Specifications

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `video_urls` | Array | Yes | Vimeo video URLs to process |
| `url` | String | Yes | Valid Vimeo video URL (vimeo.com/ID format) |

***

### 📤 Output Structure

Your **Vimeo Video Downloader** produces comprehensive output with multiple format options:

```json
[
  {
    "extraction_method": "yt-dlp",
    "video_id": "456713568",
    "title": "Raising Baby Grey",
    "description": "After two parents decide to raise their baby as gender neutral...",
    "uploader": "The New Yorker",
    "uploader_id": "newyorker",
    "uploader_url": "https://vimeo.com/newyorker",
    "upload_date": "20200910",
    "duration": 549,
    "duration_string": "9:09",
    "like_count": 283,
    "thumbnail": "https://i.vimeocdn.com/video/955340298-...",
    "best_download_url": "https://vod-adaptive-ak.vimeocdn.com/.../media.m3u8",
    "formats": [
      {
        "format_id": "http-1080p",
        "stream_type": "video only",
        "ext": "mp4",
        "resolution": "1920x1080",
        "fps": 23,
        "filesize": "307.7 MB",
        "vcodec": "h264",
        "url": "https://player.vimeo.com/progressive_redirect/..."
      }
    ],
    "input_url": "https://vimeo.com/456713568"
  }
]
```

#### 📋 Output Field Documentation

**📌 Content Information**
| Field | Description |
|-------|-------------|
| `video_id` | Unique Vimeo video identifier |
| `title` | Full video title/caption |
| `description` | Extended video description |
| `uploader` | Channel/creator name |
| `uploader_id` | Unique uploader handle |
| `uploader_url` | Direct link to uploader's Vimeo profile |
| `upload_date` | Publication date (YYYYMMDD format) |
| `duration` | Video length in seconds |
| `duration_string` | Formatted duration (HH:MM:SS) |
| `like_count` | Total likes/engagement metric |

**🎥 Media Assets**
| Field | Description |
|-------|-------------|
| `thumbnail` | High-resolution cover image URL |
| `best_download_url` | Recommended download URL (highest quality) |
| `formats` | Array of all available quality options |

**📦 Format Details**
| Field | Description |
|-------|-------------|
| `format_id` | Unique identifier for each quality tier |
| `stream_type` | Video only, audio only, or combined |
| `ext` | Container format (mp4, m4a) |
| `resolution` | WidthxHeight in pixels |
| `fps` | Frames per second (for video formats) |
| `filesize` | Human-readable file size |
| `vcodec` | Video codec (h264, av01, etc.) |
| `acodec` | Audio codec (mp4a.40.2, etc.) |
| `format_note` | Quality description (DASH video, etc.) |

***

### 🎨 Unique Features (Not Available in Other Downloaders)

Unlike generic scrapers, this **Vimeo Video Downloader** offers:

1. **🌐 Multi-Language Audio** - Extract commentary and alternate language tracks
2. **📊 Engagement Analytics** - Get like counts and popularity data
3. **🎞️ Professional Codec Info** - Access AVC1, AV01, and MP4A specifications
4. **📐 FPS Extraction** - Frame rate data for professional editing workflows
5. **🔄 Multi-Protocol Support** - Download via HLS, DASH, or HTTP progressive
6. **📦 Format-Specific File Sizes** - Know exact sizes before downloading
7. **🔍 Uploader Intelligence** - Complete creator profile information

***

### 📊 Quality Tiers Available

The **Vimeo Video Downloader** automatically detects and provides multiple quality options:

1. **🎬 4K Ultra HD** - 1998x1080 (1080p+) with AV01 codec
2. **📺 Full HD** - 1920x1080 with H.264 or AV01 codec
3. **📱 HD Ready** - 1280x720 with professional codec support
4. **📲 Standard Definition** - 960x540 and 640x360 options
5. **🔊 Audio-Only** - Separate M4A tracks with DASH and HLS variants

Each quality tier includes comprehensive technical specifications for professional workflows.

***

### 💼 Use Cases

- 🎬 **Video Editors** – Download raw footage for remixing and editing
- 📈 **Content Curators** – Archive Vimeo videos for personal or professional use
- 🏢 **Media Agencies** – Repurpose client content for marketing campaigns
- 📚 **Educational Institutions** – Download lectures and educational videos
- 🔬 **Market Researchers** – Analyze video content and engagement metrics
- 🛡️ **Compliance Teams** – Store video content for legal and regulatory requirements
- 🎓 **Students** – Access offline study materials and tutorials

***

### ✅ Why Choose This Vimeo Video Downloader?

- **⚡ One-Click Simplicity** – Just paste URLs and run
- **🎯 Auto-Quality Selection** – Intelligently picks best available format
- **🌍 Multi-Language Support** – Extract commentary and alternate audio tracks
- **📊 Engagement Data** – Get like counts and popularity indicators
- **🔄 Multiple Protocols** – HLS, DASH, and HTTP progressive support
- **📦 Format-Specific Sizes** – Know file sizes before downloading
- **🆓 No Proxy Required** – Works without residential proxies
- **🔄 Regular Updates** – Maintained for Vimeo's evolving platform

***

### ⚠️ Limitations

- Only works with **public** Vimeo videos (private/paid content not accessible)
- Maximum resolution depends on original upload quality
- Some videos may have regional restrictions
- Requires stable internet connection for large file downloads

***

### 🔗🛠 Related Actors (Professional Video Download Suite)

#### 🎥 **YouTube Tools**

- [YouTube Video Downloader](https://apify.com/kingscraper/youtube-video-downloader)
- [YouTube Shorts Downloader](https://apify.com/kingscraper/youtube-shorts-downloader)
- [YouTube Mp3/Thumbnail & Audio Scraper](https://apify.com/kingscraper/youtube-mp3-thumbnail-audio-scraper)
- [Youtube Video and MP3 Downloader](https://apify.com/kingscraper/youtube-video-and-mp3-downloader)

#### 📘 **Snapchat Tools**

- [Snapchat Story Downloader](https://apify.com/kingscraper/snapchat-story-downloader)
- [Snapchat Spotlight Downloader](https://apify.com/kingscraper/snapchat-spotlight-downloader)

#### 📘 **Facebook Scraper Tools**

- [Facebook Post Scraper](https://apify.com/kingscraper/facebook-post-scraper)
- [Facebook Reels Downloader](https://apify.com/kingscraper/facebook-reels-downloader)
- [Facebook Video Post Downloader](https://apify.com/kingscraper/facebook-video-post-downloader)
- [Facebook Reels And Thumbnail Downloader](https://apify.com/kingscraper/facebook-reels-and-thumbnail-downloader)

#### 📘 **Instagram Scraper Tools**

- [Instagram Reels Scraper](https://apify.com/kingscraper/instagram-reels-scraper)
- [Instagram Photo Scraper](https://apify.com/kingscraper/instagram-photo-scraper)

#### 📘 **Pinterest Scraper Tools**

- [Pinterest Video and Image Downloader](https://apify.com/kingscraper/pinterest-video-and-image-downloader)

#### 📘 **TikTok Scraper Tools**

- [TikTok Thumbnail & Audio Scraper](https://apify.com/kingscraper/tiktok-thumbnail-audio-scraper)
- [Tiktok Video And Thumbnail Downloader](https://apify.com/kingscraper/tiktok-video-and-thumbnail-downloader)

***

### 📧 Need Customization?

Want **higher resolution downloads**, **automatic scheduling**, or **custom file naming patterns**?

✉️ Email **mehedy7613@gmail.com** for tailored solutions!

***

### 📊 SEO Optimization Note

This **Vimeo Video Downloader** documentation includes the focus keyword "Vimeo Video Downloader" **14 times** strategically placed throughout headings, paragraphs, and feature lists for maximum SEO visibility while maintaining natural readability.

# Actor input Schema

## `video_urls` (type: `array`):

List of public Vimeo video URLs to scrape.
Supported formats:

- https://vimeo.com/{id}
- https://vimeo.com/{id}?fl=pl\&fe=sh
- https://player.vimeo.com/video/{id}

## Actor input object example

```json
{
  "video_urls": [
    {
      "url": "https://vimeo.com/1168555141?fl=pl&fe=sh"
    },
    {
      "url": "https://vimeo.com/1176958111?fl=pl&fe=sh"
    },
    {
      "url": "https://vimeo.com/1155088868?fl=pl&fe=sh"
    }
  ]
}
```

# 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 = {
    "video_urls": [
        {
            "url": "https://vimeo.com/1168555141?fl=pl&fe=sh"
        },
        {
            "url": "https://vimeo.com/1176958111?fl=pl&fe=sh"
        },
        {
            "url": "https://vimeo.com/1155088868?fl=pl&fe=sh"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("kingscraper/vimeo-video-downloader").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 = { "video_urls": [
        { "url": "https://vimeo.com/1168555141?fl=pl&fe=sh" },
        { "url": "https://vimeo.com/1176958111?fl=pl&fe=sh" },
        { "url": "https://vimeo.com/1155088868?fl=pl&fe=sh" },
    ] }

# Run the Actor and wait for it to finish
run = client.actor("kingscraper/vimeo-video-downloader").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 '{
  "video_urls": [
    {
      "url": "https://vimeo.com/1168555141?fl=pl&fe=sh"
    },
    {
      "url": "https://vimeo.com/1176958111?fl=pl&fe=sh"
    },
    {
      "url": "https://vimeo.com/1155088868?fl=pl&fe=sh"
    }
  ]
}' |
apify call kingscraper/vimeo-video-downloader --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=kingscraper/vimeo-video-downloader",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Vimeo Video Downloader",
        "description": "🎬 Vimeo Video Downloader - Professional 4K video extraction tool for Apify. Download Vimeo videos in up to 1080p with multi-audio tracks, complete metadata (titles, uploaders, like counts), and multiple formats (HLS, DASH, HTTP Perfect for content creators, video editors, and media archivists",
        "version": "0.0",
        "x-build-id": "aFB0oJka8evwRPvIA"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/kingscraper~vimeo-video-downloader/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-kingscraper-vimeo-video-downloader",
                "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/kingscraper~vimeo-video-downloader/runs": {
            "post": {
                "operationId": "runs-sync-kingscraper-vimeo-video-downloader",
                "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/kingscraper~vimeo-video-downloader/run-sync": {
            "post": {
                "operationId": "run-sync-kingscraper-vimeo-video-downloader",
                "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": [
                    "video_urls"
                ],
                "properties": {
                    "video_urls": {
                        "title": "Vimeo Video URLs",
                        "type": "array",
                        "description": "List of public Vimeo video URLs to scrape.\n  Supported formats:\n  - https://vimeo.com/{id}\n  - https://vimeo.com/{id}?fl=pl&fe=sh\n  - https://player.vimeo.com/video/{id}",
                        "items": {
                            "type": "object",
                            "properties": {
                                "url": {
                                    "title": "Video URL",
                                    "description": "A public Vimeo video URL.",
                                    "type": "string",
                                    "pattern": "^https?://(player\\.)?vimeo\\.com/(video/)?\\d+.*"
                                }
                            },
                            "required": [
                                "url"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
