# Google Images Scraper (`scrapeengine/google-images-scraper`) Actor

Scrape Google Images search results in seconds 🖼️🔎 Extract image URLs, titles, sources, thumbnails, and more from any keyword search. Perfect for content research, SEO analysis, dataset building, and trend discovery. Turn image data into valuable insights fast 🚀

- **URL**: https://apify.com/scrapeengine/google-images-scraper.md
- **Developed by:** [ScrapeEngine](https://apify.com/scrapeengine) (community)
- **Categories:** Developer tools, Automation, SEO tools
- **Stats:** 3 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$19.99/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

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

## 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

### Google Images Scraper

Google Images Scraper is a fast, Playwright-powered Google image search scraper that turns keyword queries into clean datasets of image URLs, thumbnails, dimensions, titles, source pages, and origin domains. It eliminates the manual, error-prone process of trying to download images from Google search by delivering structured data you can export and analyze. Built for marketers, developers, data analysts, and researchers, this Google image scraper helps you scrape Google image results by keyword at scale for SEO analysis, dataset building, and trend discovery. 🚀

### What data / output can you get?

Below are the exact fields this Google Images scraping bot outputs to the Apify dataset for each image result.

| Data type       | Description                                                | Example value |
| ---             | ---                                                        | --- |
| query           | Search query that produced the result                      | “technology” |
| imageUrl        | Direct URL to the image                                    | “https://miro.medium.com/v2/resize:fit:1400/1*6-dNFz13P5prRz_kYaInXg.jpeg” |
| title           | Title text associated with the result                      | “Is Technology Ruining Your Experience ...” |
| imageWidth      | Image width in pixels (if detected)                        | 1400 |
| imageHeight     | Image height in pixels (if detected)                       | 1025 |
| thumbnailUrl    | Thumbnail URL (falls back to imageUrl if needed)           | “https://encrypted-tbn0.gstatic.com/images?q=tbn:7XZB0ElBde-RCM” |
| thumbnailWidth  | Thumbnail width in pixels (default 300 if unknown)         | 300 |
| thumbnailHeight | Thumbnail height in pixels (default 200 if unknown)        | 200 |
| contentUrl      | Source page URL where the image appears                    | “https://medium.com/.../is-technology-ruining-your-experience-at-work-...” |
| origin          | Origin domain extracted from the source page URL           | “medium.com” |

Notes:
- Results are saved to the Apify dataset, which you can export to JSON, CSV, or Excel from the Apify platform.
- Some fields (e.g., imageWidth/imageHeight) may be null if not detected; thumbnailWidth/thumbnailHeight default to 300×200 when exact dimensions aren’t available.

### Key features

- 🔄 Robust proxy fallback  
  Starts direct, then falls back to datacenter proxy, and finally residential proxy with retries — with automatic “lock” to residential after success. This improves reliability for a SERP image scraper for Google.

- 🧠 Smart block and consent handling  
  Detects CAPTCHA/unusual traffic pages and best-effort accepts Google consent dialogs to keep the crawl flowing.

- 🖱️ Click-based extraction for accuracy  
  Opens image thumbnails and extracts high-quality image URLs, dimensions, titles, and source pages from live results — a dependable Google image search scraper approach.

- ⚡ Real-time dataset updates  
  With pushToDatasetRealtime enabled, each record is saved immediately to the Output table so you can monitor progress live and automate downstream steps.

- 🧹 Duplicate and noise reduction  
  Skips data URLs and common non-usable hosts (e.g., gstatic, googleusercontent) and de-duplicates repeated image URLs for cleaner outputs — ideal for a Google image URLs extractor.

- 🧩 Memory-optimized architecture  
  Creates a fresh browser context per query and blocks non-essential resources (fonts, some scripts, media) to keep runs stable at scale.

- 🖼️ Structured image metadata  
  Outputs consistent fields for image URL, thumbnail, dimensions, title, source URL, and origin domain — perfect for a Google Images dataset scraper.

- 💻 Developer-friendly, Python-based  
  Implemented in Python with Playwright and Apify SDK — easy to integrate into automation pipelines (e.g., Google Images scraper Python workflows or via the Google Images scraper API on Apify).

### How to use Google Images Scraper - step by step

1. Sign in to Apify  
   Create a free Apify account or log in.

2. Open the actor  
   Find “Google Images Scraper” in the Apify Store and click Try for free.

3. Add your input  
   In the Input tab, paste your list of keywords into queries. You can submit one or many.

4. Set limits  
   Use maxImages to control how many images per query are collected (default 10).

5. Configure proxy and mode  
   Optionally set proxyConfiguration to route traffic through Apify Proxy. Leave headless enabled for production stability.

6. Enable live output (optional)  
   Keep pushToDatasetRealtime on to see each image appear instantly in the Output table.

7. Start the run  
   Click Start. The Google image crawler will scroll, click, and extract images automatically.

8. Export results  
   Go to the Dataset tab for your run to download results. Export to JSON, CSV, or Excel from the Apify UI or via API.

Pro tip: Chain this run in an automation (e.g., Make, Zapier, n8n) or call it from your code to orchestrate bulk download Google images workflows by using these URLs with your preferred Google image downloader.

### Use cases

| Use case name | Description |
| --- | --- |
| SEO & marketing research | Analyze SERP image compositions by keyword, source domains, and visual trends to optimize content strategy. |
| Brand monitoring | Track how and where brand visuals appear by extracting origin and contentUrl fields from results. |
| Content sourcing | Quickly collect image URLs and titles to review and curate assets (then use a separate downloader if needed). |
| AI/ML dataset building | Scrape Google image results by keyword and export structured metadata for labeling and model training. |
| Competitive analysis | Compare which publishers and visuals dominate Google Images for your target terms. |
| Academic research | Gather image samples with traceable source pages for studies and citations. |
| API pipelines | Run as a Google Images scraper tool via Apify API and push structured results into data lakes or ETL workflows. |

### Why choose Google Images Scraper?

This Google Images Scraper focuses on precision, resilience, and automation, offering a production-ready way to download images from Google search as structured metadata.

- ✅ Accurate, structured output: Clean fields for imageUrl, thumbnailUrl, dimensions, titles, contentUrl, and origin.
- ✅ Scalable by design: Per-query browser contexts and resource blocking keep large runs stable.
- ✅ Developer-ready: Python + Playwright + Apify SDK make it easy to integrate into pipelines and scripts.
- ✅ Real-time visibility: Optional live pushes to the dataset for instant monitoring and triggers.
- ✅ Safer operations: Smart block detection with proxy fallback (none → datacenter → residential).
- ✅ Better than extensions: Avoid brittle browser add-ons; use a maintained, server-side Google Images scraper alternative to a Chrome extension.

In short, it’s a reliable Google Images scraping bot for automated, repeatable workflows.

### Is it legal / ethical to use Google Images Scraper?

Yes — when used responsibly. This tool extracts publicly available information from Google Images results and does not bypass authentication. As with any web data collection:
- Only use public data and respect website terms of service.
- Comply with applicable regulations (e.g., GDPR/CCPA) in your jurisdiction.
- Do not republish or commercially exploit copyrighted images without permission.
- Use proxies and automation responsibly, and consult your legal team for edge cases.

### Input parameters & output format

Example input JSON
```json
{
  "queries": ["nature", "technology", "animals"],
  "maxImages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "headless": true,
  "pushToDatasetRealtime": true
}
````

Input parameters

- queries (array)\
  Description: List of search queries or keywords to scrape images for. Can be single query or multiple queries.\
  Default: not set (UI prefill: \["nature"])\
  Required: Yes

- maxImages (integer)\
  Description: Maximum number of images to scrape per query (1-100).\
  Default: 10\
  Required: No

- proxyConfiguration (object)\
  Description: Choose which proxies to use. If Google rejects the proxy, a residential proxy will be used as a fallback.\
  Default: not set (UI prefill: {"useApifyProxy": false})\
  Required: No

- headless (boolean)\
  Description: Run browser in headless mode (recommended for production)\
  Default: true\
  Required: No

- pushToDatasetRealtime (boolean)\
  Description: If enabled, each scraped image is saved to the actor Output table immediately (recommended). If disabled, all results are saved at the end.\
  Default: true\
  Required: No

Example output (dataset items)

```json
[
  {
    "query": "technology",
    "imageUrl": "https://miro.medium.com/v2/resize:fit:1400/1*6-dNFz13P5prRz_kYaInXg.jpeg",
    "title": "Is Technology Ruining Your Experience ...",
    "imageWidth": 1400,
    "imageHeight": 1025,
    "thumbnailUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:7XZB0ElBde-RCM",
    "thumbnailWidth": 1400,
    "thumbnailHeight": 1025,
    "contentUrl": "https://medium.com/jacob-morgan/is-technology-ruining-your-experience-at-work-58eaf3ec40a7",
    "origin": "medium.com"
  },
  {
    "query": "animals",
    "imageUrl": "https://m.media-amazon.com/images/I/61+09Qy5ncL._UF1000,1000_QL80_.jpg",
    "title": "animals",
    "imageWidth": 655,
    "imageHeight": 1000,
    "thumbnailUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:YPbAo9EFk0_jHM",
    "thumbnailWidth": 655,
    "thumbnailHeight": 1000,
    "contentUrl": "https://www.amazon.com/Wild-Animals-Preschool-Kindergarten-Homeschooling/dp/9390391180",
    "origin": "www.amazon.com"
  }
]
```

Notes:

- The actor pushes each record with keys: query, imageUrl, title, imageWidth, imageHeight, thumbnailUrl, thumbnailWidth, thumbnailHeight, contentUrl, origin.
- Some fields may be null if not detected; thumbnailWidth/thumbnailHeight default to 300×200 if unknown; origin may be “unknown” when a source cannot be determined.

### FAQ

#### Does this Google Images Scraper download actual image files?

No. It extracts imageUrl and metadata, saving records to the dataset. You can then use a separate Google image downloader or script to fetch the files in bulk.

#### How many images can I collect per keyword?

Use maxImages to control per-query limits. The default is 10, and you can increase it within the allowed range to automate and download images from Google search at scale using the extracted URLs.

#### Can I run it as a Google Images scraper Python workflow?

Yes. The actor is built with Python and Playwright, and you can trigger it via the Apify API from your own Python scripts for end-to-end automation.

#### How does it handle blocks and CAPTCHAs?

It checks for block indicators (e.g., consent/CAPTCHA pages) and automatically falls back from direct → datacenter → residential proxies with retries. Enabling proxyConfiguration is recommended for stability.

#### What data fields are returned?

Each result includes query, imageUrl, title, imageWidth, imageHeight, thumbnailUrl, thumbnailWidth, thumbnailHeight, contentUrl, and origin — ideal for a Google image URLs extractor and Google Images dataset scraper use cases.

#### Can I get results in CSV or Excel?

Yes. Results are saved to the Apify dataset. From the Apify UI or API, you can export the dataset to JSON, CSV, or Excel for analysis and reporting.

#### Is it safe and compliant to scrape images from Google?

Yes, when done responsibly. The actor collects public metadata from Google Images results. Always respect terms of service and intellectual property rights before reusing images.

#### Does it work without a browser window?

Yes. headless is enabled by default for production stability. You can keep it headless for server-side automation or disable it for debugging.

### Closing CTA

Google Images Scraper is built to extract structured image metadata from Google Images reliably and at scale. It delivers clean fields for URLs, thumbnails, dimensions, titles, and sources — ready for SEO analysis, dataset building, and research.

Whether you’re a marketer validating SERP visuals, a developer building a Google Images scraper API or Python workflow, or a researcher assembling training data, this Google Images scraper tool fits seamlessly into your pipeline. Use the Apify API to automate runs, integrate with your stack, and export results in the format you need.

Start turning Google image searches into actionable datasets today.

# Actor input Schema

## `queries` (type: `array`):

✍️ List of search phrases (e.g. nature, product shots, logos). One query per line in the editor.

## `maxImages` (type: `integer`):

🎚️ Cap how many unique images to keep for each keyword (1–1000). The log shows progress toward this goal in real time.

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

⚙️ Pick proxy groups/countries in the picker. When enabled, the actor uses your selection for the browsing session.

## `headless` (type: `boolean`):

✅ On (default): best for Apify cloud. 🔲 Off: useful for debugging on your machine.

## `pushToDatasetRealtime` (type: `boolean`):

💾 ON: each image is pushed to the dataset immediately — your Output tab updates during the run. 📦 OFF: everything uploads once at the end.

## Actor input object example

```json
{
  "queries": [
    "nature"
  ],
  "maxImages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "headless": true,
  "pushToDatasetRealtime": true
}
```

# 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 = {
    "queries": [
        "nature"
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapeengine/google-images-scraper").call(input);

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

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

```

## Python example

```python
from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = {
    "queries": ["nature"],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapeengine/google-images-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "queries": [
    "nature"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call scrapeengine/google-images-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google Images Scraper",
        "description": "Scrape Google Images search results in seconds 🖼️🔎 Extract image URLs, titles, sources, thumbnails, and more from any keyword search. Perfect for content research, SEO analysis, dataset building, and trend discovery. Turn image data into valuable insights fast 🚀",
        "version": "0.1",
        "x-build-id": "0SY1DpNG0E32rlToH"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapeengine~google-images-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapeengine-google-images-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/scrapeengine~google-images-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapeengine-google-images-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/scrapeengine~google-images-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapeengine-google-images-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "queries"
                ],
                "properties": {
                    "queries": {
                        "title": "🔤 Keywords / queries",
                        "type": "array",
                        "description": "✍️ List of search phrases (e.g. nature, product shots, logos). One query per line in the editor.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxImages": {
                        "title": "🔢 Max images per query",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "🎚️ Cap how many unique images to keep for each keyword (1–1000). The log shows progress toward this goal in real time.",
                        "default": 10
                    },
                    "proxyConfiguration": {
                        "title": "🌍 Apify Proxy",
                        "type": "object",
                        "description": "⚙️ Pick proxy groups/countries in the picker. When enabled, the actor uses your selection for the browsing session."
                    },
                    "headless": {
                        "title": "👻 Headless browser",
                        "type": "boolean",
                        "description": "✅ On (default): best for Apify cloud. 🔲 Off: useful for debugging on your machine.",
                        "default": true
                    },
                    "pushToDatasetRealtime": {
                        "title": "⚡ Live save to Output table",
                        "type": "boolean",
                        "description": "💾 ON: each image is pushed to the dataset immediately — your Output tab updates during the run. 📦 OFF: everything uploads once at the end.",
                        "default": true
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
