# 📸 Website Screenshot Generator (`simpleapi/website-screenshot-generator`) Actor

- **URL**: https://apify.com/simpleapi/website-screenshot-generator.md
- **Developed by:** [SimpleAPI](https://apify.com/simpleapi) (community)
- **Categories:** Automation, Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.99 / 1,000 results

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

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

## What's an Apify Actor?

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

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

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

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

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

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

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

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

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

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

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

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 📸 Website Screenshot Generator

> **Beautiful full-page PNG & PDF captures of any website — at scale, with a built-in smart proxy ladder that gets past bot walls.**

Drop in a list of URLs, pick PNG or PDF, hit **Start**. The Actor opens each URL in a real Chromium browser, scrolls to load lazy content, hides the cookie banners you don't want in the shot, and saves a pixel-perfect capture to your default key-value store. Metadata for every capture is also pushed to the dataset so you can export to JSON / CSV / Excel in one click.

---

### 🚀 Why choose this Actor?

- 🛡️ **Smart proxy fallback** — starts direct, automatically escalates to **datacenter**, then **residential** with retries when the target pushes back. Stops mid-flow when one tier works.
- 🖼️ **Full-page PNG or printable PDF** — your call, per run.
- 🔽 **Lazy-load aware** — scrolls to the bottom, optionally waits for the network to go idle, so infinite-scroll feeds capture cleanly.
- 🙈 **Banner & widget hiding** — supply CSS selectors to wipe cookie popups, chat widgets, or anything that ruins the shot.
- 📥 **Live saving** — each capture lands in the dataset as soon as it's done, so a crash never loses earlier work.
- 📋 **Rich, per-section logs** — you can watch URL-by-URL progress, proxy escalations, and final status in real time.

---

### ✨ Key features

| Feature | Detail |
|---|---|
| 🌐 Bulk input | Paste URLs, drop a CSV, or pull from Google Sheets — the standard Apify request-list editor |
| 🖼️ Output | `png` (full page) or `pdf` (printable) |
| 📐 Viewport | Custom width (100–3840 px), height fixed at 1080 with full-page mode |
| ⏳ Wait until | `load` · `domcontentloaded` · `networkidle2` · `networkidle0` |
| 🔁 Retries | 3 retries on the residential tier with jittered backoff |
| 🛡️ Proxy ladder | `direct → datacenter → residential` — automatic |
| 💾 Storage | PNG/PDF in default KVS, metadata rows in default dataset |

---

### 🧾 Input

```json
{
  "urls": [
    { "url": "https://apify.com" },
    { "url": "https://github.com" }
  ],
  "format": "png",
  "waitUntil": "networkidle2",
  "delay": 0,
  "viewportWidth": 1280,
  "scrollToBottom": true,
  "delayAfterScrolling": 2500,
  "waitUntilNetworkIdleAfterScroll": false,
  "waitUntilNetworkIdleAfterScrollTimeout": 30000,
  "selectorsToHide": ".cookie-banner, #chat-widget",
  "proxyConfiguration": { "useApifyProxy": false }
}
````

| Field | Meaning |
|---|---|
| `urls` | 🌐 List of URLs to capture. Items may be plain strings or `{ "url": "..." }` objects. |
| `format` | 🖼️ `png` for image, `pdf` for printable document. |
| `waitUntil` | ⏳ Browser navigation milestone before capture. |
| `delay` | ⏱️ Extra wait (ms) after navigation, before capture. |
| `viewportWidth` | 📐 Browser viewport width in pixels. |
| `scrollToBottom` | 🔽 Scroll the page top-to-bottom before capturing — triggers lazy-loaded content. |
| `delayAfterScrolling` | ⏱️ Wait this long after scrolling, before capturing. |
| `waitUntilNetworkIdleAfterScroll` | 🌊 Instead of a fixed delay, wait for the network to settle after scrolling. |
| `waitUntilNetworkIdleAfterScrollTimeout` | ⏰ Hard cap on the network-idle wait. |
| `selectorsToHide` | 🙈 CSS selectors to hide before capturing (cookie banners, chat widgets, …). |
| `proxyConfiguration` | 🛡️ Default off — Actor tries direct first and auto-escalates if the target blocks. |

***

### 📦 Output

Each captured URL produces:

1. **A binary record** in the default key-value store at `screenshot_<sanitized-url>_<md5>.<png|pdf>`.
2. **A metadata row** in the default dataset:

```json
{
  "startUrl": "https://apify.com",
  "finalUrl": "https://apify.com/",
  "pageTitle": "Apify: Full-stack web scraping and data extraction platform",
  "format": "png",
  "success": true,
  "error": "",
  "proxyTier": "direct",
  "attempts": 1,
  "navigationStatus": "ok",
  "scrolledToBottom": true,
  "hiddenSelectors": "",
  "screenshotKey": "screenshot_https___apify_com_d0734ca443cdd7bb52b219011c750508.png",
  "screenshotUrl": "https://api.apify.com/v2/key-value-stores/<store-id>/records/screenshot_https___apify_com_<md5>.png",
  "fileSizeBytes": 524288,
  "viewportWidth": 1280,
  "viewportHeight": 1080,
  "waitUntil": "networkidle2",
  "capturedAt": "2026-05-23T10:39:31.592253+00:00"
}
```

The dataset view comes pre-configured with two ready-to-use tables: **🖼️ Capture Overview** (the essentials) and **🔍 Capture Details** (everything, including the proxy tier used and number of attempts).

***

### 🚀 How to use the Actor (via Apify Console)

1. Log in at [console.apify.com](https://console.apify.com) → **Actors**.
2. Open **📸 Website Screenshot Generator**.
3. Paste your URLs, pick the output format, leave proxy on **No proxy** (the Actor escalates automatically when sites push back).
4. Click **Start**.
5. Watch the live log — you'll see each URL's status, the proxy tier used, and bytes captured.
6. Open the **Storage** tab to grab your PNGs / PDFs and the **Dataset** tab to export metadata.

***

### 🛡️ How the proxy ladder works

```
┌──────────┐   blocked   ┌──────────────┐   blocked   ┌─────────────────┐
│  direct  │ ──────────▶ │  datacenter  │ ──────────▶ │  residential ×3 │
└──────────┘             └──────────────┘             └─────────────────┘
                                                        retries w/ jitter
```

- Every capture starts on whatever tier the Actor is currently on.
- A block (HTTP 401/403/407/408/409/425/429/451/5xx or a CAPTCHA / "checking your browser" page) escalates the ladder one step.
- Residential is the last step and retries 3× with jittered backoff before giving up on that URL.
- **Once we escalate, we stay there** — the next URL begins on the new tier, so we don't burn time on a tier we already know the target rejects.

***

### 🧠 Best use cases

- 📊 **Visual archives** — periodically snapshot dashboards, landing pages, blog posts.
- 🔬 **QA & visual regression** — diff captures between deploys.
- 📰 **Press / link previews** — generate PDFs of articles before they paywall or change.
- 🛍️ **Competitive intelligence** — track competitor pages over time.

***

### ❓ Frequently asked questions

**Q: Why does my screenshot look smaller than my desktop browser?**
The default viewport width is 1280 px and full-page mode captures everything below the fold. Bump `viewportWidth` to 1920 (or larger) for "wide-monitor" captures.

**Q: The page has a cookie banner blocking the top — what do I do?**
Add the banner's CSS selector to `selectorsToHide`, e.g. `.cookie-banner, #onetrust-banner-sdk`. The Actor sets `display: none` on the matched elements before capturing.

**Q: Why do PDFs sometimes look different from PNGs?**
`page.pdf()` is Chromium-headless only and uses a print-media stylesheet. If a site has heavy `@media print` rules, the PDF will reflect them — that's by design.

**Q: I want to skip the ladder and use residential straight away.**
Set `proxyConfiguration` to `{ "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }` — the Actor will use residential only, with retries.

***

### 🆘 Support and feedback

Found a bug or have a feature request? Open an issue in your Actor's GitHub repository, or message the maintainer directly via your Apify Console.

***

### ⚖️ Legal & ethical notes

- Only capture **publicly available** pages you have the right to view.
- Respect each site's Terms of Service.
- You are responsible for compliance with applicable laws (GDPR, CCPA, etc.).

# Actor input Schema

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

Websites you want to screenshot. Paste URLs one per line, upload a CSV/JSON, or load them from a Google Sheet.

## `format` (type: `string`):

PNG = full-page image. PDF = printable document (Chromium headless only).

## `waitUntil` (type: `string`):

When the browser should consider navigation finished. networkidle2 is a good default; switch to networkidle0 for stricter waiting.

## `delay` (type: `integer`):

Wait this many milliseconds after navigation before snapping the screenshot.

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

Browser viewport width. Height is fixed at 1080 — full-page mode captures everything below the fold.

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

Scroll the page from top to bottom before capturing.

## `delayAfterScrolling` (type: `integer`):

How long to wait after scrolling before capturing. Ignored if 'Wait until network idle after scroll' is enabled.

## `waitUntilNetworkIdleAfterScroll` (type: `boolean`):

Instead of a fixed delay, wait until the network goes idle. Catches lazy-loaded resources reliably.

## `waitUntilNetworkIdleAfterScrollTimeout` (type: `integer`):

Cap on how long to wait for the network to go idle after scrolling.

## `selectorsToHide` (type: `string`):

Comma-separated CSS selectors to hide before capture — cookie banners, chat widgets, popups. Example: .cookie-banner, #chat-widget

## `proxyConfiguration` (type: `object`):

Smart fallback ladder: starts direct, auto-escalates to datacenter, then residential (with 3 retries) if the target blocks. Force a tier here only if you already know one is needed.

## Actor input object example

```json
{
  "urls": [
    {
      "url": "https://www.apify.com/"
    }
  ],
  "format": "png",
  "waitUntil": "networkidle2",
  "delay": 0,
  "viewportWidth": 1280,
  "scrollToBottom": true,
  "delayAfterScrolling": 2500,
  "waitUntilNetworkIdleAfterScroll": false,
  "waitUntilNetworkIdleAfterScrollTimeout": 30000,
  "selectorsToHide": "",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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://www.apify.com/"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("simpleapi/website-screenshot-generator").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://www.apify.com/" }],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("simpleapi/website-screenshot-generator").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://www.apify.com/"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call simpleapi/website-screenshot-generator --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "📸 Website Screenshot Generator",
        "description": null,
        "version": "0.1",
        "x-build-id": "7oV9vPiG0s2UQupdE"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/simpleapi~website-screenshot-generator/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-simpleapi-website-screenshot-generator",
                "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/simpleapi~website-screenshot-generator/runs": {
            "post": {
                "operationId": "runs-sync-simpleapi-website-screenshot-generator",
                "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/simpleapi~website-screenshot-generator/run-sync": {
            "post": {
                "operationId": "run-sync-simpleapi-website-screenshot-generator",
                "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",
                    "waitUntil"
                ],
                "properties": {
                    "urls": {
                        "title": "🌐 List of URLs",
                        "type": "array",
                        "description": "Websites you want to screenshot. Paste URLs one per line, upload a CSV/JSON, or load them from a Google Sheet.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "format": {
                        "title": "🖼️ Format",
                        "enum": [
                            "png",
                            "pdf"
                        ],
                        "type": "string",
                        "description": "PNG = full-page image. PDF = printable document (Chromium headless only).",
                        "default": "png"
                    },
                    "waitUntil": {
                        "title": "⏳ Wait until",
                        "enum": [
                            "load",
                            "domcontentloaded",
                            "networkidle2",
                            "networkidle0"
                        ],
                        "type": "string",
                        "description": "When the browser should consider navigation finished. networkidle2 is a good default; switch to networkidle0 for stricter waiting.",
                        "default": "networkidle2"
                    },
                    "delay": {
                        "title": "⏱️ Delay before screenshot",
                        "minimum": 0,
                        "maximum": 3600000,
                        "type": "integer",
                        "description": "Wait this many milliseconds after navigation before snapping the screenshot.",
                        "default": 0
                    },
                    "viewportWidth": {
                        "title": "📐 Width",
                        "minimum": 100,
                        "maximum": 3840,
                        "type": "integer",
                        "description": "Browser viewport width. Height is fixed at 1080 — full-page mode captures everything below the fold.",
                        "default": 1280
                    },
                    "scrollToBottom": {
                        "title": "🔽 Scroll to bottom before capture",
                        "type": "boolean",
                        "description": "Scroll the page from top to bottom before capturing.",
                        "default": true
                    },
                    "delayAfterScrolling": {
                        "title": "⏱️ Delay after scrolling",
                        "minimum": 0,
                        "maximum": 3600000,
                        "type": "integer",
                        "description": "How long to wait after scrolling before capturing. Ignored if 'Wait until network idle after scroll' is enabled.",
                        "default": 2500
                    },
                    "waitUntilNetworkIdleAfterScroll": {
                        "title": "🌊 Wait until network idle after scroll",
                        "type": "boolean",
                        "description": "Instead of a fixed delay, wait until the network goes idle. Catches lazy-loaded resources reliably.",
                        "default": false
                    },
                    "waitUntilNetworkIdleAfterScrollTimeout": {
                        "title": "⏰ Max wait for network idle after scroll",
                        "minimum": 0,
                        "maximum": 3600000,
                        "type": "integer",
                        "description": "Cap on how long to wait for the network to go idle after scrolling.",
                        "default": 30000
                    },
                    "selectorsToHide": {
                        "title": "🙈 CSS selectors to hide",
                        "type": "string",
                        "description": "Comma-separated CSS selectors to hide before capture — cookie banners, chat widgets, popups. Example: .cookie-banner, #chat-widget",
                        "default": ""
                    },
                    "proxyConfiguration": {
                        "title": "🛡️ Proxy configuration",
                        "type": "object",
                        "description": "Smart fallback ladder: starts direct, auto-escalates to datacenter, then residential (with 3 retries) if the target blocks. Force a tier here only if you already know one is needed.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
