# Website Screenshot API (`exotic_station/website-screenshot-api`) Actor

Create a screenshot of a website based on a specified URL. It can be used to monitor web changes regularly after setting up the scheduler. Capture clean website screenshots with lazy-load handling, cookie banner dismissal, sticky header removal, and element targeting.

- **URL**: https://apify.com/exotic\_station/website-screenshot-api.md
- **Developed by:** [Krishna Shukla](https://apify.com/exotic_station) (community)
- **Categories:** Automation, Other, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## Website Screenshot Generator

Take clean, reliable screenshots of any website with one Apify Actor.

Website Screenshot Generator is built for pages that are hard to capture well:
- lazy-loaded content
- cookie and consent banners
- sticky headers and floating widgets
- animated UI states
- element-level screenshots for specific sections

Use it to create screenshots for product pages, research, QA, documentation, monitoring, and content workflows.

This README is written for the Apify listing, so it focuses on what users can do with the Actor and what they get back.

### What can Website Screenshot Generator do?

Website Screenshot Generator is designed to make website screenshots look clean and usable on the first try.

It can:
- capture a full page or just the visible viewport
- screenshot a specific element with a CSS selector
- attempt to dismiss cookie banners automatically
- scroll through the page to trigger lazy-loaded images and content
- hide sticky or fixed-position elements that often ruin full-page captures
- disable animations before capture for a more stable result
- save the screenshot as a PNG in the default Apify Key-Value Store
- publish run metadata to the dataset for easy automation

This makes it a practical choice when a basic browser screenshot is not enough.

Typical Apify use cases:
- saving screenshots for internal review
- generating visual evidence for monitoring
- capturing pages for documentation or research
- pulling screenshots into automation or AI workflows

### How to use Website Screenshot Generator

1. Open the Actor in Apify.
2. Paste or import the target website URLs.
3. Choose your screenshot settings:
   - viewport width and height
   - full-page or viewport screenshot
   - optional element selector
   - cookie banner dismissal
   - sticky header hiding
   - post-load delay
4. Run the Actor.
5. Download the PNG from the Key-Value Store or use the API response in your workflow.

Recommended settings:
- Use `fullPage: true` for landing pages, docs, and article pages.
- Use `elementSelector` when you only need a specific card, section, or widget.
- Keep `closeCookieBanners` and `hideStickyHeaders` enabled for the cleanest results.

Example input:

```json
{
  "urls": [
    { "url": "https://example.com" },
    { "url": "https://example.com/about" }
  ],
  "viewportWidth": 1920,
  "viewportHeight": 1080,
  "fullPage": true,
  "hideStickyHeaders": true,
  "closeCookieBanners": true,
  "delayMs": 2000,
  "screenshotFormat": "png",
  "scrollToBottom": true,
  "scrollDelayMs": 2500,
  "waitForNetworkIdleAfterScroll": false,
  "networkIdleTimeoutMs": 30000,
  "navigationTimeoutMs": 30000
}
````

If you want a screenshot of just one section:

```json
{
  "urls": [{ "url": "https://example.com/pricing" }],
  "elementSelector": "#pricing",
  "viewportWidth": 1440,
  "viewportHeight": 900
}
```

### Input

Required:

- `urls`: One or more page URLs you want to screenshot.

Optional:

- `viewportWidth`: Browser width in pixels. Default: `1920`
- `viewportHeight`: Browser height in pixels. Default: `1080`
- `fullPage`: Capture the whole scrollable page. Default: `false`
- `elementSelector`: CSS selector for a specific element to capture
- `hideStickyHeaders`: Hide fixed and sticky elements before capture. Default: `true`
- `closeCookieBanners`: Try to close consent banners automatically. Default: `true`
- `delayMs`: Extra wait time before capture. Default: `2000`
- `screenshotFormat`: Image format (`png` or `jpeg`). Default: `png`
- `scrollToBottom`: Scroll page to bottom to trigger lazy load. Default: `false`
- `scrollDelayMs`: Delay after scrolling down. Default: `2500`
- `waitForNetworkIdleAfterScroll`: Wait for network connections to idle after a scroll. Default: `false`
- `networkIdleTimeoutMs`: Maximum time to wait for idle network connections post-scroll. Default: `30000`
- `navigationTimeoutMs`: Maximum wait time for page navigation. Default: `30000`

Best practice:

- Use a larger viewport for modern landing pages.
- Use `elementSelector` only when the page structure is stable.
- Increase `delayMs` for highly animated sites.

### Output

The Actor produces two outputs:

- PNG or JPEG screenshots saved in the default Key-Value Store with sequential prefixes (e.g. `OUTPUT_SCREENSHOT_XYZ`).
- A dataset item per URL containing the screenshot format URL, capturing configuration, and metadata.

Returned metadata includes:

- source URL
- viewport size
- whether the screenshot was full-page

Example result:

```json
{
  "screenshotUrl": "https://api.apify.com/v2/key-value-stores/<store-id>/records/OUTPUT_SCREENSHOT_m6f2g",
  "sourceUrl": "https://example.com",
  "viewportWidth": 1920,
  "viewportHeight": 1080,
  "fullPage": true
}
```

### How much will using Website Screenshot Generator cost you?

The cost depends on:

- the Apify plan you are on
- how many pages you screenshot
- how long each run takes
- whether the site is slow, heavily scripted, or blocked

In practice, the biggest cost drivers are browser time and retries.

To keep costs down:

- screenshot only the pages you need
- use a smaller viewport when appropriate
- avoid very large full-page captures unless necessary
- set a realistic timeout so blocked pages do not burn runtime

If you are running this at scale, the most efficient workflow is usually:

- one run per page
- targeted element screenshots where possible
- lightweight settings first, then increase quality only when needed

### Frequently asked questions

#### Can I use integrations with Website Screenshot Generator?

Yes. You can connect this Actor to automations and external tools through Apify integrations, webhooks, or your own workflow orchestration.

#### Can I use Website Screenshot Generator with the Apify API?

Yes. You can trigger the Actor, pass input, and read the screenshot result through the Apify API.

#### Can I use Website Screenshot Generator through an MCP Server?

Yes, if your MCP setup can call Apify Actors or Apify API endpoints, you can use this Actor as part of that workflow.

### Is it legal to take website screenshots?

Usually yes, but it depends on the website, your use case, and local laws.

Things to consider:

- website terms of service
- copyright and trademark concerns
- privacy and personal data
- robots and access restrictions
- permission requirements for internal or commercial use

This README is not legal advice. If you plan to use screenshots commercially, for sensitive data, or at scale, review the terms and consult legal counsel where appropriate.

### Your feedback

If you use Website Screenshot Generator, your feedback is welcome.

Tell us:

- which sites it works well on
- where cookie handling fails
- which banner patterns are missing
- what would make the output easier to automate

Feedback helps improve capture quality and makes the Actor more useful for everyone.

If you want this listing to be shorter and more conversion-focused for Apify, I can trim it down further and make the first screen of the listing more sales-oriented.

# Actor input Schema

## `urls` (type: `array`):

One or more URLs to screenshot. Each URL produces a separate screenshot.

## `viewportWidth` (type: `integer`):

Browser viewport width in pixels.

## `viewportHeight` (type: `integer`):

Browser viewport height in pixels.

## `fullPage` (type: `boolean`):

Capture the entire scrollable page instead of just the viewport.

## `elementSelector` (type: `string`):

A CSS selector for a specific element to screenshot (e.g., '#pricing'). If provided, overrides the fullPage option.

## `hideStickyHeaders` (type: `boolean`):

Inject CSS to hide position:fixed and position:sticky elements before capture, preventing stitching artifacts on full-page shots.

## `closeCookieBanners` (type: `boolean`):

Attempt to automatically close cookie/GDPR consent banners before taking the screenshot.

## `delayMs` (type: `integer`):

Milliseconds to wait after all preparation steps before capturing. Useful for complex layout animations.

## `screenshotFormat` (type: `string`):

Image format for the screenshot.

## `scrollToBottom` (type: `boolean`):

Scroll to the bottom of the page to trigger lazy-loaded content.

## `scrollDelayMs` (type: `integer`):

Delay after scrolling (ms).

## `waitForNetworkIdleAfterScroll` (type: `boolean`):

Overrides 'Delay After Scrolling' option.

## `networkIdleTimeoutMs` (type: `integer`):

Timeout when waiting for network idle after scroll.

## `navigationTimeoutMs` (type: `integer`):

Maximum time to wait for the page to load before giving up.

## Actor input object example

```json
{
  "urls": [
    {
      "url": "https://example.com"
    }
  ],
  "viewportWidth": 1920,
  "viewportHeight": 1080,
  "fullPage": false,
  "hideStickyHeaders": true,
  "closeCookieBanners": true,
  "delayMs": 2000,
  "screenshotFormat": "png",
  "scrollToBottom": false,
  "scrollDelayMs": 2500,
  "waitForNetworkIdleAfterScroll": false,
  "networkIdleTimeoutMs": 30000,
  "navigationTimeoutMs": 30000
}
```

# Actor output Schema

## `screenshot` (type: `string`):

No description

## `results` (type: `string`):

See the dataset for screenshot URLs and capture metadata

# 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 = {
    "urls": [
        {
            "url": "https://example.com"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("exotic_station/website-screenshot-api").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 = { "urls": [{ "url": "https://example.com" }] }

# Run the Actor and wait for it to finish
run = client.actor("exotic_station/website-screenshot-api").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 '{
  "urls": [
    {
      "url": "https://example.com"
    }
  ]
}' |
apify call exotic_station/website-screenshot-api --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=exotic_station/website-screenshot-api",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Website Screenshot API",
        "description": "Create a screenshot of a website based on a specified URL. It can be used to monitor web changes regularly after setting up the scheduler. Capture clean website screenshots with lazy-load handling, cookie banner dismissal, sticky header removal, and element targeting.",
        "version": "1.0",
        "x-build-id": "HlxxDKOvJdHNBNAXv"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/exotic_station~website-screenshot-api/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-exotic_station-website-screenshot-api",
                "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/exotic_station~website-screenshot-api/runs": {
            "post": {
                "operationId": "runs-sync-exotic_station-website-screenshot-api",
                "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/exotic_station~website-screenshot-api/run-sync": {
            "post": {
                "operationId": "run-sync-exotic_station-website-screenshot-api",
                "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": [
                    "urls"
                ],
                "properties": {
                    "urls": {
                        "title": "List of URLs",
                        "type": "array",
                        "description": "One or more URLs to screenshot. Each URL produces a separate screenshot.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "viewportWidth": {
                        "title": "Viewport Width",
                        "minimum": 320,
                        "maximum": 3840,
                        "type": "integer",
                        "description": "Browser viewport width in pixels.",
                        "default": 1920
                    },
                    "viewportHeight": {
                        "title": "Viewport Height",
                        "minimum": 240,
                        "maximum": 2160,
                        "type": "integer",
                        "description": "Browser viewport height in pixels.",
                        "default": 1080
                    },
                    "fullPage": {
                        "title": "Full-Page Screenshot",
                        "type": "boolean",
                        "description": "Capture the entire scrollable page instead of just the viewport.",
                        "default": false
                    },
                    "elementSelector": {
                        "title": "Element CSS Selector",
                        "type": "string",
                        "description": "A CSS selector for a specific element to screenshot (e.g., '#pricing'). If provided, overrides the fullPage option."
                    },
                    "hideStickyHeaders": {
                        "title": "Hide Sticky/Fixed Headers",
                        "type": "boolean",
                        "description": "Inject CSS to hide position:fixed and position:sticky elements before capture, preventing stitching artifacts on full-page shots.",
                        "default": true
                    },
                    "closeCookieBanners": {
                        "title": "Dismiss Cookie Banners",
                        "type": "boolean",
                        "description": "Attempt to automatically close cookie/GDPR consent banners before taking the screenshot.",
                        "default": true
                    },
                    "delayMs": {
                        "title": "Delay before screenshot",
                        "minimum": 0,
                        "maximum": 30000,
                        "type": "integer",
                        "description": "Milliseconds to wait after all preparation steps before capturing. Useful for complex layout animations.",
                        "default": 2000
                    },
                    "screenshotFormat": {
                        "title": "Screenshot Format",
                        "enum": [
                            "png",
                            "jpeg"
                        ],
                        "type": "string",
                        "description": "Image format for the screenshot.",
                        "default": "png"
                    },
                    "scrollToBottom": {
                        "title": "Scroll to bottom",
                        "type": "boolean",
                        "description": "Scroll to the bottom of the page to trigger lazy-loaded content.",
                        "default": false
                    },
                    "scrollDelayMs": {
                        "title": "Delay After Scrolling",
                        "minimum": 0,
                        "maximum": 30000,
                        "type": "integer",
                        "description": "Delay after scrolling (ms).",
                        "default": 2500
                    },
                    "waitForNetworkIdleAfterScroll": {
                        "title": "Wait for Network Idle After Scrolling",
                        "type": "boolean",
                        "description": "Overrides 'Delay After Scrolling' option.",
                        "default": false
                    },
                    "networkIdleTimeoutMs": {
                        "title": "Network Idle Timeout",
                        "minimum": 1000,
                        "maximum": 60000,
                        "type": "integer",
                        "description": "Timeout when waiting for network idle after scroll.",
                        "default": 30000
                    },
                    "navigationTimeoutMs": {
                        "title": "Navigation Timeout (ms)",
                        "minimum": 5000,
                        "maximum": 120000,
                        "type": "integer",
                        "description": "Maximum time to wait for the page to load before giving up.",
                        "default": 30000
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
